You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by gm...@apache.org on 2012/11/19 16:58:44 UTC

svn commit: r1411263 - in /cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple: ./ src/main/resources/ src/main/resources/staticContent/ staticContent/ wsdl/

Author: gmazza
Date: Mon Nov 19 15:58:43 2012
New Revision: 1411263

URL: http://svn.apache.org/viewvc?rev=1411263&view=rev
Log:
Updated sample to remove antrun plugin.

Added:
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/cxf.xml
      - copied unchanged from r1411168, cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/cxf.xml
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/hello_world.wsdl   (with props)
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/HelloWorld.html   (with props)
Removed:
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/cxf.xml
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/staticContent/
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/wsdl/
Modified:
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml

Modified: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml?rev=1411263&r1=1411262&r2=1411263&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml (original)
+++ cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml Mon Nov 19 15:58:43 2012
@@ -32,6 +32,7 @@
 
     <properties>
         <cxf.version>${project.version}</cxf.version>
+        <wsdl.file>${basedir}/src/main/resources/hello_world.wsdl</wsdl.file>
     </properties>
     <build>
         <plugins>
@@ -53,7 +54,7 @@
                         <configuration>
                             <wsdlOptions>
                                 <wsdlOption>
-                                    <wsdl>${basedir}/wsdl/hello_world.wsdl</wsdl>
+                                    <wsdl>${wsdl.file}</wsdl>
                                 </wsdlOption>
                             </wsdlOptions>
                         </configuration>
@@ -63,24 +64,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <artifactId>maven-antrun-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>copyxmlfiles</id>
-                        <phase>generate-sources</phase>
-                        <goals>
-                            <goal>run</goal>
-                        </goals>
-                        <configuration>
-                            <tasks>
-                                <copy file="${basedir}/staticContent/HelloWorld.html" todir="${basedir}/target/classes/staticContent" />
-                                <copy file="${basedir}/cxf.xml" todir="${basedir}/target/classes/" />
-                            </tasks>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
     </build>
     <profiles>
@@ -124,7 +107,7 @@
                                 <configuration>
                                     <mainClass>demo.hw.client.Client</mainClass>
                                     <arguments>
-                                        <argument>${basedir}/wsdl/hello_world.wsdl</argument>
+                                        <argument>${wsdl.file}</argument>
                                     </arguments>
                                 </configuration>
                             </execution>

Added: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/hello_world.wsdl
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/hello_world.wsdl?rev=1411263&view=auto
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/hello_world.wsdl (added)
+++ cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/hello_world.wsdl Mon Nov 19 15:58:43 2012
@@ -0,0 +1,181 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<wsdl:definitions name="HelloWorld" targetNamespace="http://apache.org/hello_world_soap_http" 
+    xmlns="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+    xmlns:tns="http://apache.org/hello_world_soap_http"
+    xmlns:x1="http://apache.org/hello_world_soap_http/types"
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+    <wsdl:types>
+        <schema targetNamespace="http://apache.org/hello_world_soap_http/types" 
+            xmlns="http://www.w3.org/2001/XMLSchema"
+	    xmlns:tns="http://apache.org/hello_world_soap_http/types"
+            elementFormDefault="qualified">
+	    <simpleType name="MyStringType">
+		<restriction base="string">
+		    <maxLength value="30" />
+		</restriction>
+	    </simpleType>
+
+            <element name="sayHi">
+                <complexType/>
+            </element>
+            <element name="sayHiResponse">
+                <complexType>
+                    <sequence>
+                        <element name="responseType" type="string"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="greetMe">
+                <complexType>
+                    <sequence>
+                        <element name="requestType" type="tns:MyStringType"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="greetMeResponse">
+                <complexType>
+                    <sequence>
+                        <element name="responseType" type="string"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="greetMeOneWay">
+                <complexType>
+                    <sequence>
+                        <element name="requestType" type="string"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="pingMe">
+                <complexType/>
+            </element>
+            <element name="pingMeResponse">
+                <complexType/>
+            </element>
+            <element name="faultDetail">
+                <complexType>
+                    <sequence>
+                        <element name="minor" type="short"/>
+                        <element name="major" type="short"/>
+                    </sequence>
+                </complexType>
+            </element>
+        </schema>
+    </wsdl:types>
+    <wsdl:message name="sayHiRequest">
+        <wsdl:part element="x1:sayHi" name="in"/>
+    </wsdl:message>
+    <wsdl:message name="sayHiResponse">
+        <wsdl:part element="x1:sayHiResponse" name="out"/>
+    </wsdl:message>
+    <wsdl:message name="greetMeRequest">
+        <wsdl:part element="x1:greetMe" name="in"/>
+    </wsdl:message>
+    <wsdl:message name="greetMeResponse">
+        <wsdl:part element="x1:greetMeResponse" name="out"/>
+    </wsdl:message>
+    <wsdl:message name="greetMeOneWayRequest">
+        <wsdl:part element="x1:greetMeOneWay" name="in"/>
+    </wsdl:message>
+    <wsdl:message name="pingMeRequest">
+        <wsdl:part name="in" element="x1:pingMe"/>
+    </wsdl:message>
+    <wsdl:message name="pingMeResponse">
+        <wsdl:part name="out" element="x1:pingMeResponse"/>
+    </wsdl:message>		
+    <wsdl:message name="pingMeFault">
+        <wsdl:part name="faultDetail" element="x1:faultDetail"/>
+    </wsdl:message>
+    
+    <wsdl:portType name="Greeter">
+        <wsdl:operation name="sayHi">
+            <wsdl:input message="tns:sayHiRequest" name="sayHiRequest"/>
+            <wsdl:output message="tns:sayHiResponse" name="sayHiResponse"/>
+        </wsdl:operation>
+        
+        <wsdl:operation name="greetMe">
+            <wsdl:input message="tns:greetMeRequest" name="greetMeRequest"/>
+            <wsdl:output message="tns:greetMeResponse" name="greetMeResponse"/>
+        </wsdl:operation>
+        
+        <wsdl:operation name="greetMeOneWay">
+            <wsdl:input message="tns:greetMeOneWayRequest" name="greetMeOneWayRequest"/>
+        </wsdl:operation>
+
+        <wsdl:operation name="pingMe">
+            <wsdl:input name="pingMeRequest" message="tns:pingMeRequest"/>
+            <wsdl:output name="pingMeResponse" message="tns:pingMeResponse"/>
+            <wsdl:fault name="pingMeFault" message="tns:pingMeFault"/>
+        </wsdl:operation> 
+    </wsdl:portType>
+    <wsdl:binding name="Greeter_SOAPBinding" type="tns:Greeter">
+        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+        
+        <wsdl:operation name="sayHi">
+            <soap:operation soapAction="" style="document"/>
+            <wsdl:input name="sayHiRequest">
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output name="sayHiResponse">
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        
+        <wsdl:operation name="greetMe">
+            <soap:operation soapAction="" style="document"/>
+            <wsdl:input name="greetMeRequest">
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output name="greetMeResponse">
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        
+        <wsdl:operation name="greetMeOneWay">
+            <soap:operation soapAction="" style="document"/>
+            <wsdl:input name="greetMeOneWayRequest">
+                <soap:body use="literal"/>
+            </wsdl:input>
+        </wsdl:operation>
+
+        <wsdl:operation name="pingMe">
+            <soap:operation style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="pingMeFault">
+                <soap:fault name="pingMeFault" use="literal"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        
+    </wsdl:binding>
+    <wsdl:service name="SOAPService">
+        <wsdl:port binding="tns:Greeter_SOAPBinding" name="SoapPort">
+            <soap:address location="http://localhost:9000/SoapContext/SoapPort"/>
+        </wsdl:port>
+    </wsdl:service>
+</wsdl:definitions>
+

