diff options
-rw-r--r-- | servicegateway/deployment/src/main/release/conf/server.xml | 4 | ||||
-rw-r--r-- | servicegateway/service/src/main/resources/spring/service.xml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/servicegateway/deployment/src/main/release/conf/server.xml b/servicegateway/deployment/src/main/release/conf/server.xml index 40eb5ff0..f8bce6f0 100644 --- a/servicegateway/deployment/src/main/release/conf/server.xml +++ b/servicegateway/deployment/src/main/release/conf/server.xml @@ -29,8 +29,8 @@ name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase" /> </GlobalNamingResources> <Service name="Catalina"> - <Connector connectionTimeout="20000" port="8503" protocol="HTTP/1.1" redirectPort="8443" /> - <Connector port="8305" protocol="AJP/1.3" redirectPort="8443" /> + <Connector connectionTimeout="20000" port="8305" protocol="HTTP/1.1" redirectPort="8443" /> + <!--Connector port="8305" protocol="AJP/1.3" redirectPort="8443" /--> <Engine defaultHost="localhost" name="Catalina"> <Realm className="org.apache.catalina.realm.LockOutRealm"> <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase" /> diff --git a/servicegateway/service/src/main/resources/spring/service.xml b/servicegateway/service/src/main/resources/spring/service.xml index c891a827..7ebfc4f8 100644 --- a/servicegateway/service/src/main/resources/spring/service.xml +++ b/servicegateway/service/src/main/resources/spring/service.xml @@ -31,10 +31,10 @@ <import resource="classpath:META-INF/cxf/cxf-servlet.xml" /> <!-- jar rest server registration --> - <jaxrs:server id="sampleServer" address="/"> + <jaxrs:server id="sampleServer" address="/"> <!-- registering beans --> <jaxrs:serviceBeans> - <ref bean="serviceGatewayRoaModuleImpl"></ref> + <ref bean="serviceGatewayRoaModuleImpl"></ref> </jaxrs:serviceBeans> <!-- registering providers --> <jaxrs:providers> |