Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Setting the Prefix for a SOAP Response via SOAP::Data

by Anonymous Monk
on Sep 17, 2008 at 07:33 UTC ( [id://711901]=note: print w/replies, xml ) Need Help??


in reply to Setting the Prefix for a SOAP Response via SOAP::Data

soap-lite xmlns:order -> Registering namespaces with SOAP::Lite

So I would try
sub Submit {return (SOAP::Data->name('SubmitResponse')->type('xml') -> +attr({'xmlns:order'="http://echo.nasa.gov/v9/order/fulfillment"})->va +lue(ECHODataOrder::DataOrderRequest(@_)));}
Of course I would run it through perltidy first
sub Submit { return ( SOAP::Data->name('SubmitResponse')->type('xml')->attr( { 'xmlns:order' = "http://echo.nasa.gov/v9/order/fulfillme +nt" } )->value( ECHODataOrder::DataOrderRequest(@_) ) ); }
I don't know much about XML/SOAP, but I don't think the part you're interested in ('xmlns:order') is called a prefix :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://711901]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (None)
    As of 2024-04-25 01:13 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found