i wonder which source files i can safely delete to have a client only version of XmlRpc.NET lib? i'm considering possibility of embeding only necessary parts...
There are a few server-only source files. They're fairly obvious from their names. Just remove files until your build breaks :-) I don't think it will make a...
Hi, I am new to using XML-RPC.NET and would appreciate some help. XML-RPC server I am trying to communicate with requires that each request contains the...
Hello! I have implemented the XML-RPC server by using .NET Remoting (without IIS) All works fine, however after about 3 min of inactivity (no requests from...
Is it possible to use relative urls with WLW and XML-RPC? I wanted to only pass in a relative url in the return struct of newMediaObject but it errors with an...
Your question is best asked in the WLW group, but I don't think it's valid to return a relative URL from newMediaObject. The specs suck, no nice way to say...
Hi, I am aware that it is possible to accept nonstandard responses from the server using XmlRpcNonStandard enumeration. However I am wondering if opposite is...
Alright, I've been searching through the posts but I couldn't find anything that helped me here. I have a PHP XMLRPC Server that is spitting back a list of...
Sorry, there is no functionality to output non-standard formats. You will need to build a custom version of the library unless you can get the server end...
Hi Clint: this is not a valid XML-RPC response. The server needs to be fixed. From XML-RPC spec: "The body of the response is a single XML structure, a ...
Charles answered my question so I'm all set. The server response contained an outer struct which *then* contained the struct I defined below. Thanks! -Sean ......
Sean - I see you're taken care of, but you asked two questions I actually know the answer to, so for posterity: - when in doubt about the form of the response...
Thanks for the tips Ivan! I'm actually still struggling with formatting struct(s) for the response, but I'll figure it out... I understand my previous error,...
Hi all, I am working in domain of pocket pc.. Wanna discuss a problem ........pls help me out with the solution........ I wanna to make my pocket pc a...
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...