Hi, The Meta Weblog API states that getCategories() must return a struct which contains a sub-struct for each category. The following piece of codes which I...
Hello everyone ! :) I am new to XMLRPC , and can't do everything by myself in C++. (I did almost everything in C# - there it is so easy .. ). Can you tell me...
We're trying to write a new client to communicate in VB.NET with an existing server that came with a system we purchased. When we try it out, we get a...
I'm embarrassed to say that I only had one project (so far) that needed XML-RPC; I asked my questions, everybody was helpful, and I'm pretty much done for the...
Hi Jody: I don't understand what is going wrong on your system. I just tested setting the Credentials property of a proxy and I see the expected behavior: the...
[This was mistakenly posted to the wrong group - http://tech.groups.yahoo.com/group/xml-rpc/message/6575 - so I'm reposting it here] I'm trying to test some C#...
Hmmm...in my case, that authenticate header didn't appear. Using TCPTRACE, I was able to watch the transaction between my test code and the server, as well as...
You refer to lines 148 and 159, but I don't see any source. Am I missing something? (Or did you just give those numbers to make the point that the exception...
Hi, I'm trying to add network credentials to a proxy and it keeps telling "Credentials" is not a member of "StudioRpc" Here is the code for the creation of the...
Thanks for having a look at it. As I mentioned, the code that I was referring to is in XmlRpcClientProtocol.cs . I'm enclosing an isolated small source that...
It does now! I spotted my "little omission" straight after posting my earlier message. Doh! I logged back in here hoping to post a response before wasting...
... Since I saw there may be a new version released with some fixes soon, I thought I would dust off some unanswered questions (and add a few). ... I went...
I need to access multiple XMLRPC servers (on different ports) on the same machine remotely. I'm using XmlRPC.NET as both client and server to perform 2 way ...
I've not tried it but does this line of code solve your problem if you add it before the code making requests? ServicePointManager.DefaultConnectionLimit = 10;...
In your machine.config you can set the max connections: <connectionManagement> <add address="*" maxconnection="10"/> </connectionManagement> the address prop...
I am interfacing to an XML-RPC provider with vb.net that gives different responses to success and failure. My plan was to use try and handling failures that...
I ran into this myself (failure returned a simple struct, success returned an array of structs.) I believe it's non-standard behavior on the part of the...
I'm using VB.NET to connect to an existing RPC server. I created a structure like this: Public Structure Classifications Public id As Integer Public code As...
I'm trying to create MetaWeblog API's newMediaObject() method, whose primary purpose is to upload a file to a blogging server. During this call, I would like...
I now have a lot of examples using xml-rpc working in c# using software from cookcomputing. I need to use methods from MetaWeblog api but all of my research,...
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...