From 82801263538c6f23f379b54b2eb1b68e960b26e7 Mon Sep 17 00:00:00 2001 From: rsivaram Date: Thu, 16 Oct 2008 12:16:05 +0000 Subject: Copy jms samples for event prototype git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@705223 13f79535-47bb-0310-9956-ffa450edef68 --- .../event/samples/helloworld-service-jms/README | 101 +++++++++++++++ .../event/samples/helloworld-service-jms/build.xml | 72 +++++++++++ .../helloworld-service-jms/helloworld-service.png | Bin 0 -> 9455 bytes .../helloworld-service-jms/helloworld-service.svg | 139 +++++++++++++++++++++ .../event/samples/helloworld-service-jms/pom.xml | 85 +++++++++++++ .../src/main/java/helloworld/HelloWorldImpl.java | 33 +++++ .../src/main/java/helloworld/HelloWorldServer.java | 58 +++++++++ .../main/java/helloworld/HelloWorldService.java | 31 +++++ .../src/main/resources/definitions.xml | 66 ++++++++++ .../main/resources/helloworldjmsservice.composite | 40 ++++++ .../src/main/resources/wsdl/helloworld.wsdl | 92 ++++++++++++++ .../helloworld/HelloWorldJmsServerTestCaseOff.java | 60 +++++++++ 12 files changed, 777 insertions(+) create mode 100644 sandbox/event/samples/helloworld-service-jms/README create mode 100644 sandbox/event/samples/helloworld-service-jms/build.xml create mode 100644 sandbox/event/samples/helloworld-service-jms/helloworld-service.png create mode 100644 sandbox/event/samples/helloworld-service-jms/helloworld-service.svg create mode 100644 sandbox/event/samples/helloworld-service-jms/pom.xml create mode 100644 sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java create mode 100644 sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldServer.java create mode 100644 sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldService.java create mode 100644 sandbox/event/samples/helloworld-service-jms/src/main/resources/definitions.xml create mode 100644 sandbox/event/samples/helloworld-service-jms/src/main/resources/helloworldjmsservice.composite create mode 100644 sandbox/event/samples/helloworld-service-jms/src/main/resources/wsdl/helloworld.wsdl create mode 100644 sandbox/event/samples/helloworld-service-jms/src/test/java/helloworld/HelloWorldJmsServerTestCaseOff.java (limited to 'sandbox/event') diff --git a/sandbox/event/samples/helloworld-service-jms/README b/sandbox/event/samples/helloworld-service-jms/README new file mode 100644 index 0000000000..49feabaa07 --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/README @@ -0,0 +1,101 @@ +Hello World JMS Service Sample +============================== +This sample demonstrates an SCA service that uses a JMS binding + +The README in the samples directory (the directory above this) provides +general instructions about building and running samples. Take a look there +first. + +If you just want to run it to see what happens open a command prompt, navigate +to this sample directory and do: + +ant run + +OR if you don't have ant, on Windows do + +java -cp ..\..\lib\tuscany-sca-manifest.jar;target\sample-helloworld-service-jms.jar helloworld.HelloWorldServer + +and on *nix do + +java -cp ../../lib/tuscany-sca-manifest.jar:target/sample-helloworld-service-jms.jar helloworld.HelloWorldServer + +Now the server is started you can use the helloworld-reference-jms sample to +exercise it. + +Sample Overview +--------------- +The sample provides a single component that is wired to a service with a +JMS binding. + +helloworld-service-jms/ + src/ + main/ + java/ + helloworld/ + HelloWorldService.java - interface description for + HelloWorldServiceComponent + HelloWorldImpl.java - component implementation + HelloWorldServer.java - starts the SCA Runtime and + deploys the helloworldjmsservice + .composite and then waits for the + service to be called via JMS + resources/ + helloworldjmsservice.composite - the SCA assembly for this sample + + test/ + java/ + helloworld/ + HelloWorldJMSServerTestCase.java- JUnit test case + helloworld-service.png - a pictorial representation of the + sample .composite file + build.xml - the Ant build file + pom.xml - the Maven build file + +Building And Running The Sample Using Ant +----------------------------------------- +With the binary distribution the sample can be built and run using Ant using the +following commands + +cd helloworld-service-jms +ant compile +ant run + +You should see the following output from the run target. + +run: + [java] log4j:WARN No appenders could be found for logger (org.apache.axiom. +om.util.StAXUtils). + [java] log4j:WARN Please initialize the log4j system properly. + [java] HelloWorld server started (press enter to shutdown) + +As this point the SCA service is exposed as a JMS service via ActiveMQ which is +started automatically by the SCA runtime. To stop the server just press +enter. + +To exercise the service run up the helloworld-reference-jms sample. Take a look at +the README in that sample and you will see you need the following commands + +cd helloworld-reference-jms +ant run + +Building Sample Using Maven +------------------------------------------- +With either the binary or source distributions the sample can be built +using Maven as follows. + +cd helloworld-service-jms +mvn + +You should see the following output + +... +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESSFUL +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 15 seconds +[INFO] Finished at: Wed Jul 02 12:50:24 BST 2008 +[INFO] Final Memory: 13M/51M +[INFO] ------------------------------------------------------------------------ + + +This shows that the module has compiled successfully. diff --git a/sandbox/event/samples/helloworld-service-jms/build.xml b/sandbox/event/samples/helloworld-service-jms/build.xml new file mode 100644 index 0000000000..330de7f7e5 --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/build.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/event/samples/helloworld-service-jms/helloworld-service.png b/sandbox/event/samples/helloworld-service-jms/helloworld-service.png new file mode 100644 index 0000000000..ef27c71f54 Binary files /dev/null and b/sandbox/event/samples/helloworld-service-jms/helloworld-service.png differ diff --git a/sandbox/event/samples/helloworld-service-jms/helloworld-service.svg b/sandbox/event/samples/helloworld-service-jms/helloworld-service.svg new file mode 100644 index 0000000000..dd7a9dd87d --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/helloworld-service.svg @@ -0,0 +1,139 @@ + + + + + + + + + + image/svg+xml + + + + + + + + helloworld + + HelloWorldServiceComponent + HelloWorldServiceJMS + diff --git a/sandbox/event/samples/helloworld-service-jms/pom.xml b/sandbox/event/samples/helloworld-service-jms/pom.xml new file mode 100644 index 0000000000..a80a32fc08 --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/pom.xml @@ -0,0 +1,85 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 1.4-SNAPSHOT + ../../pom.xml + + sample-helloworld-service-jms + Apache Tuscany SCA HelloWorld Service JMS Sample + + + + apache.incubator + http://people.apache.org/repo/m2-incubating-repository + + + + + + org.apache.tuscany.sca + tuscany-host-embedded + 1.4-SNAPSHOT + compile + + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 1.4-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-jms-runtime + 1.4-SNAPSHOT + runtime + + + + junit + junit + 4.5 + test + + + + org.apache.activemq + apache-activemq + 4.1.1 + + + org.apache.activemq + activemq-web-demo + + + + + + + + ${artifactId} + + + diff --git a/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java b/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java new file mode 100644 index 0000000000..4cdcc1fd0b --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java @@ -0,0 +1,33 @@ +/* + * 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. + */ +package helloworld; + +import org.osoa.sca.annotations.Service; + +/** + * This class implements the HelloWorld service. + */ +@Service(HelloWorldService.class) +public class HelloWorldImpl implements HelloWorldService { + + public String getGreetings(String name) { + return "Hello " + name; + } + +} diff --git a/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldServer.java b/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldServer.java new file mode 100644 index 0000000000..d4ea391a00 --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldServer.java @@ -0,0 +1,58 @@ +/* + * 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. + */ +package helloworld; + +import java.io.IOException; + +import org.apache.activemq.broker.BrokerService; +import org.apache.tuscany.sca.host.embedded.SCADomain; + +/** + * This server program shows how to create an SCA runtime, and start it which + * activates the helloworld Web service endpoint. + */ +public class HelloWorldServer { + + public static void main(String[] args) { + try { + BrokerService jmsBroker; + jmsBroker = new BrokerService(); + jmsBroker.setPersistent(false); + jmsBroker.setUseJmx(false); + jmsBroker.addConnector("tcp://localhost:61619"); + jmsBroker.start(); + + SCADomain scaDomain = SCADomain.newInstance("helloworldjmsservice.composite"); + + System.out.println("HelloWorld server started (press enter to shutdown)"); + System.in.read(); + + scaDomain.close(); + + jmsBroker.stop(); + System.out.println("HelloWorld server stopped"); + + } catch (IOException e) { + e.printStackTrace(); + } catch (Exception e) { + e.printStackTrace(); + } + } + +} diff --git a/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldService.java b/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldService.java new file mode 100644 index 0000000000..4b019b21bf --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldService.java @@ -0,0 +1,31 @@ +/* + * 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. + */ +package helloworld; + +import org.osoa.sca.annotations.Remotable; + +/** + * This is the business interface of the HelloWorld greetings service. + */ +@Remotable +public interface HelloWorldService { + + public String getGreetings(String name); +} + diff --git a/sandbox/event/samples/helloworld-service-jms/src/main/resources/definitions.xml b/sandbox/event/samples/helloworld-service-jms/src/main/resources/definitions.xml new file mode 100644 index 0000000000..8c881ab0bb --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/src/main/resources/definitions.xml @@ -0,0 +1,66 @@ + + + + + + + The general intent that a transport is available over which SOAP messages flow + + + + + + A JMS transport is required + + + + + + An HTTP transport is required + + + + + + + An HTTPS transport is required + + + + + + + org.apache.activemq.jndi.ActiveMQInitialContextFactory + tcp://localhost:61619 + QueueConnectionFactory + + + + + \ No newline at end of file diff --git a/sandbox/event/samples/helloworld-service-jms/src/main/resources/helloworldjmsservice.composite b/sandbox/event/samples/helloworld-service-jms/src/main/resources/helloworldjmsservice.composite new file mode 100644 index 0000000000..3135cdc320 --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/src/main/resources/helloworldjmsservice.composite @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/sandbox/event/samples/helloworld-service-jms/src/main/resources/wsdl/helloworld.wsdl b/sandbox/event/samples/helloworld-service-jms/src/main/resources/wsdl/helloworld.wsdl new file mode 100644 index 0000000000..3f9e00689e --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/src/main/resources/wsdl/helloworld.wsdl @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/event/samples/helloworld-service-jms/src/test/java/helloworld/HelloWorldJmsServerTestCaseOff.java b/sandbox/event/samples/helloworld-service-jms/src/test/java/helloworld/HelloWorldJmsServerTestCaseOff.java new file mode 100644 index 0000000000..7930f98716 --- /dev/null +++ b/sandbox/event/samples/helloworld-service-jms/src/test/java/helloworld/HelloWorldJmsServerTestCaseOff.java @@ -0,0 +1,60 @@ +/* + * 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. + */ +package helloworld; + +import static junit.framework.Assert.assertEquals; +import static junit.framework.Assert.assertNotNull; + +import java.io.IOException; + +import org.apache.tuscany.sca.host.embedded.SCADomain; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +/** + * Tests that the helloworld server is available + */ +public class HelloWorldJmsServerTestCaseOff { + + private SCADomain scaDomain; + + @Before + public void startServer() throws Exception { + // ActiveMQModuleActivator.startBroker(); + scaDomain = SCADomain.newInstance("helloworldjmsservice.composite"); + } + + @Test + public void testServiceCall() throws IOException { + HelloWorldService helloWorldService = + scaDomain.getService(HelloWorldService.class, "HelloWorldServiceComponent/HelloWorldService"); + assertNotNull(helloWorldService); + + assertEquals("Hello Smith", helloWorldService.getGreetings("Smith")); + } + + @After + public void stopServer() throws Exception { + if (scaDomain != null) { + scaDomain.close(); + } + } + +} -- cgit v1.2.3