I am writing a client for an xml-rpc server that occasionally exhibits a bug where it duplicate a key/value pair in the response. Since the assembly...
From the FAQ "Classes derived from XmlRpcClientProtocol inherit a Credentials property. This is used where the XML-RPC server authenticates the caller. The...
Although the XML-RPC spec does not state that member names in structs are unique, I think it is generally assumed that this is the intention. It would not be...
Hi Everyone Does XML-RPC.Net support cookies? I realize this is really up to the underlying HTTP implementation. XmlRpcClientProtocol extends WebClientProtocol...
I use XMLRPC.Net to talk to a Tomcat web application hosted in JBoss. In order to ensure that my XMLRPC.Net connection uses the same session, I have to set the...
I've uploaded a test version of the Compact Framework version of XML- RPC.NET to: http://www.cookcomputing.com/test/XmlRpcLib.zip This contains client code...
I get this error message when I've invoked a message retrieving some data. Additional information: response contains empty int value [response : array mapped...
I think you can ignore the error by adding this attribute to the struct element: [XmlRpcMissingMapping(MappingAction.Ignore)] However, my preference will be to...
I had already come across that solution before and I think it only applies when you're sending something to the server. I've added it to the individual element...
I've been going through the code and is there a safe way to default a null node value for int's (in the ParseInt method)? I'm afraid to go mucking around in...
I think the error here is that the server is returning an int value element without a child containing the value, e.g. <int />, presumably in attempt to...
In ParseInt, instead of throwing an exception when the following condition is true, set retVal to zero. if (valueNode == null) ... retrieving some ... in the ...
I get this error message when I've invoked a method in a we service: An unhandled exception of type 'CookComputing.XmlRpc.XmlRpcServerException' occurred in ...
Hi, I am a newbie in asp.net and xml rpc. I have been reading about xml rpc on internet and I am really confused with all the infomation out there, so your...
Hi Charles, I did a little testing of the CF library back in October. I'm now starting to implement in earnest. I'd be interested in having access to the...
Hi, I get the following error when I try to invoke 'CreateUser' method StackTrace: " at CookComputing.XmlRpc.XmlRpcSerializer.Serialize(XmlTextWriter xtw, ...
I am trying to use TCPTrace for debugging xml-rpc calls in asp.net, but the trace shows nothing. I tried both in debug mode from vs.net as well as executing...
Hi, I am a newbie in asp.net and xml rpc. I have been reading about xml rpc on internet and I am really confused with all the infomation out there, so your...
The "listen on port #" setting is the port that you want TCPTrace to listen on and which you point your client at. The "destination port #" setting is the port...
Nearly there. Had to make changes to the unit tests and build scripts because of moving to more recent versions of NUnit and NAnt. I may be able to get the...
Hi all - Does anyone have any examples of using XmlRpcProxyGen to generate proxy classes from managed C++? I tried to generate a proxy for a simple interface...
Hi Ben - the new release (I'm currently updating the website pages) has better error handling here and indicates that InParams cannot be mapped to an XmlRpc...
I have find a dll to exploit the xml-RPC (CookComputing). I made tests and successed(request for a ping, etc...). But, my problem is when I want to go to a...
Hi Larz - its less likely to be this code causing a problem than the configuration of IIS. The relevant code when handling the response on the client side is: ...
Version 0.9.1 is now available at www.xml-rpc.net: http://www.xml-rpc.net/release/xml-rpc.net.0.9.1.zip Key features: * Distribution includes version of...