Home > Archive > Tcl > March 2006 > XmlRPC
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
|
| Hi guys
I would like to ask you about remote procedural call , i found two
libraries in the sourcefourge.net one is tclsoap an the other is
xmlrpc.
which one is better to use..?
also in tclsoap library the examples are not so clear so i will be
glade if somebody help me with that .
Thanks in advance
| |
| Gerald W. Lester 2006-03-31, 8:02 am |
| Jubeh wrote:
> Hi guys
>
> I would like to ask you about remote procedural call , i found two
> libraries in the sourcefourge.net one is tclsoap an the other is
> xmlrpc.
>
> which one is better to use..?
>
> also in tclsoap library the examples are not so clear so i will be
> glade if somebody help me with that .
>
> Thanks in advance
>
See: http://wiki.tcl.tk/tclsoap
--
+--------------------------------+---------------------------------------+
| Gerald W. Lester |
|"The man who fights for his ideals is the man who is alive." - Cervantes|
+------------------------------------------------------------------------+
| |
| Dan Smart 2006-03-31, 8:02 am |
| On 2006-03-30 23:19:31 -0500, "Jubeh" <sjubeh@gmail.com> said:
> Hi guys
>
> I would like to ask you about remote procedural call , i found two
> libraries in the sourcefourge.net one is tclsoap an the other is
> xmlrpc.
>
> which one is better to use..?
>
> also in tclsoap library the examples are not so clear so i will be
> glade if somebody help me with that .
>
> Thanks in advance
If you control both sides of the connection, then neither, because both
xmlrpc and soap suck, a *lot*. A pure tcl solution is simple and clean,
you can knock one up yourself in 10 lines of code, or you can use an
off the shelf solution like "comm" (http://wiki.tcl.tk/2507). Depending
on what you are trying to achieve, you may also find "Tequila"
(http://wiki.tcl.tk/1243) or "Tuplespace" (http://wiki.tcl.tk/3947) or
perhaps "GIN" (http://wiki.tcl.tk/13357) of interest.
<Seriously>
<XML>
<Smells>
<Really>Bad</Really>
</Smells>
</XML>
</Seriously>
If on the other hand you are talking to an existing server, then you'll
have to use whatever that server requires.
Dan "Friends don't let friends use xml" Smart
|
|
|
|
|