in reply to SOAP::Lite Question

You can try creating a module from the wsdl using stubmaker.
stubmaker http://www.service.com/service?wsdl
From there, you can edit the namespaces for each function within the module.

Replies are listed 'Best First'.
Re^2: SOAP::Lite Question
by decibel3276 (Initiate) on Jun 07, 2007 at 13:39 UTC
    That worked beautifully. Now the only thing that appears to be holding up my request is the SOAP-ENV prefix. How would I go about modifying the envelope so that instead of SOAP-ENV, it would just say, for example, soap:Envelope instead of SOAP-ENV:Envelope?
      I was reading through some forums and discovered that, from what I was able to comprehend, that this is because the messages is being encoded in SOAP-RPC and not doc/literal which is what the .NET service is looking for. Is this correct? Can anyone shed some light on this for me?