Repository: cxf Updated Branches: refs/heads/master 01926cb73 -> ef57932bc
fix the schema access issue in systests/ws-specs's test Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/ef57932b Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/ef57932b Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/ef57932b Branch: refs/heads/master Commit: ef57932bc767ac5e027f7773e593e2591dc9f535 Parents: 01926cb Author: Akitoshi Yoshida <[email protected]> Authored: Wed Dec 16 14:04:14 2015 +0100 Committer: Akitoshi Yoshida <[email protected]> Committed: Wed Dec 16 14:05:40 2015 +0100 ---------------------------------------------------------------------- .../java/org/apache/cxf/systest/ws/addressing/spring/spring.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/ef57932b/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/spring/spring.xml ---------------------------------------------------------------------- diff --git a/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/spring/spring.xml b/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/spring/spring.xml index b07a5f9..d7eebef 100644 --- a/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/spring/spring.xml +++ b/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/spring/spring.xml @@ -17,7 +17,7 @@ specific language governing permissions and limitations under the License. --> -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://cxf.apache.org/transports/http/configuration" xmlns:wsa="http://cxf.apache.org/ws/addressing" xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation=" http://cxf.apache.org/ws/addressing http://cxf.apache.org/schema/ws/addressing.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schema/transports/http.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> +<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://cxf.apache.org/transports/http/configuration" xmlns:wsa="http://cxf.apache.org/ws/addressing" xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation=" http://cxf.apache.org/ws/addressing http://cxf.apache.org/schemas/ws/addressing.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schema/transports/http.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <jaxws:server id="server" abstract="true"> <jaxws:features> <wsa:addressing allowDuplicates="false" messageIdCache="#cache"/>
