Hello, I need to be able to connect to a supplier using a ASP.NET version of this PHP script that was provided: ______________________________________ <?php ...
I tried some other methods, but all without success: <XmlRpcUrl("https://api.*****.***:9999/xmlrpc")> _ Public Interface MyProxy Inherits IXmlRpcProxy ...
You have defined the response type to be an integer but a struct is being returned. Try defining the returning type to be XmlRpcStruct and see what it ...
It returns: Key:DESCRIPTION Value:Authentication failed. Key:CODE Value:530 Key:RUNTIME Value:0,004 Key:QUEUETIME Value:0 (I added the "Key:" and " Value:")...
Solved! You gave me to key to the solution! Interface Api <CookComputing.XmlRpc.XmlRpcMethod("Api.xcall")> _ Function xcall(ByVal myParameters As XmlRpcStruct)...
... Correct, you need to build an XmlRpcStruct and send that. ... I don't know anything about VB, but in C#... XmlRpcStruct rpcStruct = new XmlRpcStruct(); ...
I was maybe a bit to quick... I noticed that the real values that should be return now are set to "CookComputing.XmlRpc.XmlRpcStruct". The problem now it how...
... Enumerate the struct; you can treat and XmlRpcStruct just like a Hastable. foreach(object key in struct.Keys) Console.WriteLine("{0}: {1}", key,...
I change my code like this: Dim result As XmlRpcStruct = myProxy.xcall(myParameters) For Each d As DictionaryEntry In result If Trim(UCase(d.Key.ToString())) =...
... I don't see the problem, you got a response; the response is a struct (dictionary) with 6 keys (DOMAIN, LIMIT, TOTAL, COUNT, LAST, and FIRST). Values are...
The problem is that I am unable to read the values from this PROPERTY container, while the reading of the keys is no problem. In my code I have no option to...
Hello, Did you find a solution for this problem? I think to have the same issue: http://tech.groups.yahoo.com/group/XMLRPCNET/message/1135 Thanks ... the ... ...
I have found the solution. I had to read the value as an array, not as a string. This is how it finally looks like: For Each d As DictionaryEntry In result If...
Actually, I got the upload to work as long as it is relativly small. (For now < 5 MB has been tested to work.) John ... -- John P. Greiner Mechanical Engineer...
i have response from service. If declare method as int32 MyMethod() i get first response node (0). But i neeed get third value <int>961984</int> How i must...
... Did not work, I added another method in XmlRpcMethodAttribute.cs public XmlRpcMethodAttribute(string method,bool StructPara) { this.method = method; ...
The XML-RPC.NET dll has a reference to the System.Web assembly, which is required by some of the server-side code. In the next release the server code will be...
Hi, Is it possible to use a pre-established SslStream (or some kind of stream) for XMLRPC.NET to use? I need to bypass a non-standard proxy manually, then...
I would suggest using Log4NET (http://logging.apache.org/log4net/index.html). For the requests, since you are writing your own server, you just output the log...
Up ! A year later i've got exactly the same problem and I can't find any solutions. When i try to define the return type like this (asp.net vb): '--The...