-2
如何訪問此webservice。 I.我是這個領域的新手。我有一個具有認證功能的服務。請幫助我訪問這個。我如何使用身份驗證標頭訪問webservice
<?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:Header>
<MQUserNameToken xmlns="http://tempuri.org/">
<User_id>string</User_id>
<Password>string</Password>
<ExternalPartyName>string</ExternalPartyName>
</MQUserNameToken>
</soap:Header>
<soap:Body>
<GetCustomerInfo xmlns="http://tempuri.org/">
<CustomerInfoXML>string</CustomerInfoXML>
<ReferenceNo>string</ReferenceNo>
</GetCustomerInfo>
</soap:Body>
</soap:Envelope>
請註明您所使用的編程語言。如果只是想手動我猜訪問web服務你可以使用http://www.soapui.org/ – Shikiju
我需要在C#中的代碼 –