15

我正在使用 JAX-WS 构建 Web 服务。我有一个奇怪的问题,注释@XmlElement(required=true)适用@WebParam于某些@WebService类,但不适用于其他类。

我在这两个@WebService类中有非常相似的代码。什么可能导致这个问题?参数类型还是实体类?

编辑:添加示例代码

我有两个网络服务:

@WebService(name = "ClubMemberPortType", serviceName = "ClubMemberService", portName = "ClubMemberSoapPort", targetNamespace = "http://club.com/api/ws")
public class ClubMemberWS {
@WebMethod(operationName = "findClubMembersByClubId", action = "urn:findClubMembersByClubId")
    @WebResult(name = "club_membership")
    public List<ClubMembership> findClubMembershipsByClubId(@XmlElement(required=true)
                                                        @WebParam(name = "club_id") String clubId, 
                                                        @WebParam(name = "status") StatusEnum status){
...
}}

@WebService(name = "ClubPortType", serviceName = "ClubService", portName = "ClubSoapPort", targetNamespace = "http://club.com/api/ws")
public class ClubWS {
@WebMethod(operationName = "findClubByClubId", action = "urn:findClubByClubId")
    @WebResult(name = "club")
    public Club findClubByClubId(@XmlElement(required=true)
                                @WebParam(name = "club_id") String clubId) {
...
}}

第一个 Web 方法生成的架构是:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://club.com/api/ws">
   <soapenv:Header/>
   <soapenv:Body>
      <ws:findClubMembersByClubId>
         <club_id>?</club_id>
         <!--Optional:-->
         <status>?</status>
      </ws:findClubMembersByClubId>
   </soapenv:Body>
</soapenv:Envelope>

为第二种 Web 方法生成的架构是:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://club.com/api/ws">
   <soapenv:Header/>
   <soapenv:Body>
      <ws:findClubByClubId>
         <!--Optional:-->
         <club_id>?</club_id>
      </ws:findClubByClubId>
   </soapenv:Body>
</soapenv:Envelope>

所以第一个工作正常,第二个不工作。这怎么可能?:(

4

5 回答 5

5

添加@XmlElement(required=true,nillable=false)@WebParam解决了我的类似问题。使用 CXF 2.7.9。没试过@XmlElement先放,能这么简单吗?

于 2014-03-18T10:00:33.650 回答
4

我有同样的问题。我找到了为服务方法的参数使用单独的类的解决方案。

例如

@XmlType(name="SampleRequestType", propOrder={"title", "ref"})
public class SampleRequest {
    @XmlElement(name="title", required=false)
    private String title;
    @XmlElement(name="ref", required=true)
    private String ref;
    ...

网络方法

@WebMethod
public String sampleMethod(@WebParam(name = "params") SampleRequest params) {

也许这会有所帮助

于 2012-07-14T17:10:00.747 回答
2

如果您收到以下错误消息:“此位置不允许使用注释 @XmlElement ”,则可能是您使用了错误的导入语句。

将其更改为:

import javax.xml.bind.annotation.XmlElement;

由于 Eclipse 建议将另一个包作为第一个选项,这是一个非常常见的错误。

于 2016-12-10T19:24:18.363 回答
0

您尝试更改@WebParam 和@XmlElement 中的顺序?实际上我有一个 WS whit:

public Persona consultarPersona(@WebParam(name = "cedula") @XmlElement(required=true, nillable=false, name="cedula", namespace="cedulaParam")  String cedula) 

生成的描述是:

 <xsd:schema>
<xsd:import namespace="cedulaParam" schemaLocation="http://eniacstein-pc:8080/WSDL_Sample/GestorPersonas?xsd=2"/>
</xsd:schema>

和架构定义:

    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0" targetNamespace="cedulaParam">
<xs:element name="cedula" type="xs:string"/>
</xs:schema>

而已!!

于 2013-10-03T22:48:29.320 回答
0

也许我找到了解决方案。如果有人遇到同样的问题,只需按照所有人之前回答的顺序将这些注释完全按此顺序放置在您的 Web 服务合同(接口)中。

@WebParam(name = "yourParam") @XmlElement(required = true)  YourParam param
于 2019-08-22T12:58:25.810 回答