私は次の方法を持っています
public PingResponse ping(String xml) throws RemoteException {
PingResponse response = new PingResponse();
response.setPingResult("Service is Live");
return response;
}
これは PingResponse.java です
@XmlRootElement(name = "PingResponse")
public class PingResponse implements java.io.Serializable {
private String pingResult;
@XmlElement(name = "PingResult")
public String getPingResult() {
return pingResult;
}
public void setPingResult(String pingResult) {
this.pingResult = pingResult;
}
私が抱えている問題は、取得した XML 応答がpingResult
小文字になっていることです。完全な例:
<?xml version="1.0" encoding="UTF-8"?>
<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>
<PingResponse>
<pingResult>Service is Live</pingResult>
</PingResponse>
</soapenv:Body>
</soapenv:Envelope>
ここで何が問題なのですか?