Dear All Hello! I have built a ASP .Net client that interacts with a phpgroupware server using XML RPC .Net However it gives the following error "Response from...
I'm currently working on adding a trace facility so that you can look at the incoming and outgoing XML messages. For the time being, use tcptrace or proxytrace...
Dear Charles Hi! Thanks for the reply. have downloaded the tcptrace and proxytrace from pocketsoap.com However my problem remains as is. The server response...
Hi Shajee - if you use one of the trace programs you will be able to see the response that is being returned by the server. - Charles ... tcptrace and...
I am getting the following error JavaClient: XML-RPC Fault #0: org.apache.xmlrpc.XmlRpcException: Index was outsi de the bounds of the array. when sending a...
Dear Charles Hello! Sorry for the long mail I've been able to invoke the login method of phpgw using xml rpc through my asp .net client. It gives back a...
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 ...