Re: XML-RPC Support?

2003-08-30 Thread Andre Garzia
On Wednesday, August 20, 2003, at 12:49  AM, Dar Scott wrote:

On Tuesday, August 19, 2003, at 09:34 PM, Andre Garzia wrote:

I intend to buy Rev Studio this week, if I do, i'll try to implement 
a simple xml-rpc stack so others may improve upon!
Cool.  Will this be both client and server?  That is, will this 
emulate a simple HTTP server?

Dar Scott

I just bought it. I can only implement client side... I did it twice 
(for REALBasic 3x and 5x), never fiddled with server side.. but it 
might be easy, can someone provide a sample stack for a web server 
(something that listen to http request and answers it), then i could 
try to change it to a xml-rpc server. Also some XML Parsing/Generating 
sample stacks would be usefull sometimes I get lost with Rev Builtin 
documentation (but i like it, i am just not used to it)

Cheers
Andre

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Andre Garzia  2003
imac2 ibook p100 e uma torradeira
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XML-RPC Support?

2003-08-30 Thread Brian Yennie
I just bought it. I can only implement client side... I did it twice 
(for REALBasic 3x and 5x), never fiddled with server side.. but it 
might be easy, can someone provide a sample stack for a web server 
(something that listen to http request and answers it), then i could 
try to change it to a xml-rpc server.
Try this:

ftp://ftp.metacard.com/MetaCard/mchttpd.zip

Enjoy.

Brian

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XML-RPC Support?

