That is what I'd try, too. Depending on file size, you might have to break it into repeated calls to push the bytes through. I'm not terribly familiar with...
As a bit of a followup, I did some more testing. This behavior seems to occur (as you mention) after three minutes or so of inactivity, but not always...
It is probably the garbage collector doing its job. Read "Object Lifetime and Leases" on http://www.codeproject.com/csharp/Net_Remoting.asp . I was able to ...
I would like to know how the server handles multi-threading when receiving Xml-Rpc calls (on .Net Remoting) so that I can customize this process. Could anyone...
I've been using this XML-RPC assembly it seems like forever, and it always works great; but all this time I've been using it on Mono with a .NET 1.1 profile. ...
Hi, I'm new to XML-RPC.NET library and have just tried to send a XML-RPC to an object in Second Life, but I always get the error "Server returned a fault...
The server expects to see xml tags in the post like this: POST /RPC2 HTTP/1.1 User-Agent: Frontier/5.1.2 (WinNT) Host: 10.2.1.100 Content-Type: text/xml ...
I have looked all over the Oodle discussion group and a few people recommended using XML-RPC.net when calling the oodle api. I have tried this and so far I...
... I ... I'm not sure if I am not clear enough in what I am asking or if this group is not active. Hopefully someone can steer me in the right direction :). ...
Looks like the parameter should be defined as a struct with two members: authenticationUser and authenticationPassword Do you have a "using System.Net;"?...
Charles, Thanks for the response and help! You were correct on both issues: Adding the using System.Net; referenfixed the second problem, but was really not...
Hi, I would like to use xml-rpc.net to create a web service app. This would expose a login method that would return a session cookie together with its' header...
I am new to using XML-RPC, but have extensive experience with C#. I am trying to connect to a Java based XML-RPC server. I am able to successful connect and...
Hi Steve: it sounds like an array of XmlRpcStruct is what you need. Without knowing the interface you are using for the proxy and what the server is expecting...
Hi, I am writing a XML-RPC client in VB .NET on .NET 2.0. When I execute a method and the if the Server returns an empty string into a structure or a date...
Hi Mike: the "foods" struct appears to be used as a hashtable with the id's being used as the keys of items within the hashtable, for example 8288. So you have...
Hey guys, Thanks for all the help on the last issue. All integrated. I have another issue though. The search i call sometimes returns special characters in...
Hi Everybody. I'm try use XMLRPC.NET for build client on PDA under Windows CE 4.2 I'm create form using MS Visual Studio 2003 and it's work. But I cant use XML...
Hi I read this chapter but I don't understand how to make this Anybody have examples ? Best Regards, Alexander ... 4.2 ... with ... method. ... VB.NET) to...
Hi Matt: you would need to modify the XmlRpcSerializer class to modify the stream containing the XML-RPC response so that it contains valid XML (it sounds like...
I have just started using XMLRPC.NET. I am able to create a server and a client and talk to each other. But I have been asked to show the raw xml sent and...
Hi there, In desktop Application I just became involved is such architecture: backend - (unmanaged mutiplatform C++) frontend - C# The idea is to have frontend...