Author: gmazza
Date: Mon Oct 22 17:39:52 2012
New Revision: 1400969
URL: http://svn.apache.org/viewvc?rev=1400969&view=rev
Log:
Updates, clarifications to jms_queue sample
Added:
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/config/
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/config/jms_greeter.wsdl
Removed:
cxf/trunk/distribution/src/main/release/samples/jms_queue/wsdl/
Modified:
cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt
cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/java/demo/jms_greeter/server/GreeterJMSImpl.java
Modified: cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt?rev=1400969&r1=1400968&r2=1400969&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt
(original)
+++ cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt Mon
Oct 22 17:39:52 2012
@@ -1,8 +1,10 @@
JMS Transport Demo using Document-Literal Style
===============================================
-This sample demonstrates use of the Document-Literal style
-binding over JMS Transport using the queue mechanism.
+This sample demonstrates use of the Document-Literal style binding over
+JMS Transport using the queue mechanism. This sample uses a
+start-from-WSDL approach, see the similar java_first_jms sample
+for a Java-first sample.
Please review the README in the samples directory before
continuing.
@@ -12,7 +14,6 @@ illustration purposes only.
-
Building and running the demo using Maven
---------------------------------------
@@ -20,6 +21,7 @@ From the base directory of this sample (
located), using either UNIX or Windows:
mvn install (this will build the demo)
+
In separate command windows/shells:
mvn -Pjms.broker
mvn -Pserver
Modified: cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml?rev=1400969&r1=1400968&r2=1400969&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml (original)
+++ cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml Mon Oct
22 17:39:52 2012
@@ -32,7 +32,9 @@
<properties>
<cxf.version>${project.version}</cxf.version>
+ <wsdl.file>${basedir}/src/main/config/jms_greeter.wsdl</wsdl.file>
</properties>
+
<build>
<plugins>
<plugin>
@@ -53,7 +55,7 @@
<configuration>
<wsdlOptions>
<wsdlOption>
-
<wsdl>${basedir}/wsdl/jms_greeter.wsdl</wsdl>
+ <wsdl>${wsdl.file}</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
@@ -83,7 +85,7 @@
<configuration>
<mainClass>demo.jms_greeter.server.Server</mainClass>
<arguments>
-
<argument>${basedir}/wsdl/jms_greeter.wsdl</argument>
+ <argument>${wsdl.file}</argument>
</arguments>
</configuration>
</execution>
@@ -109,7 +111,7 @@
<configuration>
<mainClass>demo.jms_greeter.client.Client</mainClass>
<arguments>
-
<argument>${basedir}/wsdl/jms_greeter.wsdl</argument>
+ <argument>${wsdl.file}</argument>
</arguments>
</configuration>
</execution>
@@ -150,17 +152,6 @@
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
- <artifactId>cxf-rt-transports-http</artifactId>
- <version>2.7.1-SNAPSHOT</version>
- </dependency>
- <!-- Jetty is needed if you're using the CXFServlet -->
- <dependency>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.7.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<version>2.7.1-SNAPSHOT</version>
</dependency>
Added:
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/config/jms_greeter.wsdl
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/config/jms_greeter.wsdl?rev=1400969&view=auto
==============================================================================
---
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/config/jms_greeter.wsdl
(added)
+++
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/config/jms_greeter.wsdl
Mon Oct 22 17:39:52 2012
@@ -0,0 +1,147 @@
+<?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="JMSGreeterService"
+ targetNamespace="http://cxf.apache.org/jms_greeter"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+ xmlns:jms="http://cxf.apache.org/transports/jms"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+ xmlns:tns="http://cxf.apache.org/jms_greeter"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+ xmlns:x1="http://cxf.apache.org/jms_greeter/types">
+ <wsdl:types>
+ <schema targetNamespace="http://cxf.apache.org/jms_greeter/types"
+ xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
+ <element name="sayHi">
+ <complexType/>
+ </element>
+ <element name="sayHiResponse">
+ <complexType>
+ <sequence>
+ <element name="responseType" type="xsd:string"/>
+ </sequence>
+ </complexType>
+ </element>
+ <element name="greetMe">
+ <complexType>
+ <sequence>
+ <element name="requestType" type="xsd:string"/>
+ </sequence>
+ </complexType>
+ </element>
+ <element name="greetMeResponse">
+ <complexType>
+ <sequence>
+ <element name="responseType" type="xsd:string"/>
+ </sequence>
+ </complexType>
+ </element>
+ <element name="greetMeOneWay">
+ <complexType>
+ <sequence>
+ <element name="requestType" type="xsd:string"/>
+ </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:portType name="JMSGreeterPortType">
+ <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:portType>
+
+ <wsdl:binding name="JMSGreeterPortBinding" type="tns:JMSGreeterPortType">
+ <soap:binding style="document"
transport="http://cxf.apache.org/transports/jms"/>
+
+ <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="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="greetMeOneWay">
+ <soap:operation style="document"/>
+ <wsdl:input name="greetMeOneWayRequest">
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+ </wsdl:binding>
+
+ <wsdl:service name="JMSGreeterService">
+ <wsdl:port binding="tns:JMSGreeterPortBinding" name="GreeterPort">
+ <jms:address
+ destinationStyle="queue"
+ jndiConnectionFactoryName="ConnectionFactory"
+
jndiDestinationName="dynamicQueues/test.cxf.jmstransport.queue">
+
+ <jms:JMSNamingProperty name="java.naming.factory.initial"
value="org.apache.activemq.jndi.ActiveMQInitialContextFactory"/>
+ <jms:JMSNamingProperty name="java.naming.provider.url"
value="tcp://localhost:61616"/>
+
+ </jms:address>
+ <jms:clientConfig useConduitIdSelector="false"/>
+ </wsdl:port>
+ </wsdl:service>
+</wsdl:definitions>
Modified:
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/java/demo/jms_greeter/server/GreeterJMSImpl.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/java/demo/jms_greeter/server/GreeterJMSImpl.java?rev=1400969&r1=1400968&r2=1400969&view=diff
==============================================================================
---
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/java/demo/jms_greeter/server/GreeterJMSImpl.java
(original)
+++
cxf/trunk/distribution/src/main/release/samples/jms_queue/src/main/java/demo/jms_greeter/server/GreeterJMSImpl.java
Mon Oct 22 17:39:52 2012
@@ -25,7 +25,7 @@ import org.apache.cxf.jms_greeter.JMSGre
serviceName = "JMSGreeterService",
targetNamespace = "http://cxf.apache.org/jms_greeter",
endpointInterface =
"org.apache.cxf.jms_greeter.JMSGreeterPortType",
- wsdlLocation = "file:./wsdl/jms_greeter.wsdl")
+ wsdlLocation = "file:./src/main/config/jms_greeter.wsdl")
public class GreeterJMSImpl implements JMSGreeterPortType {
private static final Logger LOG =
Logger.getLogger(GreeterJMSImpl.class.getPackage().getName());