You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/03/19 06:03:17 UTC

svn commit: r755836 [2/2] - in /cxf/trunk/benchmark/performance: base/ base/src/main/ base/src/main/java/ base/src/main/java/org/ base/src/main/java/org/apache/cxf/pat/internal/ base/src/org/ base/wsdl/ soap_http_doc_lit/ soap_http_doc_lit/src/main/ so...

Propchange: cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/resources/wsdl/perf_policy.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/resources/wsdl/perf_policy.wsdl
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/resources/wsdl/perf_policy.wsdl
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Copied: cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/webapp/WEB-INF/cxf-servlet.xml (from r754887, cxf/trunk/benchmark/performance/soap_http_doc_lit/wsdl/cxf-servlet.xml)
URL: http://svn.apache.org/viewvc/cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/webapp/WEB-INF/cxf-servlet.xml?p2=cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/webapp/WEB-INF/cxf-servlet.xml&p1=cxf/trunk/benchmark/performance/soap_http_doc_lit/wsdl/cxf-servlet.xml&r1=754887&r2=755836&rev=755836&view=diff
==============================================================================
--- cxf/trunk/benchmark/performance/soap_http_doc_lit/wsdl/cxf-servlet.xml (original)
+++ cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/webapp/WEB-INF/cxf-servlet.xml Thu Mar 19 05:03:16 2009
@@ -17,15 +17,20 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<endpoints>
+<beans xmlns="http://www.springframework.org/schema/beans"
+      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xmlns:jaxws="http://cxf.apache.org/jaxws"
+      xmlns:soap="http://cxf.apache.org/bindings/soap"
+      xsi:schemaLocation="
+http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+http://cxf.apache.org/bindings/soap http://cxf.apache.org/schemas/configuration/soap.xsd
+http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
+
+    <jaxws:endpoint
+        id="DocPortType"
+        implementor="org.apache.cxf.performance.complex_type.server.ServerImpl"
+        wsdlLocation="/wsdl/perf.wsdl"
+        address="/SoapHttpDocLitPort" />
+</beans>
 
-    <endpoint
-        name="complex_type"
-        interface="org.apache.cxf.performance.complex_type.ComplexPortType"
-        implementation="org.apache.cxf.performance.complex_type.server.ServerImpl"
-        wsdl="WEB-INF/wsdl/complex_type.wsdl"
-        service="{http://cxf.apache.org/performance/complex_type}ComplexService"
-        port="{http://cxf.apache.org/performance/complex_type}SoapPort"
-        url-pattern="/complex_type" />
 
-</endpoints>