Took me a while to spot this one, the soap message you're trying to parse is not correct. The pointed to items (the 2 elements with id='1' id='2' attributes) ...
When i run this, this is the response message i get back HTTP/1.1 200 OK Content-Length: 1214 Content-Type: text/xml Server: Microsoft-IIS/6.0 Content: ...
there are lots of samples for attachments on the samples page http://www.pocketsoap.com/samples/ You'll need to get the PHP folks to give you the server side...
... You can call receive on the transport object yourself and pass that to parse, but I don't think that'll help, because then receive will throw the error...
I just checked in a fix for this problem. Let me know if you're still having problems. Cheers Simon ... absolute reference on where I am in the stream since...
We are trying to use PocketSoap as an ActiveX type of control from Centura (a old 4GL). There is a "wizard" in Centura that builds a class from an ActiveX...
The server side is generated by Delphi 7. I will check if it is a known delphi bug or a bug which had been fixed in the meantime. Could you send me an example...
hi everybody, i have developed a java-tomcat web service to download documents in DIME format and i'm writing a delphi client that uses pocketsoap. the web...
Hi Simon, I've checked the Delphi site if this was a bug in Delphi. Unfortunately nothing was reported. I will check still if I am able to control what is...
Hi Simon, I managed to generate with Delphi the output you described. It turned out that the soRootRefNodesToBody option of the HTTPSoapPascalInvoker's...
First off, let me say that I LOVE these three tools. I have been using all 3 of them for the past 2 years on at least a weekly basis. Would it be possible to...
I didn't spot this problem last time around, but its failing to deserialize correct because it doesn't think its using the soap encoding model, and that's...
this a delphi function that simply calls one function of my web service function getCatList(catName,userName,password: String): TStringList; var env:...
After calling soap.Parse(t), I get the following result from a remote soap server: <S:Envelope S:encodingStyle="" xmlns:a="http://iqx.airiqonline.com" ...
... Hmmmm, soap.Parameters.Item(0).Value should return an empty string based on the xml you posted. What's the error that you get? can you post a copy of the...
Hi, I have the following response from a webservice and I need to get the items operation_message and user_session_id: <?xml version="1.0" encoding="UTF-8"?> ...
Simon, I am trying to consume a web service and I'm getting the error "Failed 0x80044309 at penv->Parse(CComVariant(pt),NULL)". I don't understand what's...
hi simon, i've still tried to take out the call to throwFaults, but it makes no difference. nicola ... TStringList; ... node); ... for ... service. ... access ...
Not sure what to suggest, its sounds like Delphi isn't mapping the COM exception correctly, perhaps you could ask on a Delphi newsgroup ? Can you post a...
... That would be [helpstring("Unexpected status code returned by server")] E_STATUS_ERROR = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF, 0x4309) The server...
Hi all! I'm using PocketHTTP not only for communicating my applications with Web Services. I'm using PocketHTTP for sending messages to external CGIs (.asp...
... If you don't want the string transcoding to utf-8, then you'll need to transcode it to whatever encoding you want to use yourself and pass PocketHTTP an...
Hi group. I am new to the group and new to the pocketSOAP package. I found it just a day or so ago and have started to use it, creating a VB project around it...