You have to use SoapVar instead of SoapParam if you want it to do something fancy like using different opening and closing tags. I ran into this using the SOAP API for Zimbra.
SoapParam->__construct
(No version information available, might be only in CVS)
SoapParam->__construct — SoapParam コンストラクタ
パラメータ
- data
-
渡すもしくは返すデータ。 PHP の値としてこのパラメータを直接渡すことができますが、この場合、 paramN という名前が付けられますので SOAP サービスがこれを理解しないかも知れません。
- name
-
パラメータの名前
例
例1 いくつかの例
<?php
$client = new SoapClient(null,array('location' => "http://localhost/soap.php",
'uri' => "http://test-uri/"));
$client->SomeFunction(new SoapParam($a, "a"),
new SoapParam($b, "b"),
new SoapParam($c, "c"));
?>
SoapParam->__construct
barryking93 at gmail dot com
06-Dec-2007 07:42
06-Dec-2007 07:42
Jeremy
13-Jul-2007 12:31
13-Jul-2007 12:31
Is there anyway to create a SOAP parameter like:
<a n="something">DATA</a>
If I try to form a param using the following code the resulting request is:
Code: SoapParam("DATA", "a n=\"something\"");
Result: <a n="something">DATA</a n="something">
This is giving me an error from the SOAP server because its expecting a properly formed closing tag without the encapsulated attribute.
