Hi Simon, Thanks again for the response. However, for the last chance, do you have sample code for deserialization using the scripting mode for large incoming...
I don't have a sample to hand. It should of been ISerializerFactoryConfig not ISerializerConfig. What specifically are you struggling with ? once you enabled...
Hi Simon, As you suggested, I added the code to turn on scripting mode. I'm not sure if it's correct for 'config' value. The rest of the code are exactly the...
Hi Simon, Now it seems working!! Once I changed to CComVariant instead of VARIANT type, it produces the VT_I4 elements on the receiving side. However, the type...
... VARIANT type, it produces the VT_I4 elements on the receiving side. ... a lot of testing since our PocketPC 2003 will download or receive very long bytes...
I am calling this function in Powerbuilder and it is working fine when run on a Windows 2000 machine. When I run it on an XP machine, I get a return code...
Hi Simon, I got the response with "resVal.vt" equals to 0x200C or 0x2003, whereas the official value of VT_ARRAY is 0x2000. Hope this does not really matter as...
Hi Simon, When the PocketPC receives large array data, it still has problem. Remember I turned on the "scripting mode" before sending out. On the receiving...
... I'd expect the variant that contains the array to be of type VT_ARRAY ... VT_ARRAY is a bitmask, not an absolute value, the remaining bits tell you what...
... Yes, the win32 version should work on all supported Win32 platforms unchanged. (including w2k & xp). Would appear that its not installed on your XP box. ...
PocketSOAP is returning the encoded string (hence the VT_BSTR), obviously, as its a string and not an array, ubound/lbound won't do anything useful. PocketSOAP...
Hi Simon, Axis already changed the XML format to xsd:base64Binary as you suggested (see the XML Response below). Axis sends 360 bytes of array. However, ...
what is resVal.vt ? base64Binary ought to decode to an array of bytes, not an array of variants containing bytes. Cheers Simon ... suggested ... ubound/lbound...
Hi Simon, I hope you already got my last message. As I mentioned, Axis has already been changed for the XML format to xsd:base64Binary as you suggested (see...
Hi Simon, I'm facing the exact same problem. I searched the list archives and the only response was your. I've looked through Google and the MS KB to no avail....
what i said last time was "what is resVal.vt ? base64Binary ought to decode to an array of bytes, not an array of variants containing bytes." Also i mentioned...
Hi Simon, Sorry, it seems there was email problem since I did not get last response. Btw, the resVal.vt is 8209 (VT_RESERVED?). Do you think Axis still has ...
8209 == 0x2011 == VT_ARRAY | VT_UI1 an array of bytes, each entry in the safe array is a byte. (not a variant containing a byte). Cheers Simon ... response. ...
Hello, I'm running the latest available from the pocketsoap website. I'm presently trying to get ANYTHING to work - and I've distilled my problems down to this...
I actually tried this. It didn't make any difference - as follows. Give it a try and see the result. (see comments below the code): This is a slightly...
... namespaceURI's are case sensitive, it should be http://www.webservicex.net not the capitalized version you have. ... for a doc/lit service like this one,...
Replying to myself... I looked at the one sample I could find - the rssvalidator - that uses the proxy class generated by the wsdl wizard. I'm not a VB ...
Thank you. I got further fixing the URI. With the below I get "Object doesn't support his property or method" trying to echo the response. Why? This is using...
Simon, As a follow up re: the proxy classes, here's what I tried VBS wise and where I am stuck - I get a syntax error on the attempt the execute the method in...
Trying to generate a COM dll from a WSDL file fails for the following WSDL: http://www.barbi.no/ifdws55/services/ifdRPC-2.0Beta?wsdl The error reported is...
... because the web service is returning structured data, so the Value of the first response parameter is an object, not a primitive. (you might want to read...
sounds like you should go find a good book on VB. set resp = wx.GetWeatherByPlaceName(wxreq) BTW, you'll probably run into issues going down this route, the VB...