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...
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 6736 - 6765 of 6839   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6736
Hi, thanks for the reply. I used existing code - the one given in the examples of xmlrpc. Unfortunable I was not able to find a C/C++ clients which meets my...
tgriesel78
Offline Send Email
Apr 1, 2008
1:50 pm
6737
I read http://www.xml-rpc.net/faq/xmlrpcnetfaq.html but I can't create working sample. Can someone do some step-by-step for server and client sample....
darkob72
Offline Send Email
Apr 4, 2008
6:19 am
6738
first,tnks for your time.. im my client i have a servlet which sends(ans receives the xml response-request).the data that i send is simply 2 strings and i want...
eejimkos
Offline Send Email
Apr 11, 2008
2:42 pm
6739
Hi, what's is the status of this project now? Out of beta and in production? ... library - version 0.1. ... found in the php-xmlrpc lib)...
owensw721
Offline Send Email
May 10, 2008
11:05 pm
6740
... Not really out of Beta, as the current release is 0.3. But as Google teaches, stuff can be usable and kept in beta for a long, long time... ;) All known...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
May 12, 2008
7:34 pm
6741
Tks for the update _____ From: xml-rpc@yahoogroups.com [mailto:xml-rpc@yahoogroups.com] On Behalf Of Gaetano Giunta Sent: Monday, May 12, 2008 3:35 PM To:...
Steve Owen
owensw721
Offline Send Email
May 13, 2008
10:02 pm
6742
Hello everybody, I am trying to establish a communication between my pocket PC and and a PC with XML-RPC in order to invoke some methods on the PPC from the...
xmlrpc00
Offline Send Email
May 20, 2008
12:43 pm
6743
I'm curious how to handle more complex error situations than the XML-RPC fault will support. Should I just create and document additional response payload...
Bill Moseley
whmoseley
Offline Send Email
May 21, 2008
2:43 pm
6744
... That seems exactly the right thing to do. Please resist trying to "extend" or "improve" the basic XML-RPC protocol. This just limits the usability of your...
John Wilson
tug123uk
Offline Send Email
May 21, 2008
2:49 pm
6745
... Yes. It's not only better than extending XML-RPC, it's the right architecture anyway. Errors should be layered. And you can be lazy and still provide...
bryanh@...
giraffedata
Offline Send Email
May 21, 2008
6:20 pm
6746
... Bryan, Both you and John responded about avoiding extending the XML-RPC spec. I hope I was clear, I'm not suggesting that. For example, I was not ...
Bill Moseley
whmoseley
Offline Send Email
May 21, 2008
7:16 pm
6747
Is the data type for a Fault Code always supposed to be a int? The spec specifically specifies the value as being an int, but doesn't address if that is how it...
jessedp23
Offline Send Email
May 21, 2008
7:41 pm
6748
... The spec says you return an int. If you don't do that you will break many client implementations. John Wilson...
John Wilson
tug123uk
Offline Send Email
May 21, 2008
8:28 pm
6749
... Well no, it depends on just what your goal is, but if it's what I think it is, I would go with a fault, because it's a whole lot easier for your users to...
bryanh@...
giraffedata
Offline Send Email
May 22, 2008
2:32 am
6750
... Here's an example: The application is agnostic as to how it's used (could be via the web, a cron job, command line interface, or XML-RPC). One of the ...
Bill Moseley
whmoseley
Offline Send Email
May 22, 2008
5:34 am
6751
Hi everyone! I am working on a xml-rpc communication, and i want to communicate via ssl. I got some examples, but no one was really good. Im looking for the...
dombi_attila
Offline Send Email
Jun 17, 2008
11:44 pm
6752
What formats are acceptable in this data type? Is it just the example given in the spec: 19980717T14:08:55 Or any iso8601 format? What I'd like to send is: ...
Bill Moseley
whmoseley
Offline Send Email
Jul 9, 2008
2:24 am
6753
... Just what's shown in the example. Which, oddly enough, isn't ISO 8601. ... It's always UTC. That's the XML-RPC way -- easy to get right because there's so...
bryanh@...
giraffedata
Offline Send Email
Jul 9, 2008
2:34 am
6754
... http://www.xmlrpc.com/spec also says: Don't assume a timezone. It should be specified by the server in its documentation what assumptions it makes about...
Bill Moseley
whmoseley
Offline Send Email
Jul 9, 2008
4:48 am
6755
... Yes. As a matter of fact the datetime is underspecified in xmlrpc, as you have a misnomer and a single example. The consensus is you are only allowed to...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Jul 9, 2008
7:29 am
6756
... As short as it is, the spec says a number of crazy things. The server can document anything it wants, even violations of XML-RPC, so there's no need for...
bryanh@...
giraffedata
Offline Send Email
Jul 9, 2008
4:24 pm
6757
... There's a bit of a philosophical question here. I don't see it being really important for an XML-RPC communicant to reject incorrect XML-RPC. I.e. an...
bryanh@...
giraffedata
Offline Send Email
Jul 9, 2008
4:44 pm
6758
... Again, I'm using the Perl module RPC::XML and it includes a way to force all data into a <string>. I kind of wished I used that approach. ;) I could just...
Bill Moseley
whmoseley
Offline Send Email
Jul 9, 2008
6:44 pm
6759
... And if you really want flexibility, skip the whole XML-RPC spec and all the XML-RPC software and just send your data in an HTTP request of your own design....
bryanh@...
giraffedata
Offline Send Email
Jul 9, 2008
9:30 pm
6760
... Depends on how you use it. It's pretty limited, actually. use strict; use warnings; use RPC::XML::Parser; use Data::Dumper; my $str = <<''; <?xml...
Bill Moseley
whmoseley
Offline Send Email
Jul 9, 2008
10:04 pm
6761
... From: Bill Moseley <moseley@...> Subject: Re: [xml-rpc] dateTime.iso8601 format To: xml-rpc@yahoogroups.com Date: Thursday, July 10, 2008, 3:04 AM ......
Kibaya E.
ekibaya
Offline Send Email
Jul 10, 2008
7:45 am
6762
... Sorry to drag this out one more message, but if I'm expecting, say, a boolean data type for some argument and instead I see a string is a fault the correct...
Bill Moseley
whmoseley
Offline Send Email
Jul 11, 2008
12:42 am
6763
... I think it depends on how you expect the client to use the information. If the client is just going to present that fault string to a person for...
bryanh@...
giraffedata
Offline Send Email
Jul 12, 2008
6:48 pm
6764
Hi, I'm trying to think in terms of serving flash videos to users using apache. I'm starting from the premise that HTTP requests are expensive. The regular way...
jeromakay
Offline Send Email
Jul 14, 2008
8:41 am
6765
You're posting on the wrong list. This list is for discussions about XML-RPC. John Wilson...
John Wilson
tug123uk
Offline Send Email
Jul 14, 2008
4:06 pm
Messages 6736 - 6765 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