diff options
author | j00302280 <j00101220@huawei.com> | 2016-10-11 15:42:31 +0800 |
---|---|---|
committer | j00302280 <j00101220@huawei.com> | 2016-10-11 15:42:31 +0800 |
commit | 827d235a4a3e49f9ce330b3f92efe53e21af2f00 (patch) | |
tree | 14171a59a6ab835d1b1fe868ada09a3150c88c73 | |
parent | 194ccb8f1aac1bdac05e8b0da24d0d2f8628a4b4 (diff) |
For the bug GSO-11
Change-Id: Ic169b9084023ef11eea7ca352ef2083f195faa83
Signed-off-by: j00302280 <j00101220@huawei.com>
-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> |