|
Posted by Marcin on October 26, 2006, 1:27 pm
Please log in for more thread options
Hello
>> SOAP::Transport::HTTP::CGI->dispatch_to(MyModule)->handle;
>> package MyModule;
>> sub my_method {
>> my $class = shift;
>> my @rgs = @_;
>> }
>>
>> In @args I would like to get raw XML with paramters from client.
>
> Why is that?
Because this server must talk to old client software which sends XML
wrapped in SOAP. The XML looks like this:
<request>
<field1>value1</field1>
<field2>value2</field2>
</request>
<request>
<field1>value3</field1>
<field2>value4</field2>
</request>
in @args I got only value3 and value4. If I could get raw XML
I could parse it properly.
Greetings
Marcin
|