情境
我正在將Apache CXF 2.6.2的Web服務部署到Tomcat服務器。我出口使用CXFServlet和下面的Spring基於配置的服務:獲取CXF端點的URL
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml"/>
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
<jaxws:endpoint id="test_endpoint"
implementor="org.xyz.TestImpl"
address="/test"/>
<bean id="testBean" class="org.xyz.TestBean">
<property name="endpoint" ref="test_endpoint" />
</bean>
</beans>
在我的例子部署CXFServlet使用相對路徑/服務,例如通過TestImpl類實現的Web服務可作爲http://domain.com/tomcat-context/services/test TestBean類有一個端點設置器,它由Spring設置。
目標
我想確定地址(URL),這是testBean就採用端點領域中的類由端點test_endpoint提供。結果應該是「http://domain.com/tomcat-context/services/test」。
我已經試過
log.info("Endpoint set to " + endpoint);
log.info("Address: " + endpoint.getAddress());
org.apache.cxf.jaxws.EndpointImpl ep = (org.apache.cxf.jaxws.EndpointImpl) endpoint;
log.info("Other Address: " + ep.getBindingUri());
log.info("Props: " + ep.getProperties());
,但結果卻
Address: /Sachbearbeiter
Other Address: null
Props: {}
我怎樣才能得到完整的網址?有沒有辦法獨自建造它?