in reply to SOAP call tweaks required

I don't know much about SOAP, but the ->default_ns, ->ns and ->use_prefix methods of SOAP::Lite seem promising, at least if you do not need the explicit web: prefix but can do with any prefix.

Replies are listed 'Best First'.
Re^2: SOAP call tweaks required
by Mike_v (Novice) on Dec 07, 2010 at 13:22 UTC
    I'm not to up on it either, any idea how I would incorporate that into my code?

      I would call the methods with the appropriate parameter, as documented.

        Yep thanks for your help, just needed to make the following change
        $method = SOAP::Data->name('web:processRequest') ->attr({'xmlns:web' => $uri}), ;