Hello all,
i produced code with the WSDL2C Tool. In the WSDL is defined.
<complexType name="Auth">
<sequence>
<element name="userId" type="xsd:string" minOccurs="0"
maxOccurs="1" nillable="true"/>
<element name="password" type="xsd:string" minOccurs="0"
maxOccurs="1" nillable="true"/>
<element name="hostname" type="xsd:string" minOccurs="0"
maxOccurs="1" nillable="true"/>
</sequence>
</complexType>
When i send now a message to the server it occures a error.
When i send a message to the server now, occurs it a error, because the
value is not instantiated. Here the part of the Soap message.
<auth><userId>AllPrivAdmin</userId><password /><hostname xsi:nil="true"
/></auth>
Why don't the value is instantiated?
Regards Lars