hi i'm new to xmp-rpc, and i am currently working on projects with server in apache (doing some php script developed by others), and client using xml-rpc with...
hi i'm new to xml-rpc, currently i am working on a project with server in apache/php and client in xml-rpc with .net (visual studio 2005). we would like to...
You can just have the library in the same folder as your application. As long as you set the reference to it in your code (using CookComputing.XmlRpc) you're ...
Does anyone know if there is a way to dynamically set the XmlRpcMethod name? I am connecting to an XMLRPC server, where an initial call returns an instance id,...
Hi all, Nice to meet you & thank you for excellent library. I'm struggling to post to Wordpress.com with VS 2005. Which API should I use? Is there any working...
You might want to reference http://codex.wordpress.org/XML-RPC_Support which has a whole bunch of information about using MetaWeblog, Blogger, or the MT XMLRPC...
Hi, Is there any way to not assign a constant URL in Interface? Cause the server path may change time to time. <XmlRpcUrl("http://VMXP/Xmlrpc/RPC2.ashx")> _ ...
Thank Matthias, It's work. ... Yes there is. I'll post the C# code because I never use VB, but it should be easily translatable: IStateName proxy = ...
Thank Matthias, It's work. ... Yes there is. I'll post the C# code because I never use VB, but it should be easily translatable: IStateName proxy = ...
Hello. I want to know how to send message from server ? Now in my application only client can send message to server and get response. How to do a server-sent...
XML-RPC over HTTP is stateless - you'd need to create an XML-RPC "Server" in the client if you're wanting to do it that way, and then create a "Client" on the...
ok, i am making now this staying alive feature for client. I also tried put "client" to server and "server" to client. Looks really not good. But i am in...
Hello there, I currently try to implement the FlickrAPI with XML-RPC.NET however I#m facing some problems with some Methods. Flickr uses to deliver the Method...
An manally implemented proxy method like this requires that the signature of the method corresponds to the signature of the XML-RPC method. In this case it...
Hello Charles, thanks for your information. I will try if I can do it with XmlRpcProxyGen, but I think I will run intro trouble because I remember this not...
For the Compact Framework you will have to use write a method which calls Invoke because the CF doesn't support reflection. In this case define the proxy...
I am trying to send to an XmlRpc method over SSL with Basic Authentication. The following VB.NET code is in a subclass of XmlRpcClientProtocol and is used to...
I've investigated a report of problems with the Syndic8 XML-RPC API where requests from XML-RPC.NET were failing with "The server committed a protocol...
I am running a RPC server on this machine http://66.75.158.78/RPC2 and have deployed clients to call it (www.seti.net/SETINet/SETINet.htm). It works fine but I...
Hello, It should be possible - but that's more of a question for PHP folks than here. As long as the server is accessable, any client should be able to call ...
Hi Folks! I'm trying to write an XML-RPC client in VB and I'm having a little trouble. The following is the output from a system I'm trying to access. After...
Jody, As you didn't define what the problem was, I've had to guess - I'm assuming it's that you're not getting any data in the integer array you've defined for...
Sorry, I should have specified. In my Try...Catch, this exception is occurring: response contains struct value where array expected [response] This problem is...
Jody, Do you have a reference to the API documentation or is the call to a public RPC server? It's hard to troubleshoot on limited information, and any ...
You have defined the relevant proxy method as returning an array. But the actual return value in the XML-RPC response is a struct. As Stephen suggested, more...
Thank you guys for you work on this product. Why does the following not work? I am posting out of C++ to .net. POST LightSenseRPC/HeartBeat.Tick HTTP/1.1 ...