Re: SOAP and web services

2002-05-02 Thread Per Einar Ellefsen
At 19:34 02.05.2002, Bart Frackiewicz wrote: >Dear List, > >i want to create a server in mod_perl/apache, which receives request via >get/post (plain), process this request (with database access and some >functions) and answers in xml (with correct header), after planning this >about a month i

Re: SOAP and web services

2002-05-02 Thread Daisuke Maki
>Stable enough? you'll have to ask someone else, but I think it should work well >enough. I've been using SOAP::Lite + Apache for a bunch of my newer projects with moderate load, and so far I've had no problems... ;) --d

Re: SOAP and web services

2002-05-02 Thread Richard Clarke
Are you sure soap is what you want?. Just because SOAP uses XML to encode the parameters and data which it transmits doesnt necessarily mean you want that same format sent to the user. Why would you not have a normal mod perl content handler execute whatever procedures are necessary to get the inf

Re: SOAP and web services

2002-05-02 Thread Perrin Harkins
Richard Clarke wrote: > I use mod_perl/apache/soap::lite to create an internal "application server" > so that I can distribute processing load from the public webserver. That would be a lot more efficient if you just used vanilla HTTP. Less wasted overhead. This is the same principal at work w

RE: SOAP and web services

2002-05-02 Thread Joe Breeden
Bart, I would have to recommend SOAD::Lite ( http://www.soaplite.org) also. We use it accomplish many tasks - not the least of which is exposing Perl data structures to M$ ASP applications - which have a moderate load and have had no problems. Joe > -Original Message- > From: Bart Fr

Re: SOAP and web services

2002-05-02 Thread Paul Lindner
On Thu, May 02, 2002 at 01:27:48PM -0500, Joe Breeden wrote: > Bart, > > I would have to recommend SOAD::Lite ( http://www.soaplite.org) also. We use it >accomplish many tasks - not the least of which is exposing Perl data structures to M$ >ASP applications - which have a moderate load and have

Re: SOAP and web services

2002-05-03 Thread Bart Frackiewicz
Hi Ric, > > I use mod_perl/apache/soap::lite to create an internal > "application server" > so that I can distribute processing load from the public > webserver. This > also allows me to expose a soap web service to the public if > I wished to > give them direct access to a method on this app

Re: SOAP and web services

2002-05-03 Thread Richard Clarke
that too :) - Original Message - From: "Bart Frackiewicz" <[EMAIL PROTECTED]> To: "Richard Clarke" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, May 03, 2002 4:15 PM Subject: Re: SOAP and web services Hi Ric, > > I use mod_

Re: SOAP and web services

2002-05-03 Thread James G Smith
"Bart Frackiewicz" <[EMAIL PROTECTED]> wrote: >Hi Ric, > >> >> I use mod_perl/apache/soap::lite to create an internal >> "application server" >> so that I can distribute processing load from the public >> webserver. This >> also allows me to expose a soap web service to the public if >> I wish