Leser: 19
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
my $data = SOAP::Data->name( "AAA" => SOAP::Data->value( SOAP::Data->name( "BBB" => "B_VALUE" ), SOAP::Data->name( "CCC" => SOAP::Data->value( SOAP::Data->name( "DDD" => SOAP::Data->value( SOAP::Data->name( "EEE" => "E_VALUE" ), SOAP::Data->name( "FFF" => "F_VALUE" ) ) ) ) ) ) );
1
2
3
4
5
6
7
8
9
10
11
12
13
<soap:Body>
<do_sth xmlns="API/1.0">
<AAA xsi:type="xsd:string">
<BBB xsi:type="xsd:string">B_VALUE</BBB>
<CCC xsi:type="xsd:string">
<DDD xsi:type="xsd:string">
<EEE xsi:type="xsd:string">E_VALUE</EEE>
<FFF xsi:type="xsd:string">F_VALUE</FFF>
</DDD>
<CCC>
</AAA>
</do_sth>
</soap:Body>
1
2
3
4
5
6
7
<soap:Body>
<do_sth xmlns="API/1.0">
<BBB xsi:type="xsd:string">B_VALUE</BBB>
<EEE xsi:type="xsd:string">E_VALUE</EEE>
<FFF xsi:type="xsd:string">F_VALUE</FFF>
</do_sth>
</soap:Body>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
my $data = SOAP::Data->name( "AAA" => \SOAP::Data->value( SOAP::Data->name( "BBB" => "B_VALUE" ), SOAP::Data->name( "CCC" => \SOAP::Data->value( SOAP::Data->name( "DDD" => \SOAP::Data->value( SOAP::Data->name( "EEE" => "E_VALUE" ), SOAP::Data->name( "FFF" => "F_VALUE" ) ) ) ) ) ) );