Propchange: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/hello_world.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/hello_world.wsdl
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/hello_world.wsdl
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/HelloWorld.html
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/HelloWorld.html?rev=1411263&view=auto
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/HelloWorld.html (added)
+++ cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/HelloWorld.html Mon Nov 19 15:58:43 2012
@@ -0,0 +1,84 @@
+<html>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<head>
+<title>Hello World JavaScript Client Sample</title>
+<!-- Generate and retrieve a JavaScript client for the server. -->
+<script type="text/javascript" src="/SoapContext/SoapPort?js"></script>
+<script type="text/javascript">
+<!-- create an object that talks to the Greeter service. -->
+var Greeter = new apache_org_hello_world_soap_http_Greeter();
+<!-- set the URL for the service. No cross-scripting allowed. -->
+Greeter.url = "/SoapContext/SoapPort";
+
+var responseSpan;
+
+// This is the function called upon success.
+function sayHiResponse(response, span)
+{
+    span.firstChild.nodeValue = response.getResponseType();
+}
+
+// This is the function called for an error.
+
+function sayHiError(error)
+{
+      alert('error ' + error);
+}
+
+// This function is invoked from the button press to run the service. 
+function invokeSayHi()
+{
+    responseSpan1 = document.getElementById('sayHiResponse1');
+    responseSpan1.firstChild.nodeValue = " - pending - ";
+    responseSpan2 = document.getElementById('sayHiResponse2');
+    responseSpan2.firstChild.nodeValue = " - pending - ";
+    var receiveFirstResponse = function(response) { sayHiResponse(response, responseSpan1); };
+    Greeter.sayHi(receiveFirstResponse, sayHiError);
+    var receiveSecondResponse = function(response) { sayHiResponse(response, responseSpan2); };
+    Greeter.sayHi(receiveSecondResponse, sayHiError);
+}
+</script>
+</head>
+<body>
+<h1>
+Hello World Sample
+</h1>
+<form>
+<div>
+	<table>
+	  <tr>
+	    <td>Run sayHi</td>
+	    <td><input type="button" 
+                       value="invoke" name="sayHi" 
+		       onClick="invokeSayHi()">
+	  </tr>
+	  <tr>
+	    <td>sayHi response 1</td>
+	    <td><span id='sayHiResponse1'>- not yet invoked -</span></td>
+	  </tr>
+	  <tr>
+	    <td>sayHi response 2</td>
+	    <td><span id='sayHiResponse2'>- not yet invoked -</span></td>
+	  </tr>
+	</table>
+</div>
+</form>
+</body>
+</html>
\ No newline at end of file

Propchange: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/HelloWorld.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/HelloWorld.html
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/src/main/resources/staticContent/HelloWorld.html
------------------------------------------------------------------------------
    svn:mime-type = text/html