HTTP Connector - Format for URL

Hi there,

Currently, I am utilizing CloverETL to export my orders from Volusion using its API.
Here is the exact URL I used:
http://mrdap.hekdj.servertrust.com/net/ … RE_Value=1

Every time I run this, I always get an error in my output file which says:

<?xml version="1.0" encoding="utf-8" ?> False Could not find file 'D:\\Domains\\ecommerce\\\_v\_6\_0\_net\\\_v\_6\_5\_net\\net\\schema\\Generic\\Orders.xsd'.

I’ve tested that URL using a REST client, and I was able to pull out some data, but when it gets to CloverETL, it’s no longer pulling up. I’m really confused now, and it’s stop me from doing some other processes.

I would appreciate if someone will be able to address this issue.

Thanks,

Hi,

I would guess there is issue with “Generic/Orders” which should be escaped. If you are working in CTL, you can use “escapeUrl” function.

Second thing is, that server is obviously complaining about nonexistence of file. So I would check logs on server. Are you sure that on server is available “d:\…”?

Hello,

For it to work, that should look like this “Generic%5COrders”

Thanks,