Hello, I used the WSDL Wizard v2.3.105 to generate a VB6 project from this WSDL: https://telemarketing.donotcall.gov/downloadsvc/downloadsvc.wsdl I named the...
We had a message change that caused our Visual Basic Proxy objects to start throwing incompatible type exceptions. Originally our messages contained the...
Simon, Thanks for your reply. The reason I was trying pocketsoap was down to problems with the .Net proxy class generated by the web reference, some googling...
Hello, I am beginner in PocketSoap. I'll try to construct a simple message which purpose is to change an old password. PocketSoap message was: <S:Envelope ...
... I am attempting to access the array from JScript. Here's what I'm trying to do: var service = new ActiveXObject("DownloadSvc.DownloadSvcSoap"); ... var...
O.S Winxp Pro ,Pocket PC 2003 Hi, I do not know if this is the right place to ask this, but any way. Can any one point me in the right direction. I would like...
... Hi Simon, I also prototyped my code in VBScript and I encountered the same problem--the string0 member initially shows in the debugger as a "SafeArray",...
See the FAQ. When you create the username and password nodes in the soap header, you need to specify the namespaceURI, so those elements get qualified...
So, there's a few mostly unrelated issues. 1) VBScript only supports arrays of variants, it does not support strongly typed arrays. However there is a config...
ummm, yeah, looks like the serializer factory by default only registers the stongly typed deserializers for the main xml schema types, and not for the...
Hello, Thank you for yours reply. I write code in Delphi, namespaceURI is http://www.vlk.lt/AsmensDrautumoServisas/. I have no ideas what is wrong. There is a...
You need to pass the namespace into these 2 calls. H1.Create('VartotojoVardas', 'USERNAME', '', '', '', node1); node.Get_Nodes(H1); H1.Create('Slaptazodis',...
... http://www.pocketsoap.com/pocketsoap/docs/psdocs/interface_ISerializerFactoryConfig_method_SetConfig.html Yes, I'm aware of that. As I mentioned, I edited...
Sorry, i missed the point where you said you were using the code generated by the WSDL wizard, this always generates strongly typed arrays, so its not going to...
Hi all, I'm a new on the list and very interesting about SOAP which I begin learn now. But seems that PocketSOAP manuals and FAQ not full clear show the right...
As far as i can tell this has nothing to do with SOAP at all, that's not a soap request, and the response is not a soap response. .NET includes a generic HTTP...
I'm using PocketXML-RPC to communicate to a Confluence server from VBA code in MS Project. I'm having a problem specifically with sending the login method to...
Hi community, I have the following problem: I have a .NET 2.0 WEB-Service, which returns a XMLDocument type. The problem is, when I try to create the Proxy...
ARGH!!! Callbyname worked for calling the appropriate method. Unfortunately, I have a similar problem now with accessing the "id" field in the page object. ...
Thanks again. I'll give it a try. I was able to use gPage("id") instead of gPage.id. Any chance there is example code on passing arrays? I'm trying to call...
Yeah! Well at the end of the day most of my woes were directly related to VBE wanting to 'smartly' capitalize field and method names returned in the...
Hi I am a complete newbie to the world of SOAP The problem I is that I call a method and get a response however I cannot work out how to process the response ...
Hi! I am using PocketXMLRPC with C++ to connect to a XMLRPC server. It works most of the time, but sometimes, the answer is not parsed as it should. This is my...
That error is for XML parsing failed. If you look at the COM ErrorInfo object, you'll be able to get the exact details of what its erroring out on. Cheers ...