soap_entity —
| Attribute | Pos. | Req. | Default | Description |
|---|---|---|---|---|
| tree | ||||
| value | ||||
| interpolate | 0 | interpolate output? | ||
| hide | 0 | Hide the tag return value? |
Interchange 5.9.0:
Source: code/SystemTag/soap.coretag
Lines: 18
# Copyright 2002-2007 Interchange Development Group and others # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. See the LICENSE file for details. # # $Id: soap.coretag,v 1.6 2007-03-30 23:40:49 pajamian Exp $ UserTag soap Order call uri proxy UserTag soap addAttr UserTag soap PosNumber 3 UserTag soap Version $Revision: 1.6 $ UserTag soap MapRoutine Vend::SOAP::tag_soap UserTag soap_entity addAttr UserTag soap_entity Version $Revision: 1.6 $ UserTag soap_entity MapRoutine Vend::SOAP::tag_soap_entity
Source: lib/Vend/SOAP.pm
Lines: 186
sub tag_soap_entity {
my ($opt) = @_;
my ($obj);
if ($opt->{tree}) {
my @values = map {tag_soap_entity($_)} @{$opt->{value}};
$opt->{value} = \@values;
}
eval {$obj = new SOAP::Data (%$opt);};
if ($@) {
logError ("soap_entity failed: $@");
return;
}
return $obj;
}