Default scalar type is not handled
Brought to you by:
irvazquez
The XML-RPC spec says that for scalar <value>s,
"If no type is indicated, the type is string."
The XML-RPC Library for COM does not handle this default.
It can be fixed by adding
Case Else
XMLtovb = CStr(.Text)
In the XMLtovb function at the end of the Select Case
block.
If you want to demonstrate this bug, try a python
xmlrpclib server that returns an array of strings.
Logged In: NO
Thanks mate that solved my problem with returning a String
from the apache XMLRPC server :)