... The CreateAccount command might not be enabled for the program you signed onto. In order to check permissions for your license key, please email our...
Hi Mani, We can't really help you with programming language specific issues around making HTTP posts. For such issues, I'd suggest a good book or web...
Hello, I need to write a script that has the ability to update the destination URL for every single listing that an account contains. Basically I want to tag...
Hi again. There certainly is an update call. For this case, you want to use the SetListingTDU call. TDU means "title, description, url". You don't have to...
I am trying to make POSTs using C#/.net and its not working for me as well. I supplied all the neccessary Header info but the call to getresponse times out....
Finally I figured out a way to post through .NET and it is very very simple. requestURL ="https://x-secure.overture.com/index.jhtml? _DARGS=/index.jhtml&xml=";...
Yeah that way worked for me too. The reason it works is because for some reason the Yahoo API doesn't like .net adding the POST header explicitly. I tried it...
The other option would be to use webclient and pass the name value pair (ie., xml & the other "&_D:/go2/xml/XMLRequestHandler.submit). It works but this is...
That sounds like a client-side cert issue. Make sure the SSL libraries you are using were installed properly (I'm not sure how PHP libs do this). Good luck. ...
When I submit a query to the server, I get an Internet Error. Any idea why this query would work with some listings and not with others? <?xml version="1.0"...
Do you always get an error for the same listingId, or will it *eventually* go through? Basically, if you can find a pattern, it's easier to help you out....
I don't always get that error. Sometimes if I try again later it WILL go through (which has made it a nightmare to debug). I am sending requests to the system...
Gotcha. You should route this issue to the support email address you have in your license info. Those folks can escalate any issues you are seeing, since it...
Ok, I talked with the XML API tech support team. The problem is on their end, and they said in no uncertain terms that I am simply going to have to refactor my...
The error message "Your report contains a large amount of data and is being processed. Please wait 30 minutes and submit your request again." is occurring...
I'm pretty sure this means the report is churning in the background. If you send the EXACT SAME arguments back in 30 minutes, it will not start the report...
Hi, my name is Luigi, i am having endless problems getting to post to the https, so i read the code that Matt Plummer has uploaded. By the way thank you Matt,...
Are you stuck using php or can you move to using a different language? The concepts are the same, it's just the specific implementation that may differ. IIRC,...
Sometimes when i run a report i get this error message, is there a way to make my request wait longer? "Operation timed out with 0 out of -1 bytes received" ...
That errors sounds like it's a client-side error, possibly from whatever HTTP libraries you are using. At least, I don't recall ever seeing that come out of...
I am having this same issue... If you add the option: curl_setopt($key, CURLOPT_SSL_VERIFYPEER, FALSE); then you can skip the ssl checking... however after...
Just a further note on this...the php5 example file uses the test site https://x-secure-test.overture.com/ ...which is currently out of commission (i didnt...