namespace OpenDHTLib { [XmlRpcUrl("planetlab4.cs.duke.edu")] public interface IOpenDHT { [XmlRpcMethod("put")] int Put(byte[] key, byte[] data, int ttl, string...
1058
Digital Enigma
digeratess
Jul 14, 2008 7:52 am
The dlls aren't in the latest zip. How do i compile without Visual Studio?...
1059
charlescookuk
Jul 14, 2008 7:58 am
If you use the built-in compressed folders feature of Windows Explorer in Windows XP to extract files from the distribution, you may find that the contents of...
1060
pearce_w_j
Jul 16, 2008 10:34 am
Hello to all. I am new to XML-RPC and am trying to create a .NET client to work with self hosted Wordpress weblogs using the xmlrpc.php server. I am happy with...
Thank you so much, and with apologies for missing that in the FAQ. I think my unfamiliarity with the concepts and terminology meant that I failed to spot...
1063
brian.demoore
Jul 22, 2008 10:47 am
Hi, I am trying to access a parameter-less method via XMLRPC.net and i have set UseEmptyParamsTag to false. Still I get an error saying that 'couldn39;t find...
1064
Brian Demoore
brian.demoore
Jul 23, 2008 7:02 am
Hi, I am trying to access a parameter-less method via XMLRPC.net and I have set UseEmptyParamsTag to false. Still I get an error saying that 'couldn39;t find...
1065
charlescookuk
Jul 23, 2008 7:50 am
Hi Brian: I just checked and setting UseEmptyParamsTags to false works as expected. You could check that the XML-RPC request is as you expect by using one of...
1066
Brian Demoore
brian.demoore
Jul 23, 2008 9:27 am
Hi Charles, Thanks for the reply. Setting up the parameter didn't work for me. However, I noticed that the UseEmptyParamsTag is not set in...
1067
Janandith Jayawardena
janandith
Jul 23, 2008 10:27 am
Hi, Is there a way I can send a C# dictionary object using XMLRPC.NET. My requirement is to send a List like <string , int>. janandith. [Non-text portions of...
1068
Janandith Jayawardena
janandith
Jul 23, 2008 6:01 pm
Hi, The XML-RPC server I talk with is in python. It needs a tuple as input. How can I send it using C# and XML-RPC.NET janandith [Non-text portions of this...
1069
charlescookuk
Jul 24, 2008 7:51 am
Hi Janandith: a tuple is an immutable list so I suppose an array is what you need. ... input. How can I send it using C# and XML-RPC.NET...
1070
charlescookuk
Jul 24, 2008 7:53 am
Hi Janandith: use XmlRpcStruct which is derived from HashTable....
1071
e_j_graham
Jul 30, 2008 3:25 pm
I'm new to XMLRPC. Trying to figure out how to convert an XMLRPC call written in Java to call the same service from .NET app using XMLRPCNET. Here is a...
1072
Owen Blacker
owenblacker
Aug 4, 2008 5:39 pm
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...
1073
Owen Blacker
owenblacker
Aug 8, 2008 12:40 pm
Erm, anyone? ... up ... something...
1074
Owen Blacker
owenblacker
Aug 14, 2008 11:44 am
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...
1075
Charles Cook
charlescookuk
Aug 14, 2008 12:16 pm
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...
1076
Janandith Jayawardena
janandith
Aug 26, 2008 10:05 am
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; ...
1077
Javier Gonel
elgraffic
Oct 18, 2008 2:35 pm
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...
1078
Javier Gonel
elgraffic
Oct 20, 2008 5:52 am
Hi again, I checked the problem more thoroughly and I found that IsAssignableFrom also matches 'interfaces39;. This can miss identify other data types. Therefore...
1079
Carlo
draka80
Oct 26, 2008 11:52 pm
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...
1080
Adam Tauno Williams
ferillis2003
Oct 27, 2008 1:05 am
... 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...
1081
Valeriy Shylin
valerashylin
Oct 27, 2008 2:44 pm
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...
1082
zbeckerman
Oct 27, 2008 6:42 pm
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...
1083
Valeriy Shylin
valerashylin
Oct 27, 2008 7:46 pm
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...
1084
Carlo
draka80
Oct 27, 2008 9:08 pm
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...
1085
Zev Beckerman
zbeckerman
Oct 28, 2008 3:29 am
If you plan to deploy a .NET application to a machine that did not install .NET, you MUST install the .NET redistributables ...
1086
Valeriy Shylin
valerashylin
Oct 28, 2008 7:05 am
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...