SOAP xmp request
Jeg skal udskifte disse placholders med noget andet:<?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>
<PlaceOrder xmlns="http://tempuri.org/">
<Username>string</Username>
<Password>string</Password>
<Pid>string</Pid>
<OrderReference>string</OrderReference>
<OrderDescription>string</OrderDescription>
<Delivery_Name>string</Delivery_Name>
<Delivery_Adress1>string</Delivery_Adress1>
<Delivery_Adress2>string</Delivery_Adress2>
<Delivery_ZipCity>string</Delivery_ZipCity>
<Delivery_Postbox>string</Delivery_Postbox>
<Delivery_Country>string</Delivery_Country>
<Delivery_Attention>string</Delivery_Attention>
<Email>string</Email>
<OrderID>int</OrderID>
<_Error>boolean</_Error>
<ErrorDescription>string</ErrorDescription>
</PlaceOrder>
</soap:Body>
</soap:Envelope>
JEg får tilgang til den via en http adresse...
Jeg har prøvet:
Set objReq = Server.CreateObject("Microsoft.XMLDOM")
'Load the request into XML DOM
objReq.Load "adresse til xml"
'Query the DOM for the input parameter
strQuery = "SOAP:Envelope/SOAP:Body/PlaceOrder:Username"
Men jeg kan ikke få det til at virke
