I am having trouble figuring out how to make a simple RPC call in VB.net using xml-rpc.net. This is the code I have used so far, but there is something wrong...
The XML-RPC code here looks ok. If the call to the server is succeeding then it looks like the server is not returning what you expect. I don't understand what...
How do I view error responses from this call so I can trace what is wrong? The try part of the code is failing - it could be anything. Is there a xml-repc.net...
I mean that the call expects a paramter called ticket, and returns 3 structs called:ticket, weblogin, contactID. I have set up the VB Struct to represent the 3...
Do view all your xml download NetworkActiv (Google search). The application will sniff out what's being sent. ... is ... anything. Is ... how? ... call in ... ...
I can supply you with whatever information you need. The sever expects a struct call ticket, and the method call name is ticket.redeem. The method returns a...
Thanks Charles, I am supposed to only be sending one parameter called ticket, and receive a struct back containing 3 parameters: ticket, weblogin, and...
Turning off the Try-Catch block, I get a Cookcomputing error message: xml not valid xml-rpc missing method-response element. Does this provide any insight as...
So you need to send a struct as the only parameter to the call. The invalid response suggests that the server does not like your request and is not returning...
I am new to XML-Rpc so I am open to any suggestions or critics of what I am trying to do. First I have a structure which has an array structure inside of it....
Not terribly familiar with C# so forgive me if i'm leading you down the wrong path but it appears you might be trying populate the structure as an array? You...
Hello all. I've made more progress since I last posted on here and I can now access certain xml-rpc services via asp.net. However, I now need to return to the...
Charles, Your suggestion was correct. I got it to work. As soon as I saw it, I was like oh yeah, why did I not think of that. Curtis, I never tried your...
Thanks Charles. I've been looking around but I can't find anywhere a reference on how to define such a structure in my .net file... as I said, I tried: Public...
*sigh* You guys in here crack me up. I've trawled through the post history and it seems that it's pot luck as to what gets answered. Many questions in here go...
I have only been using XMLRPCNET for about a week but since no one replied, I will give my attempt. I agree that I have not been able to find a good example...
Another alternative is to not define a public structure at all but to simply load the object into the appropriate type of object. So for instance it appears it...
Curtis, I have not been able to cast a XmlRPCStruct. I will try to put into code what I think you are proposing. I am using C# because I work faster in it the...
I think you might need to define your .NET public structure elements as public as referenced http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#1.10. public struct...
I still get the same error message. The point is that I dont think you can cast XmlRPCStruct. Can you show code that does? Like you suggested? Joseph ... ...
Thanks for the input guys. I'm also still adrift. Been trying all day. I have tried to pare it all back to the absolute bare minimum in that my structure is: ...
Yea, i do something like this. I didn't use an interface in my code but rather a small wrapper class. So basically it will cast back an XmlRpcStruct when you...
In C# the return type should be like type POI here: public struct CustPOI { public string uid; public string description; public int timesheet; public int...
Thanks Charles... It makes sense... but I'm still not quite getting it. I now have this definition (translated back to c# from vb.net) public class mapserver {...