Author: lresende
Date: Tue Sep 18 12:29:38 2007
New Revision: 577023
URL: http://svn.apache.org/viewvc?rev=577023&view=rev
Log:
TUSCANY-1754 - Adding BPEL sample to branch
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/README
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/pom.xml
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/helloworld/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/deploy.xml
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/log4j.properties
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/helloworld/
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java
(with props)
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/resources/
Modified:
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/BPELImplementation.java
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationImpl.java
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/provider/BPELImplementationProvider.java
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
incubator/tuscany/branches/sca-java-1.0/samples/README
incubator/tuscany/branches/sca-java-1.0/samples/pom.xml
Modified:
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/BPELImplementation.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/BPELImplementation.java?rev=577023&r1=577022&r2=577023&view=diff
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/BPELImplementation.java
(original)
+++
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/BPELImplementation.java
Tue Sep 18 12:29:38 2007
@@ -30,19 +30,6 @@
public interface BPELImplementation extends Implementation {
/**
- * Builds the process configuration used by ODE to get deployment and
configuration
- * level information about a process.
- * @return
- */
- //ProcessConf getProcessConf();
-
- /**
- * Sets the implementation compiled process bytes
- * @param compiledProcess serialized compiled process
- */
- //void setCompiledProcess(byte[] compiledProcess);
-
- /**
* Get the BPEL process Name
*/
QName getProcess();
@@ -52,4 +39,16 @@
* @param processName process QName
*/
void setProcess(QName processName);
-}
+
+ /**
+ * Get the BPEL process definition
+ * @return
+ */
+ BPELProcessDefinition getProcessDefinition();
+
+ /**
+ * Set the BPEL process definition
+ * @param processDefinition
+ */
+ void setProcessDefinition(BPELProcessDefinition processDefinition);
+}
\ No newline at end of file
Modified:
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationImpl.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationImpl.java?rev=577023&r1=577022&r2=577023&view=diff
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationImpl.java
(original)
+++
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationImpl.java
Tue Sep 18 12:29:38 2007
@@ -41,6 +41,7 @@
import org.apache.tuscany.sca.assembly.Service;
import org.apache.tuscany.sca.assembly.impl.ComponentTypeImpl;
import org.apache.tuscany.sca.implementation.bpel.BPELImplementation;
+import org.apache.tuscany.sca.implementation.bpel.BPELProcessDefinition;
import org.apache.tuscany.sca.interfacedef.wsdl.WSDLFactory;
import org.w3c.dom.Node;
@@ -51,9 +52,9 @@
*/
public class BPELImplementationImpl extends ComponentTypeImpl implements
BPELImplementation {
- private Service _bpelService;
private QName _processName;
- private byte[] _compiledProcess;
+ private BPELProcessDefinition _processDefinition;
+
private boolean unresolved;
/**
@@ -64,10 +65,6 @@
}
- public void setCompiledProcess(byte[] compiledProcess) {
- _compiledProcess = compiledProcess;
- }
-
public QName getProcess() {
return _processName;
}
@@ -76,8 +73,12 @@
_processName = processName;
}
- public ProcessConf getProcessConf() {
- return null;
+ public BPELProcessDefinition getProcessDefinition() {
+ return this._processDefinition;
+ }
+
+ public void setProcessDefinition(BPELProcessDefinition processDefinition) {
+ this._processDefinition = processDefinition;
}
@Override
@@ -137,7 +138,7 @@
}
public InputStream getCBPInputStream() {
- return new ByteArrayInputStream(_compiledProcess);
+ return null; //new ByteArrayInputStream(_compiledProcess);
}
public String getBpelDocument() {
Modified:
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java?rev=577023&r1=577022&r2=577023&view=diff
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java
(original)
+++
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java
Tue Sep 18 12:29:38 2007
@@ -110,6 +110,8 @@
throw new ContributionResolveException("Can't find BPEL
Process : " + processDefinition.getName());
}
+ impl.setProcessDefinition(processDefinition);
+
//resolve component type
mergeComponentType(resolver, impl);
Modified:
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/provider/BPELImplementationProvider.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/provider/BPELImplementationProvider.java?rev=577023&r1=577022&r2=577023&view=diff
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/provider/BPELImplementationProvider.java
(original)
+++
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/provider/BPELImplementationProvider.java
Tue Sep 18 12:29:38 2007
@@ -82,7 +82,8 @@
odeServer.init();
}
- URL deployURL =
getClass().getClassLoader().getResource("deploy.xml");
+ URL deployURL =
this.implementation.getProcessDefinition().getLocation();
+
File deploymentDir = new
File(deployURL.toURI().getPath()).getParentFile();
System.out.println("Deploying : " + deploymentDir.toString());
System.out.println(deploymentDir);
Modified:
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor?rev=577023&r1=577022&r2=577023&view=diff
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
(original)
+++
incubator/tuscany/branches/sca-java-1.0/modules/implementation-bpel/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
Tue Sep 18 12:29:38 2007
@@ -16,5 +16,4 @@
# under the License.
# Implementation class for the artifact processor extension
-org.apache.tuscany.sca.implementation.bpel.impl.BPELImplementationProcessor;qname=http://www.osoa.org/xmlns/sca/1.0#implementation.bpel,model=org.apache.tuscany.sca.implementation.bpel.BPELImplementation
-org.apache.tuscany.sca.implementation.bpel.impl.BPELDocumentProcessor;qname=http://schemas.xmlsoap.org/ws/2004/03/business-process#process,model=org.apache.tuscany.sca.implementation.bpel.BPELProcessDefinition
\ No newline at end of file
+org.apache.tuscany.sca.implementation.bpel.impl.BPELImplementationProcessor;qname=http://www.osoa.org/xmlns/sca/1.0#implementation.bpel,model=org.apache.tuscany.sca.implementation.bpel.BPELImplementation
\ No newline at end of file
Modified: incubator/tuscany/branches/sca-java-1.0/samples/README
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/README?rev=577023&r1=577022&r2=577023&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.0/samples/README (original)
+++ incubator/tuscany/branches/sca-java-1.0/samples/README Tue Sep 18 12:29:38
2007
@@ -36,6 +36,8 @@
feed-aggregator - Demonstrates using the ATOM binding
feed-aggregator-webapp - feed-aggregator running in webapp
+helloworld-bpel - Demonstrates an SCA component invoking a BPEL
process in a composition
+
helloworld-dojo-webapp - An SCA application that exposes a service using
JSONRPC and a client using the Dojo toolkit
helloworld-jsonrpc-webapp- helloworld using jsonrpc binding
Added: incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/README
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/README?rev=577023&view=auto
==============================================================================
--- incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/README
(added)
+++ incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/README Tue
Sep 18 12:29:38 2007
@@ -0,0 +1,140 @@
+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, navigate
+to this sample directory and do:
+
+ant run
+
+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:
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <useFile>false</useFile>
+ <trimStackTrace>false</trimStackTrace>
+ <skip>true</skip>
+
<!--useSystemClassLoader>true</useSystemClassLoader-->
+ </configuration>
+ </plugin>
+
+Updated:
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <useFile>false</useFile>
+ <trimStackTrace>false</trimStackTrace>
+
<useSystemClassLoader>true</useSystemClassLoader>
+ </configuration>
+ </plugin>
+
+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:: <?xml version="1.0" encoding="UTF-8"?>
+<message><TestPart><hello
xmlns="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"/></TestPart></message>
+Status: RESPONSE
+Response: <?xml version="1.0" encoding="UTF-8"?>
+<message><TestPart><hello
xmlns="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl">
World</hello></TestPart></message>
+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.
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/README
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/README
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/pom.xml?rev=577023&view=auto
==============================================================================
--- incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/pom.xml
(added)
+++ incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/pom.xml Tue
Sep 18 12:29:38 2007
@@ -0,0 +1,163 @@
+<?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.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca</artifactId>
+ <version>1.0-incubating-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <artifactId>sample-helloworld-bpel</artifactId>
+ <name>Apache Tuscany SCA HelloWorld BPEL Sample</name>
+
+ <repositories>
+ <repository>
+ <id>apache.incubator</id>
+ <url>http://people.apache.org/repo/m2-incubating-repository</url>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-host-embedded</artifactId>
+ <version>1.0-incubating-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-java-runtime</artifactId>
+ <version>1.0-incubating-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-bpel</artifactId>
+ <version>1.0-incubating-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sdo</groupId>
+ <artifactId>tuscany-sdo-impl</artifactId>
+ <version>1.0-incubating-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.2</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <useFile>false</useFile>
+ <trimStackTrace>false</trimStackTrace>
+ <skip>true</skip>
+
<!--useSystemClassLoader>true</useSystemClassLoader-->
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>unpack</id>
+ <phase>test-compile</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+
<groupId>org.apache.ode</groupId>
+
<artifactId>ode-dao-jpa-ojpa-derby</artifactId>
+
<version>1.1</version>
+
<type>zip</type>
+
<overWrite>true</overWrite>
+
<outputDirectory>${project.build.directory}/test-classes/</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.tuscany.sdo</groupId>
+ <artifactId>tuscany-sdo-plugin</artifactId>
+ <version>1.0-incubating-SNAPSHOT</version>
+ <executions>
+ <execution>
+
<id>generate-bpel-helloworld</id>
+ <phase>generate-sources</phase>
+ <configuration>
+
<schemaFile>${basedir}/src/main/resources/helloworld.wsdl</schemaFile>
+
<targetDirectory>${basedir}/target/wsdl2java-source</targetDirectory>
+
<prefix>HelloWorld</prefix>
+
<noNotification>true</noNotification>
+
<noContainer>true</noContainer>
+
<noUnsettable>true</noUnsettable>
+ </configuration>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-maven-wsdl2java</artifactId>
+ <version>1.1-incubating-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <configuration>
+ <wsdlFiles>
+ <wsdlFile>
+
<fileName>${basedir}/src/main/resources/helloworld.wsdl</fileName>
+ </wsdlFile>
+ </wsdlFiles>
+ </configuration>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/pom.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java?rev=577023&view=auto
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java
(added)
+++
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java
Tue Sep 18 12:29:38 2007
@@ -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();
+
+ }
+}
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/java/helloworld/BPELClient.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/deploy.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/deploy.xml?rev=577023&view=auto
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/deploy.xml
(added)
+++
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/deploy.xml
Tue Sep 18 12:29:38 2007
@@ -0,0 +1,30 @@
+<!--
+ ~ 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.
+ -->
+<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
+
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/helloworld"
+
xmlns:wns="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl">
+
+
+ <process name="tns:HelloWorld">
+ <active>true</active>
+ <provide partnerLink="helloPartnerLink">
+ <service name="wns:HelloService" port="HelloPort"/>
+ </provide>
+ </process>
+</deploy>
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/deploy.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/deploy.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/deploy.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel?rev=577023&view=auto
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel
(added)
+++
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.bpel
Tue Sep 18 12:29:38 2007
@@ -0,0 +1,66 @@
+<!--
+ ~ 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.
+ -->
+<process name="HelloWorld"
+
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/helloworld"
+ xmlns:bpws="http://schemas.xmlsoap.org/ws/2004/03/business-process/"
+ xmlns="http://schemas.xmlsoap.org/ws/2004/03/business-process/"
+
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/helloworld"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+
xmlns:test="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
+ queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+ expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
+
+ <import location="helloworld.wsdl"
importType="http://schemas.xmlsoap.org/wsdl/"
+
namespace="file:///home/mriou/dev/projects/ode/distro-axis2/src/examples/HelloWorld2/HelloWorld2.wsdl"/>
+
+ <partnerLinks>
+ <partnerLink name="helloPartnerLink"
partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
+ </partnerLinks>
+
+ <variables>
+ <variable name="myVar" messageType="test:HelloMessage"/>
+ <variable name="tmpVar" type="xsd:string"/>
+ </variables>
+
+ <sequence>
+ <receive
+ name="start"
+ partnerLink="helloPartnerLink"
+ portType="test:HelloPortType"
+ operation="hello"
+ variable="myVar"
+ createInstance="yes"/>
+
+ <assign name="assign1">
+ <copy>
+ <from variable="myVar" part="TestPart"/>
+ <to variable="tmpVar"/>
+ </copy>
+ <copy>
+ <from>concat($tmpVar,' World')</from>
+ <to variable="myVar" part="TestPart"/>
+ </copy>
+ </assign>
+ <reply name="end"
+ partnerLink="helloPartnerLink"
+ portType="test:HelloPortType"
+ operation="hello"
+ variable="myVar"/>
+ </sequence>
+</process>
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType?rev=577023&view=auto
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType
(added)
+++
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType
Tue Sep 18 12:29:38 2007
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="ASCII"?>
+<!--
+ * 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.
+-->
+<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ xmlns:wsdli="http://www.w3.org/2006/01/wsdl-instance"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+ <service name="HelloService">
+ <interface.wsdl
interface="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl#wsdl.interface(HelloPortType)"
/>
+ </service>
+
+</componentType>
+
\ No newline at end of file
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.componentType
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite?rev=577023&view=auto
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite
(added)
+++
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite
Tue Sep 18 12:29:38 2007
@@ -0,0 +1,29 @@
+<?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.
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://bpel"
+
xmlns:hns="http://tuscany.apache.org/implementation/bpel/example/helloworld"
+ name="bpel">
+
+ <component name="BPELHelloWorldComponent">
+ <implementation.bpel process="hns:HelloWorld"/>
+ </component>
+
+</composite>
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.composite
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl?rev=577023&view=auto
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
(added)
+++
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
Tue Sep 18 12:29:38 2007
@@ -0,0 +1,82 @@
+<?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
+
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+ xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+ xmlns:bpws="http://schemas.xmlsoap.org/ws/2004/03/business-process/"
+ xmlns:plnk="http://schemas.xmlsoap.org/ws/2004/03/partner-link/">
+
+ <wsdl:types>
+ <schema elementFormDefault="qualified"
+
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
+ xmlns="http://www.w3.org/2001/XMLSchema">
+
+ <element name="hello">
+ <complexType>
+ <sequence>
+ <element name="message" type="xsd:string"/>
+ </sequence>
+ </complexType>
+ </element>
+ </schema>
+ </wsdl:types>
+
+ <wsdl:message name="HelloMessage">
+ <wsdl:part element="tns:hello" name="TestPart"/>
+ </wsdl:message>
+
+ <wsdl:portType name="HelloPortType">
+ <wsdl:operation name="hello">
+ <wsdl:input message="tns:HelloMessage" name="TestIn"/>
+ <wsdl:output message="tns:HelloMessage" name="TestOut"/>
+ </wsdl:operation>
+ </wsdl:portType>
+
+
+ <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
+ <wsdlsoap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"/>
+ <wsdl:operation name="hello">
+ <wsdlsoap:operation soapAction=""/>
+ <wsdl:input name="TestIn">
+ <wsdlsoap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output name="TestOut">
+ <wsdlsoap:body use="literal"/>
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:binding>
+
+ <wsdl:service name="HelloService">
+ <wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
+ <soap:address
location="http://localhost:8085/ode/processes/helloWorld"/>
+ </wsdl:port>
+ </wsdl:service>
+
+ <plnk:partnerLinkType name="HelloPartnerLinkType">
+ <plnk:role name="me" portType="tns:HelloPortType"/>
+ <plnk:role name="you" portType="tns:HelloPortType"/>
+ </plnk:partnerLinkType>
+</wsdl:definitions>
\ No newline at end of file
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/log4j.properties
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/log4j.properties?rev=577023&view=auto
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/log4j.properties
(added)
+++
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/log4j.properties
Tue Sep 18 12:29:38 2007
@@ -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
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/log4j.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/log4j.properties
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/main/resources/log4j.properties
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java?rev=577023&view=auto
==============================================================================
---
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java
(added)
+++
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java
Tue Sep 18 12:29:38 2007
@@ -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);
+ }
+}
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/branches/sca-java-1.0/samples/helloworld-bpel/src/test/java/helloworld/BPELHelloWorldTestCase.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Modified: incubator/tuscany/branches/sca-java-1.0/samples/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/pom.xml?rev=577023&r1=577022&r2=577023&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.0/samples/pom.xml (original)
+++ incubator/tuscany/branches/sca-java-1.0/samples/pom.xml Tue Sep 18 12:29:38
2007
@@ -52,6 +52,7 @@
<module>databinding-echo</module>
<module>feed-aggregator</module>
<module>feed-aggregator-webapp</module>
+ <module>helloworld-bpel</module>
<module>helloworld-dojo-webapp</module>
<module>helloworld-jsonrpc-webapp</module>
<module>helloworld-ws-service</module>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]