in reply to Re^2: SOAP::Lite geocode server
in thread SOAP::Lite geocode server

Aha! Your soap server isn't executed, it's returned by the web server as a plaintext document!

You need to make sure that your geocodews.pl is executed as a perl script by the web server. The simplest way to do that, I guess, is by putting it in your cgi-bin directory. Change the proxy() call to reflect the new url of the soap server.

Replies are listed 'Best First'.
Re^4: SOAP::Lite geocode server
by rockneybot (Novice) on May 25, 2006 at 01:54 UTC
    Oh! Thank you so much! I didn't think of that. Works like a charm now. I hope this SOAP server will respond faster than my old method.
      You'd better run your soap server under mod_perl. Otherwise you will only have wrapped your previous system call in a lot of xml.

      With Apache::Registry, that should be pretty simple to accomplish, but I'd refer you to the mod_perl docs for that.