views:

46

answers:

1

The following is a fragment from my WSDL which describes the ComplexType "user" which has to be returned by the SOAP method.

 <s:complexType name="user">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
          <s:element minOccurs="0" maxOccurs="1" name="name" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="surname" type="s:string" />
        </s:sequence>
      </s:complexType>

How would i return this complexType named User through SOAP using PHP 5 SOAP ?

A: 

Did anyone figure this one out? Any solutions?

Dan PEterson