You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2017/02/01 15:31:36 UTC

[2/3] cxf git commit: Get databinding systests to run on random ports

Get databinding systests to run on random ports


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/1cded5a8
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/1cded5a8
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/1cded5a8

Branch: refs/heads/master
Commit: 1cded5a8f0eb3e7475a8b28e5eaf19b1f4016c55
Parents: ef13d2b
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Wed Feb 1 15:25:54 2017 +0000
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Wed Feb 1 15:30:44 2017 +0000

----------------------------------------------------------------------
 .../databinding/src/test/resources/jaxbCustomValidators.xml    | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/1cded5a8/systests/databinding/src/test/resources/jaxbCustomValidators.xml
----------------------------------------------------------------------
diff --git a/systests/databinding/src/test/resources/jaxbCustomValidators.xml b/systests/databinding/src/test/resources/jaxbCustomValidators.xml
index 6466c9e..688cc53 100644
--- a/systests/databinding/src/test/resources/jaxbCustomValidators.xml
+++ b/systests/databinding/src/test/resources/jaxbCustomValidators.xml
@@ -25,11 +25,13 @@ under the License.
 						http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
 						http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd">
 
+    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
+
 	<!-- Services -->
 	<jaxws:server 
 		id="testServer" 
 		serviceClass="org.apache.cxf.systest.jaxb.validators.HelloWorld"
-		address="http://localhost:9000/Hello">
+		address="http://localhost:${testutil.ports.CustomValidatorJAXBTest}/Hello">
 		<jaxws:serviceBean>
 			<bean class="org.apache.cxf.systest.jaxb.validators.HelloWorldImpl"/>
 		</jaxws:serviceBean>
@@ -48,7 +50,7 @@ under the License.
 	<jaxws:client 
 		id="testClient" 
 		serviceClass="org.apache.cxf.systest.jaxb.validators.HelloWorld"
-		address="http://localhost:9000/Hello">
+		address="http://localhost:${testutil.ports.CustomValidatorJAXBTest}/Hello">
 	</jaxws:client>