I am trying to send to an XmlRpc method over SSL with Basic Authentication. The following VB.NET code is in a subclass of XmlRpcClientProtocol and is used to...
I've investigated a report of problems with the Syndic8 XML-RPC API where requests from XML-RPC.NET were failing with "The server committed a protocol...
I am running a RPC server on this machine http://66.75.158.78/RPC2 and have deployed clients to call it (www.seti.net/SETINet/SETINet.htm). It works fine but I...
Hello, It should be possible - but that's more of a question for PHP folks than here. As long as the server is accessable, any client should be able to call ...
Hi Folks! I'm trying to write an XML-RPC client in VB and I'm having a little trouble. The following is the output from a system I'm trying to access. After...
Jody, As you didn't define what the problem was, I've had to guess - I'm assuming it's that you're not getting any data in the integer array you've defined for...
Sorry, I should have specified. In my Try...Catch, this exception is occurring: response contains struct value where array expected [response] This problem is...
Jody, Do you have a reference to the API documentation or is the call to a public RPC server? It's hard to troubleshoot on limited information, and any ...
You have defined the relevant proxy method as returning an array. But the actual return value in the XML-RPC response is a struct. As Stephen suggested, more...
Thank you guys for you work on this product. Why does the following not work? I am posting out of C++ to .net. POST LightSenseRPC/HeartBeat.Tick HTTP/1.1 ...
I'd say, judging by the error you're getting back, the method is not expecting an integer. Do you have the method definition so that we could see? Thanks, ...
Working around "Key duplication" exceptions Would it be possible to see the change described in - http://groups.yahoo.com/group/XMLRPCNET/message/322?var=1&p=2...
Dear Group members, I am having trouble getting XMLRPC.net to work with XMLRPC Api from a specific vender. I have attached a file with a description on how to...
... Declare an interface that matches the signature of the methods you want to call. Marshal the proxy Set the URL, credentials, etc... Call the method(s) ... ...
Here's the relevant snippet from the documentation: formatList: structure This structure contains one member which contains an array. Each value of the array...
Jody, Just a thought - try defining your integer array as an actual System.Collections.Array as opposed to an array of integers. I'm not around a box that has...
"response contains struct value where array expected [response]" The proxy method needs to return a struct containing a single member which is an array of the...
Weird implementation, but I guess that makes sense. From now on, I'll take this product's documentation literally when it says that. I have about forty more...
Working on another method in this *!@#$%! software package we bought, I've encountered a function that returns two variables that are dateTime.iso8601 type....
I've posted about the "Operation could destabilize the runtime" here: http://www.cookcomputing.com/blog/archives/000548.html Unfortunately I've not been able...
I have a web method mapped to a structure that is very simple. Here it is: Public Structure struct_adFrame 'Used by the SaveTheAd method. Public FrameType As...
In C# you could attribute the struct so that any missing members are ignored, something like this: [XmlRpcMissingMapping(MappingAction.Ignore)] public...
I'm trying to use XML-RPC to connect to an HTTPS server. When I attempt to connect I receive the following message "WebException: The underlying connection was...