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...
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 6751 - 6780 of 6839   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
Online Now 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
6766
Lol, you're right, geesh, monday morning....
jeromakay
Online Now Send Email
Jul 14, 2008
4:17 pm
6767
I started to write a server but I couldn't get my code to link, so I created a small test case by copying the xmlrpc_sample_add_server.cpp file from the...
Jim
gvojim
Offline Send Email
Jul 16, 2008
1:52 pm
6768
I take it no one knows anything about this library? Is there a better mailing list/forum for these types of questions? Or did I violate some rule? Jim...
Jim
gvojim
Offline Send Email
Jul 18, 2008
7:28 pm
6769
... A question like this you can just send to the maintainer of the package: me. I will email you privately. -- Bryan Henderson...
bryanh@...
giraffedata
Offline Send Email
Jul 21, 2008
3:02 am
6770
We would like to support multiple versions of our API. That is, when an update for our API is released continue to support For example, a method foo.get might...
Bill Moseley
whmoseley
Offline Send Email
Jul 25, 2008
1:44 pm
6771
... The URL should identify the server, so if you think of it as having multiple servers, this is reasonable, but it doesn't really sound to me like you're...
bryanh@...
giraffedata
Offline Send Email
Jul 25, 2008
6:29 pm
6772
... Right, not separate servers. But, separate behavior based on the version. ... That's interesting -- I was thinking that was the least likely approach....
Bill Moseley
whmoseley
Offline Send Email
Jul 25, 2008
6:58 pm
6773
Hi All, Application is processing 1 million transcation, Java application uses XMLRPC to communicate to server. during the peak load it open too many TCP/IP...
raguram_76
Offline Send Email
Aug 27, 2008
6:40 am
6774
... I don't know what you mean by "support," but if you mean can you use techniques with XML-RPC, I would say: - In XML-RPC, an RPC is an HTTP transaction, and...
bryanh@...
giraffedata
Offline Send Email
Aug 27, 2008
3:35 pm
6775
Apparently Zend and PECL and all the PHP sites have gone completely to PHP5 and dropped all support for PHP4. That's fine for them, but my web hosting...
jeff_wolfeld
Offline Send Email
Aug 27, 2008
4:36 pm
6776
Not really, but as a workaround you could use the phpxmlrpc lib. If you get the "extras" package, there is code that implements the same api as the epi...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Aug 27, 2008
4:41 pm
6777
Hi, Im using an java applet to communicate with an php server using xml- rpc. I created a login, but my variable $FAIL_ATTEMPTS is not adding and im getting...
aric.holland
Offline Send Email
Sep 7, 2008
8:45 am
6778
Sorry, but I fear you should study your php a little bit more... The line $FAILED_ATTEMPTS; in the code does strictly nothing - as in php there is no need for ...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Sep 7, 2008
10:33 am
6779
... I think this command won't return -lxmlrpc_server++ You'll need that one for xmlrpc_c::registry.registry() as can be seen from: nm...
jaap.versteegh
Offline Send Email
Sep 11, 2008
6:15 am
6780
I'm calling a XML-RPC remote procedure and I'm finding that the application is case sensitive with respect to member names in my methodCall. I was wondering...
Jim Eaton
jamesveaton
Offline Send Email
Sep 20, 2008
6:53 am
Messages 6751 - 6780 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