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 6012 - 6041 of 6839   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6012
I'm a low low low php newbie: and i can't make any progress alone on this problem that arose when switching to a new hosting server. i'm using tikiwiki ...
vultur3_games
Offline Send Email
Dec 1, 2004
10:47 pm
6013
Has anybody actually gotten xmlrpc and Java to work together recently, like in the last six months?...
ted holden
holden_ted
Offline Send Email
Dec 2, 2004
7:51 am
6014
we have been using a version close to 1.0 of Apache XML-RPC since three years and it's working very very fine... though we don't use all sorts of clients...
Paul Libbrecht
paul_libbrecht
Offline Send Email
Dec 2, 2004
1:10 pm
6015
The PHP-bundeled xmlrpc extension comes with a function named xmlrpc_dedode (as well as encode). The phpxmlrpc lib uses the same name for its functions. Either...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Dec 2, 2004
2:06 pm
6016
I just got it working yesterday! :D apache xml-rpc 1.2b The server side I implemented it as a servlet and i recommend that you'r handler extends or implements...
techoncal
Offline Send Email
Dec 2, 2004
2:07 pm
6017
Actually, I have using the Apache XML-RPC code. I have this successfully used this with a custom JavaScript front end. I have to say though, the Apache code is...
Ryan McDonough
damnhandy2000
Offline Send Email
Dec 2, 2004
2:08 pm
6018
Yep, used the Jakarta classes for client and phpxmlrpc for server without a hitch. Any specific problem?...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Dec 2, 2004
2:08 pm
6019
... I've managed to get xmlrcp working (both clients and servers) with Python and I'd have thought getting it to work with Java would have been the simplest...
ted holden
holden_ted
Offline Send Email
Dec 2, 2004
2:50 pm
6020
... If you want to write an applet then you only need the applet jar. However you need to import from org.apache.xmlrpc.applet.* The is the JavaDoc for the...
John Wilson
tug123uk
Offline Send Email
Dec 2, 2004
3:11 pm
6021
Hi Gaetano, you may try to follow my "practicals" that can be found at http://perisic.com/xmlrpc I use that to teach the basics of XML-RPC. A lot of students...
Marc Conrad
Marc.Conrad@...
Send Email
Dec 2, 2004
3:14 pm
6022
What I was seeing was an Eclipse glitch. I'd tried to add the two xmlrpc jar files to a project I'd already created, which should have worked. Including them...
ted holden
holden_ted
Offline Send Email
Dec 2, 2004
3:57 pm
6023
Yup, eclispe sucks big time at managing a project that has not been created ex-novo inside the ide, letting only a few files off a project or getting existing...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Dec 2, 2004
4:32 pm
6024
I'm using the CookComputing.XmlRpc assembly in an ASP.NET web application to consume an org.apache.xmlrpc WebServer XMLRPC service. When I make a call, the...
phatmatt_1
Offline Send Email
Dec 2, 2004
9:40 pm
6025
Anybody have any thoughts on what relative merits there might be between freestanding xmlrpc servers and CGI (.py file) servers?...
ted holden
holden_ted
Offline Send Email
Dec 3, 2004
12:17 am
6026
I use freestanding because it lets me execute all RPCs in the same context. (i.e. every RPC executes in the same permanent thread). For example, I have a...
bryanh@...
giraffedata
Offline Send Email
Dec 3, 2004
7:18 am
6027
Freestanding would allow you to have non-HTTP operation, using any other type of transport. As in RFC2549, for instance (note that it actually has been...
FGM
fgmarand
Offline Send Email
Dec 3, 2004
7:59 am
6028
Doesn't sound like much to choose, other than that the .py files are simpler. No difference in performance or anything like that?...
ted holden
holden_ted
Offline Send Email
Dec 3, 2004
11:36 am
6029
... XML-RPC specifies HTTP, so such a server would not be an XML-RPC server. But there's still a valid point there, worded differently: "would allow you to...
bryanh@...
giraffedata
Offline Send Email
Dec 3, 2004
5:38 pm
6030
Not sure I'll agree with you on this. The spec says that the input data is the content of a HTTP POST request, meaning that the most obvious implementation is...
Frédéric-Geor...
fgmarand
Offline Send Email
Dec 7, 2004
9:06 am
6031
... Which spec is that? XML-RPC the protocol doesn't have input data -- it's a description of information flow, not a processor of data. Maybe you're looking...
bryanh@...
giraffedata
Offline Send Email
Dec 7, 2004
5:07 pm
6032
Hi, I'm referring to the same spec as you, and actually to the same sentence, but I am not interpreting it in the same way. I may be mistaken, but to me, it...
FGM
fgmarand
Offline Send Email
Dec 7, 2004
8:09 pm
6033
... I have two problems with that interpretation: 1) If the spec means this, then the reference to HTTP is entirely superfluous, because ANY data can be the...
bryanh@...
giraffedata
Offline Send Email
Dec 8, 2004
6:08 pm
6034
[...] ... It is indeed a very frequent misuse, which may mean that some day the dictionary meaning of message may change from just data to the transmision ...
FGM
fgmarand
Offline Send Email
Dec 8, 2004
7:51 pm
6035
... I got lost in this. Is there maybe a "not" missing? In the terminology of the HTTP spec - RFC 2616 - the "request" (which is a kind of "message") includes...
bryanh@...
giraffedata
Offline Send Email
Dec 9, 2004
7:30 pm
6036
..hmmmm...rereading myself... no, I think it may not be too well expressed, but I do not think a "not" is missing in that paragraph. ... From:...
FGM
fgmarand
Offline Send Email
Dec 9, 2004
8:00 pm
6037
... You're using "HTTP" here like it's a device. A program or subroutine or something like that that has behavior and returns things. But HTTP is a...
bryanh@...
giraffedata
Offline Send Email
Dec 9, 2004
9:14 pm
6038
[...] ... For an upper layer, it is indeed very similar to a black box, which is exactly what layered designs are all about, but it isn't one. It is made of ...
FGM
fgmarand
Offline Send Email
Dec 10, 2004
8:13 am
6039
God, so much brain power and erudition wasted on useless issues it makes me hurt :) ... http://www.xmlrpc.org/spec ... In a way you're right. When, in 1915,...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Dec 10, 2004
8:57 am
6040
Hello everybody. There has been little traffic for a while on the phpxmlrpc mailing list, but the occasional users mostly appear to have problems with...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Dec 10, 2004
9:17 am
6041
... I do, but the crux of the issue seems to be how you define "HTTP protocol," because you're still hanging on to the idea that HTTP is a device -- that it...
bryanh@...
giraffedata
Offline Send Email
Dec 10, 2004
4:56 pm
Messages 6012 - 6041 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