I'm accessing an XML-RPC service where one type (User) includes a property that may be one of a small set of known values. In C#, I'd do this as an enum, but...
I take it this group is dormant, then. Ten days with no answer to a relatively simple question makes me think this project is no longer supported and, as I am...
Hi Owen: the FAQ has no mention of what you are trying to do so in that case it is safe to assume it is not supported (as is the case). And this is an open...
Hi Charles, Thanks. I used an array of two object arrays it works. ex: object[,] obj = new object[1,1]; object[] oArray = new object[SIZE]; oArray[i] = obj; ...
Hi all, I discovered that I cannot extend XmlRpcType. It's not a problem with the XmlRpcType class itself, but with the XmlRpcService class that identifies the...
Hi again, I checked the problem more thoroughly and I found that IsAssignableFrom also matches 'interfaces'. This can miss identify other data types. Therefore...
Hi all, I'm new to xml-rpc architecture and to xmlrpcnet. I'm playing with last.fm web service api. I succesfully managed to send a request, but responses are...
... This looks like a good XML-RPC response. ... See the FAQ. Define a proxy interface for the API and it will all be done automatically, it will be just...
Hi guys, sorry for posting once again the same thing already discussed here about how to implement and configure the service in the web.config file. Still I...
Download dependency checker at: http://www.dependencywalker.com/ This will allow you to see what DLLs (paths) are expected and which are missing. This will...
Thanks Zev for the advice. However, DependencyWalker does not seem to reveal any problem with expected dlls except of one missing function in MPR.DLL, but I...
thank you very much for replying. I know how to build a proxy interface. I'll try to explain the problem better: this is the response from last.fm: <?xml...
I'm using a virtual machine with Windows 2003 Server Enterprise edition. All the recent updates (including .NET Framework Version 2.0) are installed. I checked...
OK, I managed to make the service work. However, by now it should be located in the root directory (any indication of the relative path to the assembly in...
Hello, I'm seeing a strange error with a proxy that I've generated. The first time I make a call with the client proxy, it works fine. Once I make a second...
I just figured out what's causing this. The internet settings on my workstation are configured to go through a proxy even though this particular XML-RPC...
... I've just started playing around with XMLRPC and livejournal, and I'm using the following definition for the login command, which it appears to be working...
I'm trying to communicate between two hosts using XML-RPC.Net with C# as code-behind. I am able to share files between the two computers, so I know they are...
I tried to compile the new version of src code but am getting a bunch of errors. Where can I get the latest CookComputing.XmlRpcV2.dll? Thanks, Srinivas...
Hi Luis Daniel: I don't test the library with Mono but I know that a number of people are using it with Mono. I don't know which versions of Mono though. ... ...
... Er??? Not sure what you mean. Instance Consonance <http://code.google.com/p/consonance/> uses XML-RPC.NET to talk to <http://code.google.com/p/zogi/>...
It has been 6 years I have nt program a line. I wonder if there is any example of how to programa mono avec xmlrpcnet. I have experience with vb.net. Regards,...
when I make an xmlrpc call over http everything works great, but not over https. It gives me errors like: Call XML not a proper XML-RPC call. Call is not valid...
Hey, on calling a method i obviously get Object[], however how i can down cast it to a class or struct giving that some elements in the response are...