in reply to Re^4: How to create soap server script?
in thread How to create soap server script?
Please understand that I am not an authority on this one, having not done SOAP in quite some time now, but ...
The WSDL is (afaik...) an external description of what your service has to offer. Your implementation must conform to it, but your server-side code is not influenced by it. (It would be very nice if it did, and perhaps there is another package that does.)
As guide.soap.com indicates, access can either be dynamic or static. “Dynamic” means that you specify a directory-name, and Perl looks for a module within that directory. If it finds one, it loads it and uses it. (See: "Different modules on one server.") A hybrid approach can also be used. But these implementation details are not apparent to the client.
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: How to create soap server script?
by Boring (Novice) on Oct 07, 2010 at 01:34 UTC |