Weblogic 14c - webservice-description-name 在 weblogic-webservices 中不是唯一的

Weblogic 14c - webservice-description-name is not unique within weblogic-webservices

我使用如下注释将我的无状态 ejb 公开为 Web 服务:

@WebService(
    name = "MyServicePort",
    portName = "MyServicePort",
    serviceName = "MyService",
)
@SOAPBinding(
    style = SOAPBinding.Style.RPC
)
@Stateless(mappedName="MyServiceEJB", name = "MyServiceEJB")
public class MyServiceBean {

为了在 weblogic 中定义上下文根,我在 weblogic-webservices.xml 部署描述符中定义了 web 服务,如下所示:

<weblogic-webservices
    xmlns="http://xmlns.oracle.com/weblogic/weblogic-webservices"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-webservices http://xmlns.oracle.com/weblogic/weblogic-webservices/1.1/weblogic-webservices.xsd">
    <webservice-description>
        <webservice-description-name>MyService</webservice-description-name>
        <port-component>
            <port-component-name>MyServicePort</port-component-name>
            <service-endpoint-address>
                <webservice-contextpath>/mycontext</webservice-contextpath>
                <webservice-serviceuri>/myservice</webservice-serviceuri>
            </service-endpoint-address>
        </port-component>
    </webservice-description>
</weblogic-webservices>

但是,weblogic 在部署时抛出以下错误:

[ERROR] weblogic.wsee.ws.WsException: Error encountered while deploying WebService module 'myservice-ejb.jar'.
In weblogic-webservices.xml, webservice-description-name MyService is not unique within weblogic-webservices

知道我做错了什么吗?这是我的 Web 应用程序中唯一的 bean/service,并且没有在 weblogic(本地实例)中部署其他应用程序。

我可以通过将具有以下内容的 webservices.xml 放入 META-INF 文件夹(在 weblogic-webservices.xml 旁边)来解决问题。

<webservices xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_1_4.xsd"
    version="1.4">
    <display-name>MyService</display-name>
    <webservice-description>
        <webservice-description-name>MyService</webservice-description-name>
        <port-component>
            <port-component-name>MyServicePort</port-component-name>
            <wsdl-port xmlns:tns="http://schemas.mycompany.com/webservices/MyService">tns:MyServicePort</wsdl-port>
            <service-endpoint-interface>mypackage.MyServiceBean</service-endpoint-interface>
            <service-impl-bean>
                <ejb-link>MyServiceEJB</ejb-link>
            </service-impl-bean>
        </port-component>
    </webservice-description>
</webservices>

希望它可以帮助面临同样挑战的人。