I realize that the XML-RPC spec does NOT define support for 64-bit integers (at least based on my Google/Bing searches for the past hour or so), but I did see...
I'm getting a: XmlRpcInvalidXmlRpcException: response contains struct member aImage with missing value [response : struct mapped to type XmlRpcStruct] when...
I've checked in support for <i8>, with unit tests, on the 2.4 branch in preparation for a 2.5 release. You can checkout and build the code from here: ...
Hi, I have a simple method that returns the result set of whatever sql query I send as a parameter. Let's say I have one like this: select col1, col2, col3,...
Hi Wayne: XmlRpcStruct derives from Hashtable and so the ordering of the entries in the collection depends on the hash value of each entry. The XML-RPC spec...
Hi! First, I'm a big fan of the XMLRPC Library! Awesome code. I am working on a web handler (ashx) as an event listener. The events are being sent as a Request...
Hi Charles! Do you mean use the XmlRpcLogger to output the mentioned to xml files? If so, at what point (where) do I attach the tracer? I've successfully used...
Sorry, what I suggested is for a client proxy only. It is not supported on the server. You will have to write some code to dump the request stream in...
Hi Charles! I turned off my logging code and sure enough that error went away to be replaced with perhaps a more meaningful one (below). Is this being thrown...
It looks like the Request does not follow the XML-RPC spec. A couple of the The <param> tags do not contain a <value> tag. Is there something I can do to work...
Complain to the people who wrote the client code? :-) You could modify this code in DeserializeRequest: XmlNode valueNode = SelectSingleNode(paramNode,...
Thanks again Charles! I made the modification as directed and it got me passed that and on to the next issue ( a non-standard dateTime format ). Aighh. Anyway,...
Hi i have downloaded the DrupalXmlRpc.NET. framwok from sourceforge.net and tried running the same example. i just changed the wensite address to my drupal...
I am a newbie at xml-rpc.net and having some difficulty creating a method call that requires a string parameter and a struct parameter with a base64, and 2...
Hi Duane: XML-RPC.NET maps the XML-RPC type base64 onto an array of Byte: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#1.12 ... [Non-text portions of this...
Thanks for your reply Charles, I got this working last night. I changed the struct: public struct VideoStruct { public byte[] file; public string title; ...
Hi Deepali: there is a mismatch between what the client expects and what the server returns. This could be because when there is a error, for example login...
Hello, i am very new with xml rpc and i got the error Could not load type 'XmlRpcServer.wfDataServer' from assembly 'XmlRpcServer'. for a example application. ...
Could not load type '*XmlRpcServer.wfDataServer'* from assembly 'XmlRpcServer'. namespace *XmlRpcServer* { public class *wfDataExchange*: XmlRpcService ... On...
Hi Duane: the class names were different (the '*' were how Yahoo handled bold formatting in the message I sent). ... [Non-text portions of this message have...
Hi! I get this error occasionally where the client is sending an improper type (unfortunately I have no control over the client software). I am expecting an...
Hi Tim: in this scenario you have to specify the type as Object and then check it at runtime to see if it is an array or string. ... [Non-text portions of this...
hi Charles! Thanks. I am having Brain freeze here. If I specify a struct (event_struct) as the object that is to be mapped/loaded from the request and one of...