私はサードパーティのアプリケーションのいずれかが私の要求のための応答を送信するwebserviceを書くために書き込もうとしています。私たちは4種類の応答CreateResponse、GetResponse、SetResponse、DeleteResponseを持っています。要求の実行が失敗した場合、第3のparyはSoapFaultメッセージを送信します。 私のWebサービスでは、この入ってくるにSoapFaultを処理するためにどのように着信SoapFaultメッセージを処理する方法
`import javax.jws.WebService;
import javax.jws.HandlerChain;
import javax.jws.WebMethod;
import javax.xml.ws.BindingType;
import javax.xml.ws.soap.SOAPBinding;
@WebService(targetNamespace ="http://schemas.shaik.com/cai3g1.2/")
@HandlerChain(file = "handler.xml")
public class MyFirstWebService {
@WebMethod(operationName = "CreateResponse")
public void sendRequest() {
}
@WebMethod(operationName = "GetResponse")
public void sendRequest1() {
}
@WebMethod(operationName = "SetResponse")
public void sendRequest2() {
}
@WebMethod(operationName = "DeleteResponse")
public void sendRequest3() {
}
@WebMethod(operationName = "Fault")
public void sendRequest4() {
}
@WebMethod(operationName = "Cai3gFault")
public void sendRequest5() {
}
}
`
あなたは名前空間をパッケージと同じだと考えますか?もちろん、どのWebサービスでも、同時にさまざまなパッケージが用意されています。問題はどこだ? – luk2302