Hi i am using wsdl the contains of it is
<complexType name="ArrayOfTarget">
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType"
wsdl:arrayType="impl:Target[]"/>
</restriction>
</complexContent>
</complexType>
<complexType name="Target">
<sequence>
<element name="nas-ip" nillable="true" type="xsd:string"/>
<element name="port" nillable="true" type="xsd:long"/>
<element name="secret" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
<complexType name="ArrayOfRadiusattributes">
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType"
wsdl:arrayType="impl:Radiusattributes[]"/>
</restriction>
</complexContent>
</complexType>
<complexType name="Radiusattributes">
<sequence>
<element name="RadiusattributeName" nillable="true"
type="xsd:string"/>
<element name="RadiusattributeValue" nillable="true"
type="xsd:string"/>
<element name="RadiusattributeFormat" nillable="true"
type="xsd:long"/>
</sequence>
</complexType>
<complexType name="ChangeProfile">
<sequence>
<element name="TargetData" nillable="false"
type="impl:ArrayOfTarget"/>
<element name="RadiusattributesData" nillable="false"
type="impl:ArrayOfRadiusattributes"/>
<element name="Command" nillable="false"
type="xsd:string"/>
</sequence>
</complexType>
<complexType name="ChangeProfileResponse">
<sequence>
<element name="iResponseCode" nillable="false"
type="xsd:long"/>
</sequence>
</complexType>
</schema>
My soap server is in c/c++,I want to send the vales of nsa-ip port to
server ,