Hey people! I have following problem: I'm trying to get some data via xmlrpc from the server (which is a Java-Server). My client is written in C# but the...
Is it just me or are the compiled binaries missing from the currently linked xml-rpc.net.2.4.0.zip file? (I tried recompiling but I obviously don't have the...
Hi. I'm New in C# and xml-rpc.NET. But it's a good idea use the Try Catch. Here a code, I didn't test, but I think is ok. I removed ToString too. I hope have...
We have an .ashx file in a subfolder within our main application folder. As per the instructions on the http://www.xml-rpc.net/faq, section 3.11 "Can I...
Unlike the example in the FAQ you are using code-behind. Is the vb file in the App_Code folder? What do you see if you try to access the url of the ashx file...
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...