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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 673 - 702 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
673
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...
Mark Patrick
techezconsul...
Offline Send Email
Jun 2, 2006
5:37 am
674
I am trying to write some code for an XML-RPC server that listens on port 13001. How do I set the port number?...
philipwagenaar
Offline Send Email
Jun 12, 2006
11:07 am
675
Hi all, Can any one provide me saple or link to C# sample to upload/download photos on MSN spaces... Thanks and Regards, Anand...
Anand
ad221177
Offline Send Email
Jun 20, 2006
6:33 am
676
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...
charlescookuk
Offline Send Email
Jun 21, 2006
12:39 pm
677
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...
zeketheelder
Offline Send Email
Jun 21, 2006
3:19 pm
678
This is actually pretty easy just follow the link for more info http://scripts.incutio.com/xmlrpc/ ________________________________ From:...
Mayorga, Armando CTR ...
navy_rad_geek
Offline Send Email
Jun 21, 2006
6:54 pm
679
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 ...
Stephen Sadowski
ronin793
Offline Send Email
Jun 22, 2006
4:42 pm
680
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 Farr
jodyfarr
Offline Send Email
Jun 22, 2006
4:43 pm
681
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...
Stephen Sadowski
ronin793
Offline Send Email
Jun 22, 2006
7:42 pm
682
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 Farr
jodyfarr
Offline Send Email
Jun 22, 2006
8:17 pm
683
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 ...
Stephen Sadowski
ronin793
Offline Send Email
Jun 22, 2006
8:30 pm
684
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...
charlescookuk
Offline Send Email
Jun 23, 2006
8:16 am
685
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 ...
martinweel
Offline Send Email
Jun 24, 2006
5:37 am
686
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, ...
Stephen Sadowski
ronin793
Offline Send Email
Jun 24, 2006
1:13 pm
687
<?xml version="1.0"?> <methodCall><methodName>Tick</methodName> <params><param><value>Hello There</value></param></params></methodCall> ***** Client Code,...
martinweel
Offline Send Email
Jun 24, 2006
5:08 pm
688
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...
Adam Tauno Williams
ferillis2003
Offline Send Email
Jun 26, 2006
1:35 pm
689
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...
Philip Wagenaar
philipwagenaar
Offline Send Email
Jun 26, 2006
4:05 pm
690
... 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) ... ...
Adam Tauno Williams
ferillis2003
Offline Send Email
Jun 26, 2006
4:33 pm
691
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 Farr
jodyfarr
Offline Send Email
Jun 26, 2006
5:38 pm
692
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...
Stephen Sadowski
ronin793
Offline Send Email
Jun 26, 2006
5:55 pm
693
"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...
charlescookuk
Offline Send Email
Jun 26, 2006
6:21 pm
694
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...
Jody Farr
jodyfarr
Offline Send Email
Jun 26, 2006
7:21 pm
695
Working on another method in this *!@#$%! software package we bought, I've encountered a function that returns two variables that are dateTime.iso8601 type....
Jody Farr
jodyfarr
Offline Send Email
Jun 26, 2006
8:18 pm
696
I solved it with Charles' help earlier. It was a structure-containing-an-array thing :) Thanks for the reply though! Stephen Sadowski...
Jody Farr
jodyfarr
Offline Send Email
Jun 26, 2006
8:33 pm
697
Will do. - Charles - Charles...
charlescookuk
Offline Send Email
Jun 29, 2006
7:04 am
698
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...
charlescookuk
Offline Send Email
Jun 29, 2006
7:17 am
699
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...
Jody Farr
jodyfarr
Offline Send Email
Jun 29, 2006
1:00 pm
700
In C# you could attribute the struct so that any missing members are ignored, something like this: [XmlRpcMissingMapping(MappingAction.Ignore)] public...
Charles Cook
charlescookuk
Offline Send Email
Jun 29, 2006
5:31 pm
701
That did the trick! Excellent. Thanks. BTW - was that in some documentation that I'm missing? Charles Cook <chascook@...> wrote:...
Jody Farr
jodyfarr
Offline Send Email
Jun 29, 2006
6:03 pm
702
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...
aa22we
Offline Send Email
Jun 30, 2006
6:53 am
Messages 673 - 702 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