Author: mmusaji
Date: 2012-12-18 06:09:02 -0500 (Tue, 18 Dec 2012)
New Revision: 17121
Modified:
stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/
stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/modules/server/src/main/java/org/jboss/wsf/stack/cxf/RequestHandlerImpl.java
stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/pom.xml
Log:
[JBPAPP-10497] Set autoRewriteSoapAddressForAllServices option.
Property changes on: stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497
___________________________________________________________________
Modified: svn:mergeinfo
- /stack/cxf/branches/asoldano:14032-14050,14068
/stack/cxf/trunk:15658,15668,15674-15675,15682,15695-15697,15708,15711,15713,15719,15723-15730,15738,15743,15748,15750-15751,15754-15757,15765-15766,15768,15773,15780-15781,15784,15794,15806-15808,15824,15835,15837-15857,15859,15866,15879-15881,15886-15889,15896,15900-15920,15936,15965,15967,15973,16067,16071,16086-16087,16096,16176,16183,16204-16205,16227,16230,16244-16245,16306,16315,16323,16407-16408,16412,16418,16516,16530-16532,16619,16636-16644,16691,16729-16730,16738,16782,16817
+ /stack/cxf/branches/asoldano:14032-14050,14068
/stack/cxf/branches/jbossws-cxf-4.0.x:17055
/stack/cxf/trunk:15658,15668,15674-15675,15682,15695-15697,15708,15711,15713,15719,15723-15730,15738,15743,15748,15750-15751,15754-15757,15765-15766,15768,15773,15780-15781,15784,15794,15806-15808,15824,15835,15837-15857,15859,15866,15879-15881,15886-15889,15896,15900-15920,15936,15965,15967,15973,16067,16071,16086-16087,16096,16176,16183,16204-16205,16227,16230,16244-16245,16306,16315,16323,16407-16408,16412,16418,16516,16530-16532,16619,16636-16644,16691,16729-16730,16738,16782,16817
Modified:
stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/modules/server/src/main/java/org/jboss/wsf/stack/cxf/RequestHandlerImpl.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/modules/server/src/main/java/org/jboss/wsf/stack/cxf/RequestHandlerImpl.java 2012-12-18
08:15:19 UTC (rev 17120)
+++
stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/modules/server/src/main/java/org/jboss/wsf/stack/cxf/RequestHandlerImpl.java 2012-12-18
11:09:02 UTC (rev 17121)
@@ -200,8 +200,9 @@
String ctxUri = req.getRequestURI();
String baseUri = req.getRequestURL().toString() + "?" +
req.getQueryString();
EndpointInfo endpointInfo = dest.getEndpointInfo();
- endpointInfo.setProperty(WSDLGetInterceptor.AUTO_REWRITE_ADDRESS,
-
ServerConfig.UNDEFINED_HOSTNAME.equals(serverConfig.getWebServiceHost()));
+ boolean autoRewrite =
ServerConfig.UNDEFINED_HOSTNAME.equals(serverConfig.getWebServiceHost());
+ endpointInfo.setProperty("autoRewriteSoapAddressForAllServices",
autoRewrite);
+ endpointInfo.setProperty(WSDLGetInterceptor.AUTO_REWRITE_ADDRESS, autoRewrite);
for (QueryHandler queryHandler :
bus.getExtension(QueryHandlerRegistry.class).getHandlers())
{
Modified: stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/pom.xml 2012-12-18 08:15:19 UTC
(rev 17120)
+++ stack/cxf/branches/jbossws-cxf-4.0.6.GA_JBPAPP-10497/pom.xml 2012-12-18 11:09:02 UTC
(rev 17121)
@@ -64,7 +64,8 @@
<jbossws.common.version>2.0.4.GA</jbossws.common.version>
<jbossws.common.tools.version>1.0.2.GA</jbossws.common.tools.version>
<jbossws.shared.testsuite.version>4.0.7.GA</jbossws.shared.testsuite.version>
- <jboss712.version>7.1.3.Final-SNAPSHOT</jboss712.version>
+ <!-- <jboss712.version>7.1.3.Final-SNAPSHOT</jboss712.version> -->
+ <jboss712.version>7.1.3.Final</jboss712.version>
<ejb.api.version>1.0.1.Final</ejb.api.version>
<cxf.version>2.4.9.jbossorg-1</cxf.version>
<cxf.asm.version>3.3.1</cxf.asm.version>