2003-08-19 Thread Jan Schenkel
--- Andre Garzia [EMAIL PROTECTED] wrote:
 
 On Monday, August 18, 2003, at 02:48  AM, Jan
 Schenkel wrote:
 
  --- Dan Shafer [EMAIL PROTECTED] wrote:
  I thought I had read or heard somewhere that
  Revolution supports
  XML-RPC. But searching docs turns up no clues.
 
  Anyone got a pointer?
 
 
  Hi Dan,
 
  Revolution supports SOAP, which one might say
  supersedes XML-RPC.
  Have a look at \Sample stacks\SOAP_Toolbox.rev
 
  Hope this helped,
 
  Jan Schenkel.
 
 
 Jan,
 
 I do not think soap supersedes XML-RPC Soap is
 to complicated to 
 use, xml-rpc is simple and does the job well, i
 never knew a project 
 that really needed soap, xml-rpc always live up to
 the job for me.
 
 the sites:
 http://www.soapware.org
 http://www.xmlrpc.com
 
 Are both from Userland, they've got the specs, the
 implementations and 
 a list of public avaiable services. xml-rpc has more
 services avaiable 
 and is easier to implement. As for Dan question, he
 can implement 
 xml-rpc by himself (it's not that hard!!!) or if
 he's using MacOS he 
 can call applescripts to the xml-rpc call for him
 and pass back the 
 results
 
 Cheers!
 Andre
 

Hi Andre,

Glad to see 'granddaddy' XML-RPC is still alive and
kicking ; while I would agree that it is easier to
use, nearly all of the Web Service implementations in
development tools (such as in WebObjects 5.2, 4th
Dimension 2003, and our beloved Revolution 2.0) are
concentrating around SOAP.
Granted, the specs for SOAP 1.2 are hefty (which is
why it is no longer an acronym for Simple Object
Access Protocol) but they offer a lot of
enterprise-level features, such as parts that are
forwarded to and handled by different web services,
etc.
In most cases, overkill. But it's the standard, so we
have to follow suit.
However, implementing XML-RPC using the 'post' command
and employing the revXML library, should be a breeze ;
and I bet you could learn a lot from the SOAP toolbox
if you were to build a library for it.

Best regards,

Jan Schenkel.

=
As we grow older, we grow both wiser and more foolish at the same time.  (La 
Rochefoucauld)

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XML-RPC Support?

2003-08-19 Thread Andre Garzia
On Tuesday, August 19, 2003, at 04:26  AM, Jan Schenkel wrote:

Hi Andre,

Glad to see 'granddaddy' XML-RPC is still alive and
kicking ; while I would agree that it is easier to
use, nearly all of the Web Service implementations in
development tools (such as in WebObjects 5.2, 4th
Dimension 2003, and our beloved Revolution 2.0) are
concentrating around SOAP.
Granted, the specs for SOAP 1.2 are hefty (which is
why it is no longer an acronym for Simple Object
Access Protocol) but they offer a lot of
enterprise-level features, such as parts that are
forwarded to and handled by different web services,
etc.
In most cases, overkill. But it's the standard, so we
have to follow suit.
However, implementing XML-RPC using the 'post' command
and employing the revXML library, should be a breeze ;
and I bet you could learn a lot from the SOAP toolbox
if you were to build a library for it.
Best regards,

Jan Schenkel.
Jan,

Yes, SOAP do have enterprise level features that XML-RPC lacks... and 
sometimes it's just overkill, think for example a simple blog tool, the 
code required for soap transport would be bigger than the rest of the 
app... :D

I intend to buy Rev Studio this week, if I do, i'll try to implement a 
simple xml-rpc stack so others may improve upon!

Cheers

Andre Garzia  2003
imac2 ibook p100 e uma torradeira
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XML-RPC Support?

2003-08-19 Thread Dar Scott
On Tuesday, August 19, 2003, at 09:34 PM, Andre Garzia wrote:

I intend to buy Rev Studio this week, if I do, i'll try to implement a 
simple xml-rpc stack so others may improve upon!
Cool.  Will this be both client and server?  That is, will this emulate 
a simple HTTP server?

Dar Scott

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XML-RPC Support?

2003-08-18 Thread Andre Garzia
On Monday, August 18, 2003, at 02:48  AM, Jan Schenkel wrote:

--- Dan Shafer [EMAIL PROTECTED] wrote:
I thought I had read or heard somewhere that
Revolution supports
XML-RPC. But searching docs turns up no clues.
Anyone got a pointer?

Hi Dan,

Revolution supports SOAP, which one might say
supersedes XML-RPC.
Have a look at \Sample stacks\SOAP_Toolbox.rev
Hope this helped,

Jan Schenkel.


Jan,

I do not think soap supersedes XML-RPC Soap is to complicated to 
use, xml-rpc is simple and does the job well, i never knew a project 
that really needed soap, xml-rpc always live up to the job for me.

the sites:
http://www.soapware.org
http://www.xmlrpc.com
Are both from Userland, they've got the specs, the implementations and 
a list of public avaiable services. xml-rpc has more services avaiable 
and is easier to implement. As for Dan question, he can implement 
xml-rpc by himself (it's not that hard!!!) or if he's using MacOS he 
can call applescripts to the xml-rpc call for him and pass back the 
results

Cheers!
Andre



=
As we grow older, we grow both wiser and more foolish at the same 
time.  (La Rochefoucauld)

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Andre Alves Garzia  2003  BRAZIL
http://www.soapdog.org
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


XML-RPC Support?

2003-08-17 Thread Dan Shafer
I thought I had read or heard somewhere that Revolution supports 
XML-RPC. But searching docs turns up no clues.

Anyone got a pointer?

~~
Dan Shafer, Revolutionary
Author of forthcoming 3-book set,
Revolution: Programming at the Speed of Thought
http://www.revolutionpros.com for More Info
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XML-RPC Support?

2003-08-17 Thread Jan Schenkel
--- Dan Shafer [EMAIL PROTECTED] wrote:
 I thought I had read or heard somewhere that
 Revolution supports 
 XML-RPC. But searching docs turns up no clues.
 
 Anyone got a pointer?
 

Hi Dan,

Revolution supports SOAP, which one might say
supersedes XML-RPC.
Have a look at \Sample stacks\SOAP_Toolbox.rev

Hope this helped,

Jan Schenkel.

=
As we grow older, we grow both wiser and more foolish at the same time.  (La 
Rochefoucauld)

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XML-RPC Support?

2002-11-10 Thread Jan Schenkel
--- Dan Shafer [EMAIL PROTECTED] wrote:
 Has anyone developed any libraries or tools for
 doing XML-RPC from RR?
 

Hi Dan,

RunRev 2.0 sports a great SOAP-toolbox, if that's what
you're looking for. [Thanks for that gem, Dave]
If it's a different protocol, I'm sure it's not too
hard to build, and with the right specs could be setup
in a matter of weeks.
As I'm working on something in that field, I'd be
happy to exchange information off-list.

Best regards,

Jan Schenkel.

=
As we grow older, we grow both wiser and more foolish at the same time.  (La 
Rochefoucauld)

__
Do you Yahoo!?
U2 on LAUNCH - Exclusive greatest hits videos
http://launch.yahoo.com/u2
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution



XML-RPC Support?

2002-11-09 Thread Dan Shafer
Has anyone developed any libraries or tools for doing XML-RPC from RR?

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution