You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(7) |
Nov
(1) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(2) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: Victor A. [ M. - A. H. (Y. ]
<vic...@mt...> - 2009-09-09 12:41:25
|
Hi, I'm using the Redstone XML-RPC as a Servlet (extending XmlRpcServlet). Here's the Servlet: public class SCServlet extends XmlRpcServlet { @Override public void init(ServletConfig servletConfig) throws ServletException { super.init(servletConfig); getXmlRpcServer().addInvocationHandler("URequest", new URequestImpl()); } } URequest is an Interface and URequestImpl is the implementation class (Find them below) public interface URequest { Object handleURequest(String TransactionId, String UCode, String URequestString, String m, Date TransactionTime); } Here's my Client: public class SCUTest { public static void main(String[] args) throws Exception { new SCUTest(); } public SCUTest () throws Exception { XmlRpcClient client = new XmlRpcClient("http://localhost:8780/sc-web/xml-rpc/", false); Object token = client.invoke("URequest.handleURequest", new Object[]{new String("1234567890"), new String("134"), new String("*134*977654321#"), new String("9712345678"), new Date()}); XmlRpcStruct struct = (XmlRpcStruct) token; System.out.println("Returned Map" + struct.toString()); } } Here's my web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <servlet> <servlet-name>xml-rpc</servlet-name> <servlet-class>com.xmlrpc. SCServlet </servlet-class> <init-param> <param-name>streamMessages</param-name> <param-value>1</param-value> </init-param> <init-param> <!-- Optional! Defaults to text/xml and ISO-8859-1 --> <param-name>contentType</param-name> <param-value>text/xml; charset=ISO-8859-1</param-value> </init-param> <load-on-startup>2</load-on-startup> </servlet> <servlet-mapping> <servlet-name>xml-rpc</servlet-name> <url-pattern>/xml-rpc/*</url-pattern> </servlet-mapping> </web-app> I keep seeing on my Jboss4.3eap console: ERROR [STDERR] 09-Sep-2009 13:30:01 redstone.xmlrpc.XmlRpcDispatcher writeError WARNING: Invalid method name format Please could someone kindly Help... what's the right way of calling client.invoke ??? Victor Akinola |
From: Jesus M. R. <je...@re...> - 2007-09-18 20:42:55
|
I submitted a patch to allow custom fault responses. http://sourceforge.net/tracker/index.php?func=detail&aid=1797396&group_id=25164&atid=383549 It seems to address this feature requirement as well: http://sourceforge.net/tracker/index.php?func=detail&aid=473608&group_id=25164&atid=383550 -- jesus m. rodriguez | je...@re... sr. software engineer | irc: zeus red hat network | 919.754.4413 x44413 +-------------------------------------------+ | "we can not change our past, but we can | | define our future" | +-------------------------------------------+ |
From: Mark S. <ma...@re...> - 2007-08-29 15:11:38
|
Hello. I stumbled across your framework while researching options for a small xmlrpc implementation I need to do. I really like it -- small, specific to the task, and clean. I especially like that it doesn't try to be all things to all people. Is there a way I can become a contributor? I've already fixed a small bug in 1.1 that isn't on the tracker but I would be open to helping out on further bugs in the future. |
From: Ben A. <ben...@st...> - 2007-06-25 09:05:21
|
Hello there I would greatly appreciate a small amount of your time to assist with my doctoral research at The University of Newcastle. The research concerns open source licensing and we're seeking developers working on Java projects. The research is supervised, ethics-approved, anonymous and results will be freely available. Participation will also provide a custom licensing report for your project. To learn more, please visit: http://licensing-research.newcastle.edu.au Thanks for reading this email, and I hope you'll consider participating. Best regards Ben Alex (My apologies for being off-topic; this list will not be emailed again) |
From: <rho...@gm...> - 2006-12-17 20:08:42
|
Hello, in javadoc http://xmlrpc.sourceforge.net/javadoc/redstone/xmlrpc/XmlRpcServer.html is said: The "XmlRpcServer may also be started as a service accepting connections on a given port." Unfortunately I can't find out how. There also seems to be no further documentation. Can anybody give me hint? |
From: <ext...@ti...> - 2004-10-26 15:54:55
|
=20 Hi there, =20 One thing you need to understand is what happens when you send something = on the client end and it is interpreted on the server end. If you are using, say, a Java = client to communicate with a Python server, the client may allow you to send collections of stuff, = like arrays, Lists, or basic Collection-instances of somekind. The message is serialized as = an XML-RPC message where all collections are represented by <array> elements, regardless of = what the original collection type was. When received on the server end, the server = implementation converts the <array> into whatever collection representation that particular = implementation uses. =20 For the Marquee library, clients may send several types of collections, = including arrays. The server side implementation of the Marquee library converts all inbound = <array>s into a java.util.List instance (ArrayList to be precis). That, in turn, means = that all invocation handlers on the server side must be prepared to accept a List instance. =20 In other words: =20 class MyHandler { public String[] testMethod( List strings ) { String[] result =3D new String[ strings.size() ]; =20 for ( int j =3D 0, i =3D strings.size() - 1; i >=3D 0; --i ) { result[ j ] =3D ( String ) strings.get( i ); } } } =20 The (uncompiled) example above accepts a List of strings, which means = that any XML-RPC-implementation may send it a collection of strings, regardless of the original type of = that collection. It *must* accept a List when used with the Marquee library, since that library always = converts <array>'s into List. =20 It may, however, return whatever object that is serializable by the = library. In this case, it returns an array of strings, that by the Marquee library will be serialized, again, as an = <array>. On the receiving end, that array is transformed into whatever representation that implementation = has for <array>s. If the sending end is also the Marquee implementation, the client must be ready to accept = it as a List, because that is what the String[] has become during the Java->XML-RPC->Java conversion. =20 To sum up: your invocation handlers must use parameters that are = XML-RPC-compatible. It cannot accept arrays or other custom types. It must be one of the types documented for = the library since the message may come from any sender, not even a Java client. As a client, however, = you may send any object serializable by the library, being aware though that it may not look the = same when it arrives, since you might not even be talking to a Java server. =20 Hope this helps. -----Original Message----- From: xml...@li... = [mailto:xml...@li...]On Behalf Of = ame...@hs... Sent: den 26 oktober 2004 15:52 To: xml...@li... Subject: [Xmlrpc-users] Query , How to send a structures of array .! Hi All,=20 I am new to this community.!=20 I am facing a problem of how to send a request to an XMLRPC Server, = which consists of parameters as array.=20 For example:=20 If there is a API:=20 systemConfiguration(Authentication,SysConf) returns Acknowledegement, = Auth=20 Authentication is a structure, with to fields=20 Username -String=20 Password-String=20 SysConf is a structure=20 LanCard[] String Array <------------------ = hostname String=20 Acknowledgement is a structure=20 error_code int=20 error_description string=20 Ack is another structure=20 Bank_Id int=20 BaknName String=20 Please, can somebody tell me how to pass these structure to a invoke() = call and how to received the response.=20 Waiting for your response, will really help me out.=20 A exostive example=20 Regards,=20 Asif Mekrani=20 *********************** HSS-Private ***********************=20 "Please note:The email domain of Hughes Software Systems Ltd. has been = changed to "hssworld.com" from hss.hns.com" "DISCLAIMER: This message is proprietary to Hughes Software Systems = Limited (HSS) and is intended=20 solely for the use of the individual to whom it is addressed. It may = contain privileged or=20 confidential information and should not be circulated or used for any = purpose other than for=20 what it is intended. If you have received this message in error, please = notify the originator=20 immediately. If you are not the intended recipient, you are notified = that you are strictly=20 prohibited from using, copying, altering, or disclosing the contents of = this message. HSS=20 accepts no responsibility for loss or damage arising from the use of the = information transmitted=20 by this email including damage from virus." |
From: <ame...@hs...> - 2004-10-26 14:04:58
|
Hi All, I am new to this community.! I am facing a problem of how to send a request to an XMLRPC Server, which consists of parameters as array. For example: If there is a API: systemConfiguration(Authentication,SysConf) returns Acknowledegement, Auth Authentication is a structure, with to fields Username -String Password-String SysConf is a structure LanCard[] String Array <------------------ hostname String Acknowledgement is a structure error_code int error_description string Ack is another structure Bank_Id int BaknName String Please, can somebody tell me how to pass these structure to a invoke() call and how to received the response. Waiting for your response, will really help me out. A exostive example Regards, Asif Mekrani *********************** HSS-Private *********************** "Please note:The email domain of Hughes Software Systems Ltd. has been changed to "hssworld.com" from hss.hns.com" "DISCLAIMER: This message is proprietary to Hughes Software Systems Limited (HSS) and is intended solely for the use of the individual to whom it is addressed. It may contain privileged or confidential information and should not be circulated or used for any purpose other than for what it is intended. If you have received this message in error, please notify the originator immediately. If you are not the intended recipient, you are notified that you are strictly prohibited from using, copying, altering, or disclosing the contents of this message. HSS accepts no responsibility for loss or damage arising from the use of the information transmitted by this email including damage from virus." |
From: Greger O. <gre...@ma...> - 2004-02-04 00:58:15
|
Hi Pierre, I'll add a request in SourceForge, and see what I can do. I'm currently implementing a couple of changes that will eventually end up in a v2.0 branch. Cheers, Greger. -----Ursprungligt meddelande----- Fr=E5n: xml...@li... [mailto:xml...@li...] F=F6r pierre CARION Skickat: den 4 februari 2004 01:31 Till: xml...@li... =C4mne: [Xmlrpc-users] Shutdown of a XmlRpcServer Hi, I think it should be great if we could shutdown a running XmlRpcServer=20 instance ... I've checked the code and I've seen nothinh to stop the server=20 socket and to kill the current connections. Regards, Pierre _________________________________________________________________ The new MSN 8: advanced junk mail protection and 2 months FREE*=20 http://join.msn.com/?page=3Dfeatures/junkmail ------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ Xmlrpc-users mailing list Xml...@li... https://lists.sourceforge.net/lists/listinfo/xmlrpc-users |
From: pierre C. <pc...@ho...> - 2004-02-04 00:32:35
|
Hi, I think it should be great if we could shutdown a running XmlRpcServer instance ... I've checked the code and I've seen nothinh to stop the server socket and to kill the current connections. Regards, Pierre _________________________________________________________________ The new MSN 8: advanced junk mail protection and 2 months FREE* http://join.msn.com/?page=features/junkmail |
From: Paolo C. <pa...@mi...> - 2003-07-08 15:21:20
|
On Tue, 8 Jul 2003 10:13:00 -0500 "Volkar, John" <Joh...@mc...> wrote: > Well, geesh, that doesn't sound good at all! > > Is it that this project is idle and no one is looking at the bug fixes? > or that the bugs are in dispute? see below > If I use marquee, and I still might since the Apache codebase not so > wonderful to me, would you care to share your bug fixes? Sure, no problem. Not much to contribute but you're welcome to it. Mail me privately. > I'm holding off on deciding between the two for a few weeks, so I hope > to hear more from the Marquee mailing list, especially about getting bug > fixes made. You'll never get a response from the list - nobody ever does. Look at the archives. Please reconsider and use apache xmlrpc :) Bye Paolo |
From: Volkar, J. <Joh...@mc...> - 2003-07-08 15:13:14
|
Well, geesh, that doesn't sound good at all! Is it that this project is idle and no one is looking at the bug fixes? or that the bugs are in dispute? If I use marquee, and I still might since the Apache codebase not so wonderful to me, would you care to share your bug fixes? I'm holding off on deciding between the two for a few weeks, so I hope to hear more from the Marquee mailing list, especially about getting bug fixes made. I've got the code under eclipse, and it hit me with 60 odd warnings that I've fixed on my local copy, and I'm debating emplacing log4j has the logging mechanism in my copy too, additionally I'll probably setup a few Junit tests as I start to get up to speed on the code too. I really hate the idea of "going it alone" with a codebase like this, but... Regards John Volkar -----Original Message----- From: Paolo Campanella [mailto:pa...@mi...] Sent: Tuesday, July 08, 2003 10:59 AM To: Volkar, John Cc: xml...@li... Subject: Re: [Xmlrpc-users] Selecting a java XML-RPC implementation On Tue, 8 Jul 2003 09:33:40 -0500 "Volkar, John" <Joh...@mc...> wrote: > Hello, > > I'm trying to decide between the Apache XML-RPC and Marquee. I prefer > the Marquee codebase as it looks cleaner to me, but am worried about > it's active development. > > Is anyone using this in production code? I'm using Marquee in production, and although it works fine mostly, I've regretted it ever since because of the impossibility of getting bugfixes approved, etc. It taught me an important lesson: always look at the list archive of a project before using its code in a project... Bye Paolo Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. |
From: Paolo C. <pa...@mi...> - 2003-07-08 15:00:47
|
On Tue, 8 Jul 2003 09:33:40 -0500 "Volkar, John" <Joh...@mc...> wrote: > Hello, > > I'm trying to decide between the Apache XML-RPC and Marquee. I prefer > the Marquee codebase as it looks cleaner to me, but am worried about > it's active development. > > Is anyone using this in production code? I'm using Marquee in production, and although it works fine mostly, I've regretted it ever since because of the impossibility of getting bugfixes approved, etc. It taught me an important lesson: always look at the list archive of a project before using its code in a project... Bye Paolo |
From: Volkar, J. <Joh...@mc...> - 2003-07-08 14:33:48
|
Hello, I'm trying to decide between the Apache XML-RPC and Marquee. I prefer the Marquee codebase as it looks cleaner to me, but am worried about it's active development. Is anyone using this in production code? Anyone have comments regarding the Apache implementation? Regards John Volkar ---- Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. |
From: <Stu...@gm...> - 2003-06-25 13:01:43
|
<html> <head> <meta http-equiv=3D"Content-Language" content=3D"it"> <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-= 1252"> <meta name=3D"GENERATOR" content=3D"Microsoft FrontPage 4.0"> <meta name=3D"ProgId" content=3D"FrontPage.Editor.Document"> <title>Nuova pagina 1</title> </head> <body bgcolor=3D"#FF0000" text=3D"#FFFFFF" link=3D"#FFFF00" vlink=3D"#00FF= FF" alink=3D"#FFFFFF"> <div align=3D"center"> <center> <table border=3D"0" cellpadding=3D"3" cellspacing=3D"3"> <tr> <td> <p align=3D"center"><a href=3D"http://www.geocities.com/strangle39= 953/"> <img border=3D"0" src=3D"http://www.geocities.com/montana86305/t05= jpg"></a><br> <font face=3D"Arial Black" size=3D"2"><b><a href=3D"http://www.geo= cities.com/franklin04499/"><font color=3D"#FFFF00"> FOR YOU ONLY</font></a></b></font></td> <td><p><font face=3D"Arial Black" size=3D"2"><b><font color=3D"#FFFF= FF">Hello friends,<br> </font></b></font><b><font face=3D"Arial Black" color=3D"#FFFFFF" = size=3D"2">I do it just to satisfate my pleasure, not for money!</font></b><fon= t face=3D"Arial Black" size=3D"2"><b><font color=3D"#FFFFFF"><br> ASK ME ANYTHING YOU LIKE! THERE IS NO LIMIT!<br> <a href=3D"http://www.geocities.com/tanguy60311/"> TRY IF I AM ON LINE<br> </a>Meet me on line when you have time!</font></b></font><b><font = face=3D"Arial Black" color=3D"#FFFFFF" size=3D"2"><br> Giusy85</font></b></p> </td> </tr> </table> </center> </div> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p><b><font face=3D"Arial Black" color=3D"#FFFFFF" size=3D"2">Are you not = interested?<br> </font><a href=3D"mailto:dzo...@gm..."><font face=3D"Arial Black" = color=3D"#FFFFFF" size=3D"1"> Leave</font></a></b></p> <p><b><font face=3D"Arial Black"><br> </font></b></p> <p> </p> <p> </p> </body> </html>mhocotfe pichu |
From: Paolo C. <pa...@mi...> - 2003-06-16 13:15:47
|
Hi all This project (or certainly its list) seems pretty dead, however, you might find this of some use if you're tied into using it. XmlRpcValue's method processCharacterData does not trap most errors. This makes it somehow possible to crash your entire Marquee server by various means, e.g. by passing it an integer which is too large. When crashed in this way, the server (or rather, the thread in question) never comes back. I think this might be because the untrapped exception is passed back into MinML, which then croaks, but I haven't looked at it too closely. Anyway, one solution is to catch exceptions in processCharacterData(), which gets you some NullPointerExceptions instead, but leaves your server running. Bye Paolo |
From: HANDSCHMANN R. <HAN...@SC...> - 2003-05-13 15:16:25
|
Hi! I want to encrypt and compress all communications between the XML-RPC client and the server. I assume that can be done using a custom pre/post-processor. Are there any implementations ready to use? Any suggestions greatly appreciated. Thanks, Robert |
From: <he...@ns...> - 2002-10-05 07:46:43
|
Sorry for interrupting you - click refuse <mailto:ma...@ns...> for no more mail... =09 =A1=A1 =09 - Welcome to NabiTel's <http://www.nabitel.com/English.asp> software products and portal services - =09 Software Products =09 <http://www.Nabitel.com/English.asp>=20 Web Robot: also called web spider or web crawler, collects useful web page informations by navigating world wide web sites.=20 Download free trial version now ! <http://www.nabitel.com/English.asp>=20 <http://www.Nabitel.com/English.asp> eMail ID Collector: Collects email ids publicly opened on various web pages, with good intention.=20 Download free trial version now ! <http://www.nabitel.com/English.asp>=20 Portal Services =09 <http://www.nabitel.com/English.asp> Web Portal: Do you have your own home page and want to broadcast it all over the world ? Register your home page to NabiTel Portal Now !! (nabi=3Da butterfly) Register your home page now, it's free ! <http://www.nabitel.com/English.asp>=20 <http://www.AllThatCars.com/English.asp> Automobiles: Do you want to sell or buy automobiles ? Cars, trucks, limos, airplanes, ships,.... All That Cars are here ! Register your vehicles now, it's free ! <http://www.AllThatCars.com/English.asp>=20 <http://www.AllThatComputers.Com> Computers: Do you want to sell or buy computers ? PCs, printers, scanners, servers, mainframes, .... All That Computers are here !=20 Register your computers now, it's free ! <http://www.AllThatComputers.com/English.asp>=20 <http://www.AllThatFoods.Com/English.asp> =09 Food & Restaurants: Are you seeking for a nice place to eat ? Or do you run a restaurant ? Foods of the world, restaurants of the world, .... All That Foods are here !=20 Register your restaurant now, it's free ! <http://www.AllThatFoods.com/English.asp>=20 Have a nice day. Thank you. =09 |
From: Greger O. <gre...@ma...> - 2002-08-04 15:09:47
|
Hi All, A new release of the Marqu=E9e XML-RPC Library is now available on Source= Forge. Read the change log on the home page [1] to see what's new. Please observ= e that the library, starting with this version, now requires J2SE as a resu= lt of switching to Java 2 Collections. We thought that it was time to leave Java 1.x behi= nd. The old version is still available for download from the home page, but unles= s we receive demand for Java 1.x, we will no longer continue supporting it. [1] http://xmlrpc.sourceforge.net Best Regards, Greger Ohlson |
From: Paolo C. <pa...@mi...> - 2002-06-08 09:31:39
|
Hi all I have a project which uses the Marquee server. Now some of the data that gets returned in strings contain characters (other than the 2 characters which the String serializer encodes) which, if not encoded, result in an XML document which is not valid (and so the XML-RPC client dies parsing the document). I compared with the Perl module XMLRPC::Lite (as as a server), which automatically encodes such strings as base64. But I'm not even sure if this is the correct behaviour. Does anyone know how this is supposed to work? Thanks Paolo |
From: Will S. <wil...@ya...> - 2002-01-21 03:36:32
|
There's no javadoc available, but I've cobbled together my own. I'll mail you the javadoc. Introspection is definately available. I don't remember about asychroneous calls, but you could look in the docs. :-) Will. > -----Original Message----- > From: xml...@li... > [mailto:xml...@li...]On Behalf Of Mballa > Atangana > Sent: Sunday, January 20, 2002 6:33 AM > To: xml...@li... > Subject: [Xmlrpc-users] Marquee Library: Introspection and Asynchronous > Calls > > > Hi, > I have downloaded the marquee lib documentation in > pdf, but I find it incomplete, > Why there is no JavaDoc documentation? > > Is Introspection and Asynchronous call (like in helma > library) are available in Marquee? > > Mballa > > ___________________________________________________________ > Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! > Yahoo! Courrier : http://courrier.yahoo.fr > > _______________________________________________ > Xmlrpc-users mailing list > Xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlrpc-users > _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: <ata...@ya...> - 2002-01-20 14:32:59
|
Hi, I have downloaded the marquee lib documentation in pdf, but I find it incomplete, Why there is no JavaDoc documentation? Is Introspection and Asynchronous call (like in helma library) are available in Marquee? Mballa ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Courrier : http://courrier.yahoo.fr |
From: Greger O. <gre...@ma...> - 2001-12-01 10:04:49
|
Hi, When we designed the library we wanted to use it in situations where memory and processing power was limited (like with the TINI-board), so we wrapped all logging code in if-statements so that the bytecode dealing with logging could be removed. To switch on DEBUG logging (which would include logging the raw XML) you must update bthe Trace.java file and recompile. Currently, there is no bytecode included for DEBUG logging. Also, we don't indent the XML sent between endpoints, it's just a long string, so you won't get nicely formatted output. Regards, Greger ----- Original Message ----- From: "jha miku" <jh...@ya...> To: <Xml...@li...> Sent: Saturday, December 01, 2001 12:43 AM Subject: [Xmlrpc-users] regd request and response > Hi > > How do I get the method request and response in > XML format > > I mean how do I trace the response/request > from XML-RPC to get something like this > > Example Request > <?xml version="1.0"?> > <methodCall> > <methodName>Security.verifyUser</methodName> > <params> > <param> > <value><string>myUsername</string></value> > </param> > <param> > <value><string>myPassword</string></value> > </param> > </params> > </methodCall> > > > __________________________________________________ > Do You Yahoo!? > Buy the perfect holiday gifts at Yahoo! Shopping. > http://shopping.yahoo.com > > _______________________________________________ > Xmlrpc-users mailing list > Xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlrpc-users |
From: jha m. <jh...@ya...> - 2001-11-30 23:44:42
|
Hi How do I get the method request and response in XML format I mean how do I trace the response/request from XML-RPC to get something like this Example Request <?xml version="1.0"?> <methodCall> <methodName>Security.verifyUser</methodName> <params> <param> <value><string>myUsername</string></value> </param> <param> <value><string>myPassword</string></value> </param> </params> </methodCall> __________________________________________________ Do You Yahoo!? Buy the perfect holiday gifts at Yahoo! Shopping. http://shopping.yahoo.com |
From: Greger O. <gre...@ma...> - 2001-10-28 08:14:58
|
Hi, That would be me. We used Helma XML-RPC as a source of ideas when developing Marquee, so when looking at the code you would recognize certain areas. However, we have rewritten the code from scratch. We also introduced various features like custom serialization, invocation processors, dynamic proxies, and other stuff like the ObjectComm addon by Rainer Bischof. Personally (of course), I prefer the Marqu=E9e XML-RPC Library as it gives you more power to do stuff, and is arguably somewhat cleaner written. Then again, that's just my personal oppinion. You'll have to check out the docs and the code. Regards, Greger ----- Original Message ----- From: "Petar Maymounkov" <pe...@cs...> To: <xml...@li...> Sent: Sunday, October 28, 2001 1:41 AM Subject: [Xmlrpc-users] marquee and helma > I was curious whether someone knows the differences between Helma and > Marquee. > > Thank you, > Petar > > > > _______________________________________________ > Xmlrpc-users mailing list > Xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlrpc-users |
From: Petar M. <pe...@cs...> - 2001-10-28 00:41:09
|
I was curious whether someone knows the differences between Helma and Marquee. Thank you, Petar |