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...
Hi Charles, May I ask what is the progress of making the raw data available? We discussed this feature awhile back and I am hoping I can make use of it soon in...
Thanks for reminding me Alex. As discussed before, how about this: Two events on the XmlRpcClientProtocol class: Request and Response. These will make...
Charles, I must have missed that discussion thread :) Events sound good. Will they be async or will that be my responsiblity? I am don't problem with either,...
Not sure what you mean by asynchronous events, but then I've not done much with events. As I see it the client will subscribe to the events on the XmlRpcClient...
Hi, To implement services in VB.NET http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#3.10 However,is it Automatic Documentation is not supported in VB.NET, as...
Charles, When can we expect an update with these events added? An ETA will be good, but if you can't give one that's ok. I just want to have an idea so I can...
Hi Alex - I was thinking of getting the next release out sometime over the Easter break, i.e. within the next week. I've implemented the proposed events on the...