Hi, I need a remote procedure call between a java application running on unix and a .net application running on windows. the java application must be the...
Hi Steffen: XML-RPC.NET implements the XML-RPC protocol at both client and server ends so it will work fine as a client to any compliant implementation on the...
Sorry to jump in - just want to clarify and amplify a little bit. XML-RPC is a standard - the language or framework should not matter at all. As long as the...
Hi, for a university assignment I am trying to create some kind of wrapper for some custom services. I've been playing around with XML-RPC the last few days...
Hi Dan: (1) See http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#2.23 (2) There is a way of specifying a function which takes an arbitrary number of parameters of...
Hi Dan: I've uploaded an assembly with the required fix here: http://www.cookcomputing.com/test/paramsfixbuild.zip A method like this should do what you want: ...
Does XML-RPC.Net support method overloading? I have tried: [XmlRpcMethod("Foo", Description="Attempt Method Overload")] public virtual string Foo(string s1) { ...
Hi, I am very new in programming and xml-rpc can some one explain me to do about the following: The code: Imports CookComputing.XmlRpc Public Structure...
Hi, How do you do it if your struct is inside a array? I am new to programming in VB.NET Please provide me a sample code to handle this. like the following xml...
I believe I accomplished what you are trying to do in something of a workaround. I never tried your method so I hadn't realized there was no support for method...
Hi, I would like to know how to disable the naming of parameters. For example if have this structure : public struct ProvisioningRequest { public XmlRpcStruct...
Hi, I'm new to .net and tried using xml rpc from my client written in .net and the server is written in Java. The client call code is as follows. namespace...
Dear friends, I have one XML RPC service running in a local machine as a window service. How can i search what are methods available in the RPC service. And...
I notice that the latest versions don't include dlls, and that the only targeted build mechanism requires Visual Studio 2005. The documentation seems to...
If the XML-RPC service is implemented using XML-RPC.NET point your browser at the URL. If this does not apply, the service may implement the XML-RPC...
Hi Charles, Thanks for your response. Can u give me a code to get the list of available methods in the RPC serve. i am not able to create the proxy class ......
Sorry if this issue has already been discussed to death, but I did a search and couldn't find a specific post to reference. I'm debugging our Metaweblog API...
According to the XML-RPC spec string values can be represented in either of the ways you describe. Is this causing a problem with a particular client or...
Thanks Charles. Yes, it seems to be causing problems with BlogJet and Windows Live Writer. If I could easily control the output to choose one representation or...
Fiddler (http://www.fiddlertool.com/fiddler/) can capture and reply the messages, and let's you alter them as needed for this type of testing. I haven't worked...
Dear cook, Hi, Does the xmlrpc net array client can get from any xmlrpc php array ? if it does? how should i implement it any answer would be help, thank u, ...
Hi all, I have this declaration: [XmlRpcMethod("user_list")] String[] user_list(); I'd like to know if its possible to use String[] or what else other ...