From a40e527938d76ba71f211da7e327adb50384ba69 Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:26:33 +0000 Subject: Moving 1.x tags git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835157 13f79535-47bb-0310-9956-ffa450edef68 --- .../tags/1.0/samples/helloworld-bpel/README | 138 +++++++++++++++++ .../tags/1.0/samples/helloworld-bpel/pom.xml | 163 +++++++++++++++++++++ .../src/main/java/helloworld/BPELClient.java | 42 ++++++ .../helloworld-bpel/src/main/resources/deploy.xml | 30 ++++ .../src/main/resources/helloworld.bpel | 66 +++++++++ .../src/main/resources/helloworld.componentType | 30 ++++ .../src/main/resources/helloworld.composite | 29 ++++ .../src/main/resources/helloworld.wsdl | 82 +++++++++++ .../src/main/resources/log4j.properties | 34 +++++ .../java/helloworld/BPELHelloWorldTestCase.java | 59 ++++++++ 10 files changed, 673 insertions(+) create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/README create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/pom.xml create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/deploy.xml create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/log4j.properties create mode 100644 sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java (limited to 'sca-java-1.x/tags/1.0/samples/helloworld-bpel') diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/README b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/README new file mode 100644 index 0000000000..7ba1b3422e --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/README @@ -0,0 +1,138 @@ +Hello World BPEL Sample +====================================== +This sample demonstrates an SCA service implemented by a BPEL process. + +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, please +check the section to build and run the sample using maven. + +The sample will start the an embedded BPEL engine, deploy process and invoke it. + +Sample Overview +--------------- +The sample provides a single component that is wired to a service with a +web service binding. + +helloworld-bpel/ + src/ + main/ + java/ + helloworld/ + BPELClient.java - client application for + BEPELHelloWorldComponent + + resources/ + deploy.xml - ODE deployment descriptor + helloworld.bpel - helloworld bpel process + helloworld.componentType - helloworld bpel service description + helloworld.composite - the SCA assembly for this sample + helloworld.wsdl - the service description that describes + the bpel process + log4j.properties - logging configuration + + test/ + java/ + helloworld/ + BPELHelloWorldTestCase.java - JUnit test case + helloworld-bpel.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 +----------------------------------------- + +Ant script is not supported at the moment. + + +Building And Running The Sample Using Maven +------------------------------------------- +With either the binary or source distributions the sample can be built and run +using Maven as follows. When using Maven, a simple test is present that exercise +the same logic as the client to invoke the BPEl process. + +We first need to tweek the helloworld-bpel pom.xml in order to overcome a surefire +defect. See below the changes that need to be done on the helloworld-bpel\pom.xml + +Original: + + org.apache.maven.plugins + maven-surefire-plugin + 2.2 + + false + false + true + + + + +Updated: + + + org.apache.maven.plugins + maven-surefire-plugin + 2.2 + + false + false + true + + + +Now that you have the updated pom : + +cd helloworld-bpel +mvn + +You should see the following output from the test phase. + +- + +------------------------------------------------------- + T E S T S +------------------------------------------------------- +Running helloworld.BPELHelloWorldTestCase +Starting BPELHelloWorldComponent org.apache.tuscany.sca.core.assembly.RuntimeComponentImpl +INFO - GeronimoLog.info(79) | BPEL Server Started. +10:19:31,609 INFO [BpelServerImpl] BPEL Server Started. +Deploying : D:\dev\Opensource\Apache\Tuscany\source\java\sca\samples\helloworld-bpel\target\classes +D:\dev\Opensource\Apache\Tuscany\source\java\sca\samples\helloworld-bpel\target\classes +INFO - GeronimoLog.info(79) | Process {http://tuscany.apache.org/implementation/bpel/example/helloworld}HelloWorld-1 has been unregistered. +10:19:37,656 INFO [BpelServerImpl] Process {http://tuscany.apache.org/implementation/bpel/example/helloworld}HelloWorld-1 has been unregistered. +INFO - GeronimoLog.info(79) | Activated process {http://tuscany.apache.org/implementation/bpel/example/helloworld}HelloWorld-1. +10:19:38,312 INFO [BpelServerImpl] Activated process {http://tuscany.apache.org/implementation/bpel/example/helloworld}HelloWorld-1. +INFO - GeronimoLog.info(79) | Process {http://tuscany.apache.org/implementation/bpel/example/helloworld}HelloWorld-1 has been unregistered. +10:19:38,312 INFO [BpelServerImpl] Process {http://tuscany.apache.org/implementation/bpel/example/helloworld}HelloWorld-1 has been unregistered. +INFO - GeronimoLog.info(79) | Activated process {http://tuscany.apache.org/implementation/bpel/example/helloworld}HelloWorld-1. +10:19:38,453 INFO [BpelServerImpl] Activated process {http://tuscany.apache.org/implementation/bpel/example/helloworld}HelloWorld-1. +::message:: + +Status: RESPONSE +Response: + World +Stopping BPELHelloWorldComponent org.apache.tuscany.sca.core.assembly.RuntimeComponentImpl +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 18.031 sec + +Results : + +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0 + +[INFO] [jar:jar] +[INFO] Building jar: D:\dev\Opensource\Apache\Tuscany\source\java\sca\samples\helloworld-bpel\target\sample-helloworld-bpel.jar +[INFO] [install:install] +[INFO] Installing D:\dev\Opensource\Apache\Tuscany\source\java\sca\samples\helloworld-bpel\target\sample-helloworld-bpel.jar to C:\Documents and Settings\lresende\.m +2\repository\org\apache\tuscany\sca\sample-helloworld-bpel\1.1-incubating-SNAPSHOT\sample-helloworld-bpel-1.1-incubating-SNAPSHOT.jar +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESSFUL +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 1 minute 3 seconds +[INFO] Finished at: Tue Sep 18 10:19:41 PDT 2007 +[INFO] Final Memory: 24M/46M +[INFO] ------------------------------------------------------------------------ + + +This shows that the Junit test cases have run successfully. diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/pom.xml b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/pom.xml new file mode 100644 index 0000000000..4058eb1ae6 --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/pom.xml @@ -0,0 +1,163 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 1.0-incubating + ../../pom.xml + + sample-helloworld-bpel + Apache Tuscany SCA HelloWorld BPEL Sample + + + + apache.incubator + http://people.apache.org/repo/m2-incubating-repository + + + + + + org.apache.tuscany.sca + tuscany-host-embedded + 1.0-incubating + + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 1.0-incubating + runtime + + + + org.apache.tuscany.sca + tuscany-implementation-bpel + 1.0-incubating + runtime + + + + org.apache.tuscany.sdo + tuscany-sdo-impl + 1.0-incubating + + + + xerces + xercesImpl + 2.8.1 + + + + junit + junit + 4.2 + test + + + + + + ${artifactId} + + + org.apache.maven.plugins + maven-surefire-plugin + 2.2 + + false + false + true + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack + test-compile + + unpack + + + + + org.apache.ode + ode-dao-jpa-ojpa-derby + 1.1 + zip + true + ${project.build.directory}/test-classes/ + + + + + + + + org.apache.tuscany.sdo + tuscany-sdo-plugin + 1.0-incubating + + + generate-bpel-helloworld + generate-sources + + ${basedir}/src/main/resources/helloworld.wsdl + ${basedir}/target/wsdl2java-source + HelloWorld + true + true + true + + + generate + + + + + + org.apache.tuscany.sca + tuscany-maven-wsdl2java + 1.0-incubating + + + + + + ${basedir}/src/main/resources/helloworld.wsdl + + + + + generate + + + + + + + + diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java new file mode 100644 index 0000000000..68d66bfda5 --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java @@ -0,0 +1,42 @@ +/* + * 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.apache.tuscany.implementation.bpel.example.helloworld.HelloPortType; +import org.apache.tuscany.sca.host.embedded.SCADomain; + +/** + * Simple BPEL sample application invoking a helloworld + * + * @version $Rev$ $Date$ + */ +public class BPELClient { + public static void main(String[] args) throws Exception { + + SCADomain scaDomain = SCADomain.newInstance("helloworld.composite"); + HelloPortType bpelService = scaDomain.getService(HelloPortType.class, "BPELHelloWorldComponent"); + + String result = bpelService.hello("Hello"); + System.out.println(result); + + scaDomain.close(); + + } +} diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/deploy.xml b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/deploy.xml new file mode 100644 index 0000000000..571aa37d58 --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/deploy.xml @@ -0,0 +1,30 @@ + + + + + + true + + + + + diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel new file mode 100644 index 0000000000..e983899d76 --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + concat($tmpVar,' World') + + + + + + diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType new file mode 100644 index 0000000000..121064a475 --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType @@ -0,0 +1,30 @@ + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite new file mode 100644 index 0000000000..b4623b5c2d --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl new file mode 100644 index 0000000000..46cf381577 --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/log4j.properties b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/log4j.properties new file mode 100644 index 0000000000..aae9b90dea --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/main/resources/log4j.properties @@ -0,0 +1,34 @@ +# +# 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. +# + +# Set root logger level to WARN and its only appender to CONSOLE +log4j.rootLogger=INFO, CONSOLE + +# log4j properties to work with commandline tools. +log4j.category.org.mortbay=ERROR +log4j.category.org.hibernate.type=WARN +log4j.category.org.objectweb=INFO +log4j.category.org.apache.ode.sql=INFO +log4j.category.org.apache.ode.axis2=INFO +log4j.category.org.apache.ode.bpel.engine=INFO +log4j.category.org.apache.ode.daohib.bpel.CorrelatorDaoImpl=INFO +log4j.category.org.apache.ode.bpel.epr=INFO + +# Console appender +log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender +log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout +log4j.appender.CONSOLE.layout.ConversionPattern=%p - %C{1}.%M(%L) | %m%n \ No newline at end of file diff --git a/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java new file mode 100644 index 0000000000..f2f9a99153 --- /dev/null +++ b/sca-java-1.x/tags/1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java @@ -0,0 +1,59 @@ +/* + * 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 junit.framework.TestCase; + +import org.apache.tuscany.implementation.bpel.example.helloworld.HelloPortType; +import org.apache.tuscany.sca.host.embedded.SCADomain; + +/** + * Tests the BPEL service + * + * @version $Rev$ $Date$ + */ +public class BPELHelloWorldTestCase extends TestCase { + + private SCADomain scaDomain; + HelloPortType bpelService = null; + + /** + * @throws java.lang.Exception + */ + @Override + protected void setUp() throws Exception { + scaDomain = SCADomain.newInstance("helloworld.composite"); + bpelService = scaDomain.getService(HelloPortType.class, "BPELHelloWorldComponent"); + + } + + /** + * @throws java.lang.Exception + */ + @Override + protected void tearDown() throws Exception { + scaDomain.close(); + } + + public void testInvoke() { + String response = bpelService.hello("Hello"); + assertEquals("World", response); + } +} -- cgit v1.2.3