Lid |
|
Hoi Allen,
Ik probeer een SOAP Request uit te voeren zonder behulp van een SoapClient. De WSDL verwacht dat ik authenticeer dat ziet er zo uit:
"<ns1:Authenticate>"
"<customerID xsi:type=\"xsd:nonNegativeInteger\">"
"xxxx"
"</customerID>"
"<passphrase xsi:type=\"xsd:normalizedString\">"
"xxxxxx"
"</passphrase>"
"</ns1:Authenticate>"
"<ns1:Authenticate>" "<customerID xsi:type=\"xsd:nonNegativeInteger\">" "xxxx" "</customerID>" "<passphrase xsi:type=\"xsd:normalizedString\">" "xxxxxx" "</passphrase>" "</ns1:Authenticate>"
Ik krijg een message dat ik geauthenticeerd ben, maar nu wil ik een lijst met feeds ophalen van de WSDL. De enige preconditie is dat ik geauthenticeerd ben. Ik doe het volgende:
<ns1:Authenticate>"
"<customerID xsi:type=\"xsd:nonNegativeInteger\">"
"xxxx"
"</customerID>"
"<passphrase xsi:type=\"xsd:normalizedString\">"
"xxx"
"</passphrase>"
"</ns1:Authenticate>"
"<ns1:GetFeeds>"
"<affiliateSiteID xsi:type=\"xsd:nonNegativeInteger\">"
"xxxx"
"</affiliateSiteID>"
"</ns1:GetFeeds>"
<ns1:Authenticate>" "<customerID xsi:type=\"xsd:nonNegativeInteger\">" "xxxx" "</customerID>" "<passphrase xsi:type=\"xsd:normalizedString\">" "xxx" "</passphrase>" "</ns1:Authenticate>" "<ns1:GetFeeds>" "<affiliateSiteID xsi:type=\"xsd:nonNegativeInteger\">" "xxxx" "</affiliateSiteID>" "</ns1:GetFeeds>"
Nu krijg ik alleen maar een authentication msg. Weet iemand hoe ik multiple soap request's kan uitvoeren in 1 request?
|