2011-12-28 85 views
2

我有一個問題,我有一個SOAP請求信封這樣的:如何發送現有的SOAP請求現有WSDL

<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:str="http://string.soap.webservices.invent.telkom.co.id"><soapenv:Header/> 
<soapenv:Body> 
    <str:PhyStatus soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> 
     <ip xsi:type="xsd:string">172.20.20.123</ip> 
     <slot xsi:type="xsd:string">4</slot> 
     <port xsi:type="xsd:string">33</port> 
    </str:PhyStatus> 
</soapenv:Body> 
</soapenv:Envelope> 

,我已經具有與型動物參數,但相同的數字輸入服務的WSDL。 在java中,我該如何發送SOAP請求到這個WSDL?

您的信息,這是輸出(SOAP響應),我想:

<?xml version="1.0" encoding="UTF-8"?> 
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://string.soap.webservices.invent.telkom.co.id" 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:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> 
<SOAP-ENV:Body> 
    <ns1:PhyStatusResponse> 
     <PhyStatusReturn xsi:type="SOAP-ENC:Struct"> 
      <AdminStatus xsi:type="xsd:string">Active</AdminStatus> 
      <LinkStatus xsi:type="xsd:string">Activating</LinkStatus> 
      <LineProfile xsi:type="xsd:string">ADSL LINE PROFILE 10</LineProfile> 
     </PhyStatusReturn> 
    </ns1:PhyStatusResponse> 
</SOAP-ENV:Body> 
</SOAP-ENV:Envelope> 
+2

僅供參考,您從不向WSDL發送請求。 WSDL只是一個描述服務的XML文件。您正在向WSDL描述的服務發送請求。 – 2011-12-28 08:51:15

+0

你使用任何庫來處理Web服務嗎? – 2011-12-28 09:55:14

回答

0

您可以使用任何HTTP客戶端來發表您的SOAP消息是刪除URL「WSDL?」服務