Question:
How would I enter an Array value in the NuSoap Wizard?
Summary:
I have two Input parameters:
AuthInfo (Authentication)
TID (string)
For the TID, I can enter a string value. But the AuthInfo is of the complex type (Authentication). Here is the Authentication snippet of the WSDL:
<xsd:complexType name="Authentication">
<xsd:sequence>
<!-- Request Application -->
<xsd:element maxOccurs="1" minOccurs="1" name="RqstAppl" type="xsd:string"/>
<!-- Request Application Version -->
<xsd:element maxOccurs="1" minOccurs="1" name="RqstApplVers" type="xsd:string"/>
<!-- Client using Request Application -->
<xsd:element maxOccurs="1" minOccurs="1" name="Client" type="xsd:string"/>
<!-- Client's User using Request Application -->
<xsd:element maxOccurs="1" minOccurs="1" name="User" type="xsd:string"/>
<!-- Client's User Password (Encrypted) -->
<xsd:element maxOccurs="1" minOccurs="1" name="Pswd" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
|
How would I enter the values?
Would I enter the values as an array, such as:
array('RqstAppl'=>'CMDLINK',
'RqstApplVers'=>'1.00',
'Client'=>'KBREQ',
'User'=>'OPSSUPPORT',
'Pswd'=>'ENCRYPTED');
|
Thank you for reading this post.
Any input or direction would be greatly appreciated!