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...
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! 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 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...
Could not load type '*XmlRpcServer.wfDataServer'* from assembly 'XmlRpcServer'. namespace *XmlRpcServer* { public class *wfDataExchange*: XmlRpcService ... On...
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. ...
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...
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 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...
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 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...
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,...
Complain to the people who wrote the client code? :-) You could modify this code in DeserializeRequest: XmlNode valueNode = SelectSingleNode(paramNode,...
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...
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...
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! 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...
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 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, 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,...
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: ...
I'm getting a: XmlRpcInvalidXmlRpcException: response contains struct member aImage with missing value [response : struct mapped to type XmlRpcStruct] when...
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...