我使用JAX-WS
在Java中创建了一个Web服务。这是一个简单的只返回String
的大写版本:
@WebService(endpointInterface = "mod2.Mod2")
public class Mod2Impl implements Mod2 {
@Override
public String mod2(String x) {
return x.toUpperCase();
}
}
及其界面:
@WebService
public interface Mod2 {
@WebMethod
String mod2(String x);
}
JAX为我生成了相关类的mod2.jaxws包。答案是这样的:
@XmlRootElement(name = "mod2Response", namespace = "http://mod2/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "mod2Response", namespace = "http://mod2/")
public class Mod2Response {
@XmlElement(name = "return", namespace = "")
private String _return;
/**
*
* @return
* returns String
*/
public String getReturn() {
return this._return;
}
/**
*
* @param _return
* the value for the _return property
*/
public void setReturn(String _return) {
this._return = _return;
}
}
部署后,它会生成正确的WSDL
文件,并导入XSD
。这是XSD
:
<xs:schema xmlns:tns="http://mod2/" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0" targetNamespace="http://mod2/">
<xs:element name="mod2" type="tns:mod2"/>
<xs:element name="mod2Response" type="tns:mod2Response"/>
<xs:complexType name="mod2">
<xs:sequence>
<xs:element name="arg0" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="mod2Response">
<xs:sequence>
<xs:element name="return" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
现在,我想要的是在XSD中更改名为“return”的元素,无论我想要什么。我尝试更改Mod2Response类中的@XmlElement(name = "return", namespace = "")
,但这会引发以下错误:
GRAVE: WSSERVLET11: failed to parse runtime descriptor: javax.xml.ws.WebServiceException: class mod2.jaxws.Mod2Response do not have a property of the name return
为了达到这个目的,我必须改变什么?
答案 0 :(得分:9)
我找到了答案here。
我将@WebResult(name="mod2Result")
添加到我的界面:
@WebService
public interface Mod2 {
@WebMethod
@WebResult(name="mod2Result")
String mod2(String x);
}
然后再次运行wsgen
。其中生成了以下响应:
@XmlRootElement(name = "mod2Response", namespace = "http://mod2/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "mod2Response", namespace = "http://mod2/")
public class Mod2Response {
@XmlElement(name = "mod2Result", namespace = "")
private String mod2Result;
/**
*
* @return
* returns String
*/
public String getMod2Result() {
return this.mod2Result;
}
/**
*
* @param mod2Result
* the value for the mod2Result property
*/
public void setMod2Result(String mod2Result) {
this.mod2Result = mod2Result;
}
}
也有Joshi所述的@XmlElement(name = "mod2Result")
,但它也改变了变量,setter和getter的名称。我在Response类中直接尝试使用@XmlElement但没有成功。
答案 1 :(得分:0)
@WebService
public interface Mod2 {
@WebMethod
@XMLElement(name="returnChanged")
String mod2(String x);
}
您可以在网络服务中试用此代码。这是一个伪代码。