在weblogic中更改ejb3 webservice url

时间:2011-07-13 17:10:07

标签: web-services ejb-3.0

我有一个用@WebService(serviceName="MyServiceName", portName="MyPortName")注释的EJB3会话bean。当它部署到Weblogic 11g中时,服务端点位于

host:port/BeanClassName/MyServiceName

是否可以更改Web服务的服务端点地址?即

host:port/my/context/root/something/MyServiceName

我尝试使用weblogic-webservices.xml部署描述符,但它需要webservices.xml描述符,该描述符需要一个WSDL位置元素,但是应该由服务器生成,并且它的位置在dev和prod中有所不同的环境中。

2 个答案:

答案 0 :(得分:2)

假设您有一个EJB

package com.example;
@Stateless
@WebService
OrganizationService {...}

首先,您应该为它编写一个webservices.xml文件,如下所示,因为它的部分将从weblogic-webservices.xml中引用,其中实际的端点配置已完成。

webservices.xml(注意:通过在类中添加webservices.xml webservice注释被覆盖!):

<?xml version="1.0" encoding="UTF-8"?>
<webservices xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2">
  <webservice-description>
  <!-- just a label, can be anything you want -->
  <webservice-description-name>MyServiceName</webservice-description-name>
  <port-component>
    <!-- just a label, can be anything you want -->
    <port-component-name>MyServicePort</port-component-name>
        <!-- Target namespace from wsdl -->
        <wsdl-port xmlns:ex="http://example.com/target/name/Space">ex:MyService</wsdl-port>
        <!-- Fully qualified class name of the ejb interface/bean providing the service -->
        <service-endpoint-interface>com.example.OrganizationService</service-endpoint-interface>
        <service-impl-bean>
        <!-- The class name of the bean providing the service -->
          <ejb-link>OrganizationService</ejb-link>
        </service-impl-bean>
    </port-component>
  </webservice-description>
</webservices>

然后在weblogic-webservices.xml中,您可以定义所需的任何端点。

WebLogic的webservices.xml的:

<?xml version='1.0' encoding='UTF-8'?>
<weblogic-webservices xmlns="http://www.bea.com/ns/weblogic/weblogic-webservices" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-webservices http://www.bea.com/ns/weblogic/weblogic-webservices/1.0/weblogic-webservices.xsd">
  <webservice-description>
  <!-- This must match the name given in webservices.xml -->
   <webservice-description-name>MyServiceName</webservice-description-name>
   <webservice-type>JAXWS</webservice-type>
    <port-component>
     <!-- This must match the name given in webservices.xml -->
      <port-component-name>MyServicePort</port-component-name>
      <service-endpoint-address>
        <webservice-contextpath>/myContextPath</webservice-contextpath>
        <webservice-serviceuri>/myServiceURI</webservice-serviceuri>
      </service-endpoint-address>
    </port-component>
  </webservice-description>
</weblogic-webservices>

答案 1 :(得分:0)

我找到了一个解决方案,它将另一个端点添加到WebLogic从JAX-WS Web服务生成的端点。

我有这样的网络服务(简化):

@WebService(name = "ClientService",
            portName = "ClientService",
            serviceName = "ClientService")
public class ClientWebService {

    @WebMethod
    public ExtClient findClientDetails(String ref) {
        // etc.
    }
 }

WebLogic端点为<context>/ClientService,但我希望它为<context>/client/01

web.xml我有:

<listener>
    <listener-class>com.sun.xml.ws.transport.http.servlet.WSServletContextListener</listener-class>
</listener>
<servlet>
    <servlet-name>WebServiceServlet</servlet-name>
    <servlet-class>com.sun.xml.ws.transport.http.servlet.WSServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>WebServiceServlet</servlet-name>
    <url-pattern>/client/01</url-pattern>
</servlet-mapping>

现在WebLogic在两个端点都提供Web服务。

需要在web.xml中指定URI,因为WebLogic中的JAX-WS库忽略sun-jaxws.xml中的端点规范。 (相比之下,GlassFish仅公开sun-jaxws.xml中指定的点。)