From fdd5b43d3c139cf2cbd1655d2efbfaf9032a5b5e Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:14:18 +0000 Subject: Moving 1.x branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835145 13f79535-47bb-0310-9956-ffa450edef68 --- .../samples/helloworld-service-jms/README | 101 --------------- .../samples/helloworld-service-jms/build.xml | 72 ----------- .../helloworld-service-jms/helloworld-service.png | Bin 9455 -> 0 bytes .../helloworld-service-jms/helloworld-service.svg | 139 --------------------- .../samples/helloworld-service-jms/pom.xml | 96 -------------- .../src/main/java/helloworld/HelloWorldImpl.java | 34 ----- .../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, 789 deletions(-) delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/README delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/build.xml delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/helloworld-service.png delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/helloworld-service.svg delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/pom.xml delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldServer.java delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldService.java delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/definitions.xml delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/helloworldjmsservice.composite delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/wsdl/helloworld.wsdl delete mode 100644 branches/sca-java-1.5.1/samples/helloworld-service-jms/src/test/java/helloworld/HelloWorldJmsServerTestCaseOff.java (limited to 'branches/sca-java-1.5.1/samples/helloworld-service-jms') diff --git a/branches/sca-java-1.5.1/samples/helloworld-service-jms/README b/branches/sca-java-1.5.1/samples/helloworld-service-jms/README deleted file mode 100644 index 49feabaa07..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/README +++ /dev/null @@ -1,101 +0,0 @@ -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/branches/sca-java-1.5.1/samples/helloworld-service-jms/build.xml b/branches/sca-java-1.5.1/samples/helloworld-service-jms/build.xml deleted file mode 100644 index a44c71843e..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/build.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/branches/sca-java-1.5.1/samples/helloworld-service-jms/helloworld-service.png b/branches/sca-java-1.5.1/samples/helloworld-service-jms/helloworld-service.png deleted file mode 100644 index ef27c71f54..0000000000 Binary files a/branches/sca-java-1.5.1/samples/helloworld-service-jms/helloworld-service.png and /dev/null differ diff --git a/branches/sca-java-1.5.1/samples/helloworld-service-jms/helloworld-service.svg b/branches/sca-java-1.5.1/samples/helloworld-service-jms/helloworld-service.svg deleted file mode 100644 index dd7a9dd87d..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/helloworld-service.svg +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - helloworld - - HelloWorldServiceComponent - HelloWorldServiceJMS - diff --git a/branches/sca-java-1.5.1/samples/helloworld-service-jms/pom.xml b/branches/sca-java-1.5.1/samples/helloworld-service-jms/pom.xml deleted file mode 100644 index f6d5c1f83d..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/pom.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - 4.0.0 - - org.apache.tuscany.sca - tuscany-sca - 1.5.1-SNAPSHOT - ../../pom.xml - - sample-helloworld-service-jms - Apache Tuscany SCA Sample HelloWorld Service JMS - - - - apache.incubator - http://people.apache.org/repo/m2-incubating-repository - - - - - - org.apache.tuscany.sca - tuscany-host-embedded - 1.5.1-SNAPSHOT - compile - - - - org.apache.tuscany.sca - tuscany-implementation-java-runtime - 1.5.1-SNAPSHOT - runtime - - - - org.apache.tuscany.sca - tuscany-binding-jms-runtime - 1.5.1-SNAPSHOT - runtime - - - - org.apache.tuscany.sca - tuscany-host-jms-asf - 1.5.1-SNAPSHOT - - - - junit - junit - 4.5 - test - - - - org.apache.activemq - activemq-all - 5.2.0 - - - org.apache.activemq - activemq-web-demo - - - - - backport-util-concurrent - backport-util-concurrent - 3.1 - - - - - - ${artifactId} - - - diff --git a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java b/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java deleted file mode 100644 index a81a0d79ac..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * 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) { - System.out.println("Got greeting " + name + " at server"); - return "Hello " + name; - } - -} diff --git a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldServer.java b/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldServer.java deleted file mode 100644 index d4ea391a00..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldServer.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * 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/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldService.java b/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldService.java deleted file mode 100644 index 4b019b21bf..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldService.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * 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/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/definitions.xml b/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/definitions.xml deleted file mode 100644 index 8c881ab0bb..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/definitions.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - 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/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/helloworldjmsservice.composite b/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/helloworldjmsservice.composite deleted file mode 100644 index 3135cdc320..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/helloworldjmsservice.composite +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/wsdl/helloworld.wsdl b/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/wsdl/helloworld.wsdl deleted file mode 100644 index 3f9e00689e..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/main/resources/wsdl/helloworld.wsdl +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/test/java/helloworld/HelloWorldJmsServerTestCaseOff.java b/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/test/java/helloworld/HelloWorldJmsServerTestCaseOff.java deleted file mode 100644 index 7930f98716..0000000000 --- a/branches/sca-java-1.5.1/samples/helloworld-service-jms/src/test/java/helloworld/HelloWorldJmsServerTestCaseOff.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * 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