当前位置: 代码迷 >> Java面试 >> SOAP包头用JAVA如何写?
  详细解决方案

SOAP包头用JAVA如何写?

热度:140   发布时间:2016-04-17 20:44:06.0
SOAP包头用JAVA怎么写??
<?xml   version= "1.0 "   encoding= "utf-8 "?>  
<soap:Envelope  
    xmlns:soap= "http://schemas.xmlsoap.org/soap/envelope/ "  
    xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance "  
    xmlns:xsd= "http://www.w3.org/2001/XMLSchema ">  
      <soap:Header>  
..................
      </soap:Header>  
      <soap:Body>  
....................
      </soap:Body>  
</soap:Envelope>  

就是soap:Envelope     中的那些
看着象JDOM的namespace     但实际上不是

------解决方案--------------------
看看soap协议,谢谢!
  相关解决方案