Hi, First off - what an excellent library! Thanks for developing it. I'm using the library in an open source project of mine. I've had to modify your source...
Hi, I'm currently using XML-RPC.net with my asp.net application. my XML-RPC service is built by python. when I calling the service, I got a exception error...
Hi, I am using XmlRpcClientProtocol object in VB.NET form to invoke a remote function call on an ASP page. The syntax used for invoking the remote funtion is...
hi i think this error i get , is diffirent with nirmal errors . i am not new in programming , but i am new in C# and xml-rpc . i want to start with a easy and...
Hi Erik - sorry about the delay in responding, just back from vacation. Your understanding of the licensing position is correct. - Charles ... to ... MIT ... ...
Hi Ali - define a function like this [XmlRpcMethod("math.Add")] public int Add(int a, int b) { return (int)xmlRpcClient.Invoke(this, "Add", a, b); } and then...
Hi Kuldeep - if you catch the XmlRpcFault exception you will see it contains the error code and error description returned from the server in the XML-RPC fault...
It looks like the server does not like the request for some reason. Can you look at the request/response using tcptrace or proxytrace and post here if it is...
Thanks a lot for the response Charles. I was able to fix the problem at my end. I was using the incorrect namespace name for the function call. Thanks, Kuldeep...
In the struct return value, is it possible to specify that the member value could be either int or string? For example the post struct that I use for...
Hi, Building a Javaclient which accesses a xmlrpc.net ASP.NET web service. I get this 403 error when I have more than 10 threads concurrently accessing the...
Hi, We've just discovered this problem, XML-RPC.Net crash if the URL is set as IP address without the http:// prefix. For example 127.0.0.1 will crash, but...
I could at least insert the .net assembly intro delphi8 and even could drop it as a no visual component into a new sample application. But how can I invoke a...
Version 0.9.0 is now available at www.xml-rpc.net. XmlRpcServiceAttribute has a new AutoDocumentation property which allows automatic documentation to be...
I have an Internet Explorer toolbar for which I want to use XML-RPC to communicate back to the server that has served the page which is showing as the main...
How do I read attributes of an XML-RPC file and create a response document when the incoming request looks like this? Is this standard XML-RPC or not? I am ...
hi I am new to this group I need urgent help. I am trying to make an application using c#.Net and java I have written following code to access the method in ...
I am trying to accessing a service using xmlrpc in c#.net The request structure expects two variables %limit and %offset. but c# doesnt allow me to declare...
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....