source: trunk/autoquest-httpmonitor-test/src/main/webapp/WEB-INF/cxf-servlet.xml @ 1390

Last change on this file since 1390 was 1390, checked in by pharms, 10 years ago
  • added test cases for SOAP message exchange
File size: 964 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans"
3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
4        xmlns:soap="http://cxf.apache.org/bindings/soap"
5        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
6                          http://cxf.apache.org/bindings/soap http://cxf.apache.org/schemas/configuration/soap.xsd
7                          http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
8
9        <!-- Modify here your code, in order to adjust it to your service implementation -->
10
11        <import resource="classpath:META-INF/cxf/cxf.xml" />
12        <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
13
14        <jaxws:endpoint id="DummyServiceSOAPPort"
15                implementor="de.ugoe.cs.autoquest.httpmonitor.DummyServiceImpl"
16                address="/DummyServiceSOAPPort">
17    </jaxws:endpoint>
18
19
20</beans>
Note: See TracBrowser for help on using the repository browser.