Search the web
Sign In
New User? Sign Up
xml-rpc · XML-RPC Discussion
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 6230 - 6259 of 6839   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6230
Xmlrpc_encode returns a single xmlrpc object. the line $p4 = new XML_RPC_Value($xml_data,'array'); instead expects $xml_data to be a php array of xmlrpc...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
May 2, 2005
8:32 am
6231
Ok, this question might cross some lines with php, soap and/or xml, but here we go. I have setup an xml-rpc server with php. I've also created a wsdl to define...
Dave
dave_comprepair
Online Now Send Email
May 4, 2005
3:44 pm
6232
... If you have really set up an XML-RPC server then it will never work with a SOAP client. XML-RPC is a completely different protocol to SOAP. What PHP server...
John Wilson
tug123uk
Offline Send Email
May 4, 2005
3:52 pm
6233
Hi, has anybody experience with Macromedia Central SDK's RPCFactory object? I wonder how it should work. I followed the instructions in SDK documentation...
onnobid
Offline Send Email
May 12, 2005
6:26 am
6234
[Sorry for the cross-posting but it is really an issue for both lists.] I'm currently documenting the API of a XML-RPC (http://www.xmlrpc.com/) server in...
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Jun 2, 2005
2:22 pm
6235
I'll speak from the XML-RPC side, if I dare. Such an encoding would be really welcome, after many searches I know none, even for SOAP or OWL-S (where WSDL...
Paul Libbrecht
paul_libbrecht
Online Now Send Email
Jun 2, 2005
2:49 pm
6236
On Thu, Jun 02, 2005 at 04:49:50PM +0200, Paul Libbrecht <paul@...> wrote ... Yes, it would be a good idea, I'll try. ... I'm afraid so....
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Jun 2, 2005
2:52 pm
6237
For those of us, like me, who are not terribly familiar with Docbook, let me clarify what you're doing. Correct me if I'm wrong. Docbook defines some element...
bryanh@...
giraffedata
Offline Send Email
Jun 2, 2005
3:18 pm
6238
On Thu, Jun 02, 2005 at 03:15:08PM +0000, bryanh@... <bryanh@...> wrote ... Excellent summary....
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Jun 2, 2005
3:23 pm
6239
As a side note: the only "standard" way to describe exposed xmlrpc functions (AFAIK) is the system.listmethods family (described here...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Jun 3, 2005
10:52 am
6240
Do I mistake or WSDL allows only machine readable information which, of course, can be rendered, but is rarely decorated with human comments. I'm looking for...
Paul Libbrecht
paul_libbrecht
Online Now Send Email
Jun 3, 2005
11:09 am
6241
Wsdl has more expressive power than xmlrpc introspection. As far as human-readable information is concerned, there is nothing stopping the users from agreeing...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Jun 3, 2005
12:12 pm
6242
... As usual. ... That might be doable on the top of XDoclet but is then based on the library taken which is not, necessarily the best choice. I had hoped...
Paul Libbrecht
paul_libbrecht
Online Now Send Email
Jun 3, 2005
12:55 pm
6243
Since two days I am unable to browse www.xmlrpc.com. Sometimes browser says connection is refused and sometimes it says no data in response. regards Sudhakar ...
Sudhakar Anivella
sanivella
Offline Send Email
Jun 8, 2005
6:45 pm
6244
... Works for me. -- Bryan Henderson Phone 408-621-2000 San Jose, California...
bryanh@...
giraffedata
Offline Send Email
Jun 8, 2005
8:00 pm
6245
Today morning I checked, It is working now. regards Sudhakar ... __________________________________________________________ Free antispam, antivirus and 1GB to...
Sudhakar Anivella
sanivella
Offline Send Email
Jun 9, 2005
2:02 am
6246
I have a XML-RPC procedure which has several parameters, most of them with reasonable default values and therefore they should be optional. There is apparently...
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Jun 13, 2005
11:41 am
6247
I have a XML-RPC procedure which may, potentially return an array with many items (say, one million of strings). I'm not sure that all clients and servers will...
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Jun 13, 2005
11:46 am
6248
... A struct is probably the best solution. You could also use an array of boolean to indicate which of the parameters are valid. John Wilson The Wilson...
John Wilson
tug123uk
Offline Send Email
Jun 13, 2005
11:58 am
6249
... I would imagine you would break many implementations with a million strings. Remember that the spec requires the Content-length header to be present and...
John Wilson
tug123uk
Offline Send Email
Jun 13, 2005
12:04 pm
6250
On Mon, Jun 13, 2005 at 01:39:50PM +0200, Stephane Bortzmeyer <bortzmeyer@...> wrote ... There is NIL but it is an (uncommon?) extension. ...
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Jun 13, 2005
1:10 pm
6251
Funnily the topic of "streaming XML-RPC calls" has come quite often and, indeed, it's just impossible since the content-length header is required. This...
Paul Libbrecht
paul_libbrecht
Online Now Send Email
Jun 13, 2005
1:43 pm
6252
How does one get off this list? I've sent an email to xml-rpc-unsubscribe@yahoogroups.com. I received an email asking me to confirm. I sent a confirmation....
Faber Fedor
faberfedor
Offline Send Email
Jun 13, 2005
3:05 pm
6253
... Yes it's uncommon, Dave Winer was violently opposed to this extension. John Wilson The Wilson Partnership http://www.wilson.co.uk...
John Wilson
tug123uk
Offline Send Email
Jun 13, 2005
4:40 pm
6254
... I certainly use the Content-length header. I use keep-alive and reuse connections. If you do this then you need the Content-length so you can tell that...
John Wilson
tug123uk
Offline Send Email
Jun 13, 2005
4:57 pm
6255
... Sure... I forgot that bit... indeed! thanks! paul...
Paul Libbrecht
paul_libbrecht
Online Now Send Email
Jun 13, 2005
9:30 pm
6256
... If you are using Python for the server side (since I know you sometimes use Python), it wouldn't actually strictly be necessary to be passing a NIL to...
dscplcomau
Offline Send Email
Jun 14, 2005
7:18 am
6257
On Tue, Jun 14, 2005 at 07:17:54AM -0000, dscplcomau <grahamd@...> wrote ... [...] ... Nice idea. But it is difficult to document since it is not very...
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Jun 14, 2005
7:26 am
6258
... Someone else suggested the use of a distinct URL to identify an endpoint which maintains state, thus allowing you to perform multiple requests to get the...
dscplcomau
Offline Send Email
Jun 14, 2005
7:32 am
6259
Hi, I have written client like this: <Code> try { // Create the client, identifying the server XmlRpcClient client = new XmlRpcClient ...
u98134
Online Now Send Email
Jun 15, 2005
4:50 pm
Messages 6230 - 6259 of 6839   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