Drew Marsh has come across a change in XML-RPC.NET 0.7.0 which I should have documented: when mapping the members of an XML-RPC struct to the members of the...
I need an example using XmlRpcClientProtocol sending and recieving structs. The reason being that I need to use headers in my request with the structs. I...
Hello, I really new to c# and xml. Can someone please give me a working example of a client call that passes a defined xml struct and recieves a response of...
All, I am trying to build an XML-RPC client in VB.NET and I want to know how it is possible to connect to a stand-alone server. By stand-alone server I mean a...
Hi all, Is there anything special that needs to be done (e.g. attribute ?) to send a C# struct ? I have a struct (as below) but it never seems to get...
I'm a linux/PHP&C programmer and I build a new client XMLRPC VB.NET client (without knownledge of the language) in 3 weeks. Really easy of learn (VB and...
I've just uploaded version 0.6.0. This contains the changes listed below. I've not yet updated the docs. This will take another week or two. 0.6.0 CHANGES ...
Just a reminder: if you get an exception with this message: "Invoke on non-existent proxy method" when making a call on a proxy class, check these two points...
Hello, Could somebody post or point me to a sample of an XML-RPC server written in VB.NET? I do not know C at all, so reading the examples in C#, on this group...
Some updates to FAQ described here: http://www.cookcomputing.com/blog/archives/000125.html#000125 http://www.cookcomputing.com/faq/xmlrpcnetfaq.html...
I have a set of xml-rpc.net clients that need to talk to a number of our internal hosts taking advantage of SSL encryption. This has worked fine for us using...
Hello, I have a Web Services in my machine that I make with xmlrpcservice, also I have a client that I run for test my Web Services.. but when I run it, the...
FYI I've just posted a draft of the FAQ at: http://www.cookcomputing.com/faq/xmlrpcnetfaq.html In the next release of the library this will replace the current...
They have finally got back to me and said they want: <?xml version="1.0"> <methodCall> <methodName>login</methodName> <params> <param> <struct> <member> ...
I've just released version of 0.5.4 of XML-RPC.NET. This release contains three changes: (1) In some cases the name of a member in an XML-RPC struct might be ...
If you use XML-RPC.NET please note the following bug. If an array occurs in a position in an XML-RPC request or response where the type of its elements is not...
I am trying to access Xindice from VB.NET, via XML-RPC. I have tested the Xindice-XMLRPC using Java clients and it works. I am now trying with XMLRPC.Net and...
I've received a couple of emails about a missing key file if you try to build XML-RPC.NET from the distribution. The problem is that I've generated my own key...
Re earlier posting about generating proxies automatically using the RealProxy class, it won't work unless the code is running with extra security permissions...
I received Ingo Rammer's excellent book Advanced .NET Remoting from Amazon a few days ago and this was the spur I needed to experiment with .NET Remoting....
When using a .NET struct type as a parameter or return value, the members of the struct must be declared as public or else they will be ignored. For example,...
This is some test code for the proxy class in part one of this sample. using System; using CookComputing.XmlRpc; using CookComputing.XmlRpc.BloggerAPI; class _...
Given that Blogger is probably the most interesting public XML-RPC service available, here is a sample proxy class. A test client using this proxy will follow...
I've been experimenting with the idea of using the .NET framework class RealProxy to automatically generate a proxy which implements the required interface. To...
This sample illustrates how the XmlRpcSerializer class can be used to serialize and deserialize XML-RPC requests and responses between instance of the...