hallo zusammen,
so habe nun endlich auch mal ein erfolg...
habe nun direkt die nusoap klasse integriert und mit der komme ich mal weiter... debuggen etc. funktioniert nun ohne probleme....
jedoch kleine frage, ist es möglich (wen ja wie) das ich den body
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns9756:WebCtTagWrite xmlns:ns9756="http://tempuri.org/WebCtTagWrite">
<tag xsi:type="xsd:string">test</tag>
<val xsi:type="xsd:string">string</val>
</ns9756:WebCtTagWrite>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
so verändern kann
Code:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<WebCtTagWrite xmlns="http://tempuri.org/">
<tag>test</tag>
<val>string</val>
</WebCtTagWrite>
</soap:Body>
</soap:Envelope>
danke für die Hilfe....