Hi, I try to work with CF version of XmlRpcLib.dll. How can I make XmlRpcLib.dll returning my server side error messages instead of message "1 : Server...
Are you using the FaultCode and FaultString properties of XmlRpcFaultException? (The base class of XmlRpcFaultException is ApplicationException and is...
Hi Charles, ... Thanks for the hint, now it works fine. It was my mistake to catch standard "Exception" instead of catching special " XmlRpcFaultException". ...
Hi, I am trying to consume an XMLRPC server using ASP.NET. I am using the CookComputer.XmlRpc assembly. When I make a call to the server, the Server writes...
With problems like this it is always worth using Simon Fell's ProxyTrace or TcpTrace to observe the HTTP/XML-RPC requests and responses. If there is a long...
Thanks... tcpTrace made it pretty easy. Apparently ASP.NET sends a custom header named VSDebuggerCausalityData that causes the header to exceed 2048 bytes....
Hi everybody, I'd like to develop a library for accessing the egroupware suite. Now, I have the problem that I can generate a valid request for login, the ...
Hi Jaan - when I run your client it displays this response from the server: <?xml version="1.0" encoding="iso-8859-1" ?> <methodResponse> <params> <param> ...
Thank you for your quick response. I said to my teacher, that it doesnt work, he said that, if value has no type tags, then it should be by default string...
Your teacher was correct about string values but the problem here is the format of array values, not strings. I don't know why the data element was designed -...
Hi Charles, CF build of XmlRpcLib.dll causes an exception (displayed in debugger) ... "An unhandled exception of type 'System.IndexOutOfRangeException' ...
Hi Onno - I'm currently waiting for delivery of a Loox 720 so I can't try to reproduce this problem right now. I'll send you the source files and the VS...
Could XMLRPC.Net support multicall in one http request, because the http invokation is a time consuming work, if we can call many rpc methods in one http...
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...