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 2011/06/03 18:37:56 UTC

svn commit: r1131100 - in /cxf/trunk/benchmark/performance: base/pom.xml soap_http_doc_lit/pom.xml soap_http_doc_lit/src/main/resources/wsdl/perf.wsdl

Author: dkulp
Date: Fri Jun  3 16:37:55 2011
New Revision: 1131100

URL: http://svn.apache.org/viewvc?rev=1131100&view=rev
Log:
Minor updates to actually run now.

Modified:
    cxf/trunk/benchmark/performance/base/pom.xml
    cxf/trunk/benchmark/performance/soap_http_doc_lit/pom.xml
    cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/resources/wsdl/perf.wsdl

Modified: cxf/trunk/benchmark/performance/base/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/benchmark/performance/base/pom.xml?rev=1131100&r1=1131099&r2=1131100&view=diff
==============================================================================
--- cxf/trunk/benchmark/performance/base/pom.xml (original)
+++ cxf/trunk/benchmark/performance/base/pom.xml Fri Jun  3 16:37:55 2011
@@ -25,7 +25,7 @@
     <name>Apache CXF Benchmark Base</name>
     <url>http://cxf.apache.org</url>
     <properties>
-        <cxf.version>2.4.0-SNAPSHOT</cxf.version>
+        <cxf.version>2.4.1-SNAPSHOT</cxf.version>
     </properties>
 
     <build>

Modified: cxf/trunk/benchmark/performance/soap_http_doc_lit/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/benchmark/performance/soap_http_doc_lit/pom.xml?rev=1131100&r1=1131099&r2=1131100&view=diff
==============================================================================
--- cxf/trunk/benchmark/performance/soap_http_doc_lit/pom.xml (original)
+++ cxf/trunk/benchmark/performance/soap_http_doc_lit/pom.xml Fri Jun  3 16:37:55 2011
@@ -26,7 +26,7 @@
     <url>http://cxf.apache.org</url>
 
     <properties>
-        <cxf.version>2.4.0-SNAPSHOT</cxf.version>
+        <cxf.version>2.4.1-SNAPSHOT</cxf.version>
     </properties>
     <dependencies>
         <dependency>
@@ -59,6 +59,11 @@
             <artifactId>cxf-rt-ws-security</artifactId>
             <version>${cxf.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-jdk14</artifactId>
+            <version>1.6.1</version>
+        </dependency>
     </dependencies>
 
     <build>

Modified: cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/resources/wsdl/perf.wsdl
URL: http://svn.apache.org/viewvc/cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/resources/wsdl/perf.wsdl?rev=1131100&r1=1131099&r2=1131100&view=diff
==============================================================================
--- cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/resources/wsdl/perf.wsdl (original)
+++ cxf/trunk/benchmark/performance/soap_http_doc_lit/src/main/resources/wsdl/perf.wsdl Fri Jun  3 16:37:55 2011
@@ -238,6 +238,38 @@
     </binding>
 
     <binding name="SoapBindingDocLit" type="tns:DocPortType">
+        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+
+        <operation name="echoStringDoc">
+            <soap:operation style="document"/>
+            <input>
+                <soap:body use="literal"/>
+            </input>
+            <output>
+                <soap:body use="literal"/>
+            </output>
+        </operation>
+        <operation name="echoBase64Doc">
+            <soap:operation style="document"/>
+            <input>
+                <soap:body use="literal"/>
+            </input>
+            <output>
+                <soap:body use="literal"/>
+            </output>
+        </operation>
+        <operation name="echoComplexTypeDoc">
+            <soap:operation style="document"/>
+            <input>
+                <soap:body use="literal"/>
+            </input>
+            <output>
+                <soap:body use="literal"/>
+            </output>
+        </operation>
+    </binding>
+
+    <binding name="SoapBindingDocLitSec" type="tns:DocPortType">
         <wsp:PolicyReference URI="#SymD_policy"/>
         <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
 
@@ -306,6 +338,9 @@
         <port name="SoapHttpDocLitPort" binding="tns:SoapBindingDocLit">
             <soap:address location="http://localhost:8080/cxf-benchmark-soapdoclit/services/SoapHttpDocLitPort"/>
         </port>
+        <port name="SoapHttpDocLitPortSec" binding="tns:SoapBindingDocLitSec">
+            <soap:address location="http://localhost:8080/cxf-benchmark-soapdoclit/services/SoapHttpDocLitPortSec"/>
+        </port>
         <port name="SoapHttpRPCLitPort" binding="tns:SoapBindingRPCLit">
             <soap:address location="http://localhost:8080/cxf-benchmark-soapdoclit/services/SoapHttpRPCLitPort"/>
         </port>