SOAP Envelope作为输入参数Java SOAP Web服务

时间:2013-03-21 10:20:34

标签: java web-services soap remedy

我将向BMC Remedy提出请求。它返回以下SOAP Envelop作为响应。

<"soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<"soapenv:Body">

<"ns0:HelpDesk_Submit_ServiceResponse xmlns:ns0="urn:HPD_IncidentInterface_Create_WS">

<"ns0:Incident_Number/">

<"/ns0:HelpDesk_Submit_ServiceResponse">

<"/soapenv:Body">

<"/soapenv:Envelope">  

我想在Java SOAP WebService方法中得到这个响应,即

void doSomething(SOAP input){

 //do something with it
}

我很困惑我应该采取什么输入类型?

  1. 的SOAPMessage ??
  2. 的SOAPElement ??
  3. XMLMessage ??
  4. 的XMLElement ??
  5. 或其他什么?
  6. 我知道如何使用AXIS2和Eclipse创建WebServices。只是坚持输入类型。

    请帮助。

    在SOAP Envelop for Visibility中添加了“”

0 个答案:

没有答案