in reply to Reading SOAP formatted text sent via GET.

Ok, so you are trying PAAS (Perl as a Service). And you are not using a RESTful interface to do that. What do you have? Basic perl where you need to write your own webserver? An Apache webserver where you can put CGI-BIN's in? A Plack/Dancer2?

If you have an apache webserver, that allows CGI's in your home directory... then read "Writing a CGI program" at Apache docs - cgi

Get that first running.

edit: Here is a very good Perl CGI tutorial: perl_cgi

Once you mastered that, throw SOAP into the mix (scroll down to the examples first, or you head will overload and explode): SOAP::Lite

If you are interested in theory and alternative methods: modern ways of doing web services

  • Comment on Re: Reading SOAP formatted text sent via GET.

Replies are listed 'Best First'.
Re^2: Reading SOAP formatted text sent via GET.
by Anonymous Monk on Nov 26, 2016 at 17:54 UTC