Search the web
Sign In
New User? Sign Up
XMLRPCNET · XML-RPC.NET
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 902 - 931 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
902
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...
realdragon41
Offline Send Email
Sep 2, 2007
6:11 pm
903
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...
charlescookuk
Offline Send Email
Sep 3, 2007
7:46 am
904
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...
realdragon41
Offline Send Email
Sep 4, 2007
2:33 pm
905
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...
realdragon41
Offline Send Email
Sep 4, 2007
2:35 pm
906
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#5.1...
charlescookuk
Offline Send Email
Sep 4, 2007
2:41 pm
907
Sorry, but without knowing what your server expects and what it returns it is impossible to help you with this....
charlescookuk
Offline Send Email
Sep 4, 2007
2:47 pm
908
Do view all your xml download NetworkActiv (Google search). The application will sniff out what's being sent. ... is ... anything. Is ... how? ... call in ... ...
Manny
mgonzales3
Offline Send Email
Sep 4, 2007
2:52 pm
909
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...
realdragon41
Offline Send Email
Sep 4, 2007
2:55 pm
910
You are not sending a struct - you are sending 3 separate parameters in the call to the XML-RPC method ticket.redeemget....
charlescookuk
Offline Send Email
Sep 4, 2007
3:18 pm
911
Thanks Charles, I am supposed to only be sending one parameter called ticket, and receive a struct back containing 3 parameters: ticket, weblogin, and...
Nimesh Jagota
realdragon41
Offline Send Email
Sep 4, 2007
3:26 pm
912
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...
realdragon41
Offline Send Email
Sep 4, 2007
3:51 pm
913
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...
charlescookuk
Offline Send Email
Sep 4, 2007
4:05 pm
914
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....
been_mean
Offline Send Email
Sep 20, 2007
7:04 pm
915
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...
Curtis Scheer
csch_nu2001
Offline Send Email
Sep 21, 2007
3:56 am
916
I think the easiest way to achieve this is to change the assignment to searchFacial.faces like this: searchFacial.faces = new ...
charlescookuk
Offline Send Email
Sep 21, 2007
6:36 am
917
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...
Carl Edwards
carled9_2000
Offline Send Email
Sep 21, 2007
10:47 am
918
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...
been_mean
Offline Send Email
Sep 21, 2007
1:03 pm
919
Looks like it is returning a struct containing a single member called poi whose value is an array of struct....
charlescookuk
Offline Send Email
Sep 21, 2007
4:06 pm
920
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...
Carl Edwards
carled9_2000
Offline Send Email
Sep 24, 2007
8:54 am
921
*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...
Carl Edwards
carled9_2000
Offline Send Email
Sep 25, 2007
8:23 am
922
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...
been_mean
Offline Send Email
Sep 25, 2007
1:52 pm
923
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 Scheer
csch_nu2001
Offline Send Email
Sep 25, 2007
4:52 pm
924
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...
been_mean
Offline Send Email
Sep 25, 2007
6:09 pm
925
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...
Curtis Scheer
csch_nu2001
Offline Send Email
Sep 25, 2007
6:43 pm
926
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 ... ...
been_mean
Offline Send Email
Sep 25, 2007
7:27 pm
927
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: ...
Carl Edwards
carled9_2000
Offline Send Email
Sep 26, 2007
3:35 pm
928
Sorry - typo - "cookcomputing.xmlrpd.xmlrpcstruct" is, of course, "cookcomputing.xmlrpc.xmlrpcstruct"...
Carl Edwards
carled9_2000
Offline Send Email
Sep 26, 2007
3:37 pm
929
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...
Curtis Scheer
csch_nu2001
Offline Send Email
Sep 27, 2007
1:32 pm
930
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...
charlescookuk
Offline Send Email
Sep 27, 2007
8:54 pm
931
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 {...
Carl Edwards
carled9_2000
Offline Send Email
Sep 28, 2007
9:04 am
Messages 902 - 931 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help