SOAP::Lite featured in Computerworld

ziggy on 2002-05-22T18:52:00

redsquirrel writes "Jon Udell has written an article for Computerworld magazine titled, Nimble Tool Kits for Lightweight Applications that features SOAP::Lite in a real world situation."

Cool. More and more people are discovering the only real reason to use SOAP: SOAP::Lite . :-)


where's the real article..

bmaccion on 2002-05-24T04:34:25

I don't think that 3 paragraphs really says how it was done or what was accomplished. Was he using server side or client side SOAP::Lite? Was he using SOAP::HTTP::Daemon or an apache frontend?

These are the things that will help get SOAP::Lite in the workplace.

Re:where's the real article..

redsquirrel on 2002-05-24T15:10:09

Was he using server side or client side SOAP::Lite?
I used it both server-side (Windows NT) and client-side (Solaris).

Was he using SOAP::HTTP::Daemon or an apache frontend?
I used SOAP::Transport::HTTP::CGI.

I needed to write a CGI script that integrated data from an Informix database on a Solaris box with data from a SQL Server database on an NT box. I first tried to serve the script on the NT box and connect to Informix remotely with DBD::Informix. We ran into a lot of problems installing DBD::Informix on NT and time was a critical issue.

Since I had used the SOAP::Lite distribution on another project (PGAS), I thought it could be a good solution here. Since SOAP::Lite comes standard with ActivePerl (installed on the NT box), we only needed to install the module on the Solaris box. A few lines of code later and we were up and running with the CGI being served on the Solaris box, making SOAP calls to a CGI-based SOAP server on the NT box.

If you want more details, let me know.

--Dave