Mail Archive Home | orchestra-commits List | July 2007 Index
| <-- Date Index --> | <-- Thread Index --> |
+make tests available with maven2 +fix some paths directory bugs
--- branches/Orchestra_4_0/.classpath 2007-07-24 08:47:17 UTC (rev 706)
+++ branches/Orchestra_4_0/.classpath 2007-07-25 14:52:02 UTC (rev 707)
@@ -4,7 +4,6 @@
<classpathentry output="target/test-classes" kind="src" path="src/test/java"/>
<classpathentry kind="src" path="src/demos"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
--- branches/Orchestra_4_0/README.txt 2007-07-24 08:47:17 UTC (rev 706)
+++ branches/Orchestra_4_0/README.txt 2007-07-25 14:52:02 UTC (rev 707)
@@ -12,6 +12,14 @@
These packages are dowloaded only once, and will be stored in your local Maven
repository.
+You may have to first configure the proxy of the JVM in the AxisInvoker class:
+src/main/java/org/objectweb/orchestra/webservices/axis/AxisInvoker.java
+
+ //System.getProperties().put("http.proxyHost", "intra0");
+ //System.getProperties().put("http.proxyPort", "8080");
+ //System.getProperties().put("http.nonProxyHosts", "localhost|*.frec.bull.fr");
+
+
To compile the project:
>mvn compile : compiles all sources
>mvn install : executes the JUnit tests, and creates the .jar file from the
@@ -21,9 +29,10 @@
Orchestra.
You may skip the unit testing step of "mvn install" and "mvn assembly:assembly"
-with the Maven "-Dmaven.test.skip=true" option.
+You can skip the test with the Maven "-Dmaven.test.skip=true" option.
+
///////////////////////////////////////
//// DEPLOYING ORCHESTRA ON AXIS ////
///////////////////////////////////////
--- branches/Orchestra_4_0/pom.xml 2007-07-24 08:47:17 UTC (rev 706)
+++ branches/Orchestra_4_0/pom.xml 2007-07-25 14:52:02 UTC (rev 707)
@@ -282,6 +282,8 @@
</configuration>
</plugin>
+
+ <!-- COMPILER -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@@ -289,44 +291,45 @@
<configuration>
<source>1.5</source>
<target>1.5</target>
+ <includes>
+ <include>**/*.java</include>
+ </includes>
</configuration>
+
</plugin>
+
+
+ <!-- JUNIT TEST -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
<configuration>
- <!-- <includes>
- <include>**/*CopyTest.java</include>
- </includes> -->
- <excludes>
- <exclude>
- **/BpelXmlParseResultForTest.java
- </exclude>
- <exclude>
- **/BpelXmlParseForTest.java
- </exclude>
- <exclude>**/Test.java</exclude>
- <exclude>**/TestUtil.java</exclude>
- </excludes>
+ <includes>
+ <include>
+ org/objectweb/orchestra/test/BpelTests.java
+ </include>
+ </includes>
+
</configuration>
</plugin>
</plugins>
</pluginManagement>
- <resources>
+
+
+
+
+
+<resources>
+
<resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- <excludes>
- <exclude>**/*.jar</exclude>
- </excludes>
+ <directory>src/main/java</directory>
+ <includes>
+ <include>org/objectweb/orchestra/parsing/schemas/*</include>
+ </includes>
</resource>
+
</resources>
- <testResources>
- <testResource>
- <directory>src/test/resources</directory>
- </testResource>
- </testResources>
</build>
<developers>
--- branches/Orchestra_4_0/src/demos/build.xml 2007-07-24 08:47:17 UTC (rev 706)
+++ branches/Orchestra_4_0/src/demos/build.xml 2007-07-25 14:52:02 UTC (rev 707)
@@ -14,14 +14,12 @@
<property name="orchestra.home" value="${env.ORCHESTRA_HOME}"/>
<property name="orchestra.lib" value="${orchestra.home}/lib"/>
- <echo message="CATALINA_HOME : '${env.CATALINA_HOME}'"/>
-
-
<!--Classpath definition-->
<path id="base.path">
<pathelement path="${classpath}"/>
+ <pathelement path="."/>
<fileset dir="${orchestra.lib}">
<include name="**/*.jar"/>
</fileset>
--- branches/Orchestra_4_0/src/demos/hello/HelloCall.java 2007-07-24 08:47:17 UTC (rev 706)
+++ branches/Orchestra_4_0/src/demos/hello/HelloCall.java 2007-07-25 14:52:02 UTC (rev 707)
@@ -1,5 +1,4 @@
package hello;
-import java.util.Vector;
import javax.xml.namespace.QName;
import javax.xml.parsers.DocumentBuilder;
@@ -67,7 +66,7 @@
Object[] params={new SOAPBodyElement(rootElement)};
Object result=call.invoke(params);
- System.out.println("Sent 'Stan!', got :\n'" + result + "'");
+ System.out.println("Sent 'Stan', got :\n'" + result + "'");
} catch (Exception e) {
--- branches/Orchestra_4_0/src/demos/hello/README.txt 2007-07-24 08:47:17 UTC (rev 706)
+++ branches/Orchestra_4_0/src/demos/hello/README.txt 2007-07-25 14:52:02 UTC (rev 707)
@@ -1,3 +1,4 @@
+
This process is a hello process:
It takes a name as an input parameter, and returns a string "hello"+name.
@@ -2,46 +3,21 @@
-Here is a list of things to do to launch the process:
+To execute this part, the engine must be already started (cf README of $ORCHESTRA_HOME directory).
-1 - Install a Tomcat container (5.5.17) and set the CATALINA_HOME environment
- variable to this directory.
+The HelloDeploy class deploy the Hello process in the ProcessDeployer.
+It can then be called by the HelloCall class, wich make a simple call of the hello process.
-2 - Then create a CATALINA_BASE directory (copy conf, logs, shared, temp,
- webapps and work directories from CATALINA_HOME) and set the CATALINA_BASE
- environment variable.
-3 - Download the axis 1.4 release. Unzip the downloaded archive (this will
- create an axis-1.4 directory). Now we will call this directory AXIS_HOME.
+You can deploy and test this process with the foolowing commands
+(the ProcessDeployer must have been launched):
-4 - Copy the AXIS_HOME/webapps/axis directory to the CATALINA_BASE/webapps
- directory.
-5 - Copy Orchestra_4_0/src/main/java/org/objectweb/orchestra/webservices/axis/ArchiveLoader.jws
- to the CATALINA_BASE/webapps/axis directory.
+***The hello demo:***
+In $ORCHESTRA_HOME/demos
-6 - Copy Orchestra_4_0/orchestra_4_0.jar to CATALINA_BASE/webapps/axis/WEB-INF/lib.
- Copy Orchestra_4_0/src/main/resources/xercesImpl.jar to CATALINA_BASE/webapps/axis/WEB-INF/lib.
- Copy Orchestra_4_0/src/main/resources/xsom.jar to CATALINA_BASE/webapps/axis/WEB-INF/lib.
+Deploy the hello process.
+ >ant deployHello
+Test the hello process
+ >ant callHello
-7 - Configure the tomcat container catalina.policy file to allow RMI connections
- (located in $CATALINA_BASE/conf/catalina.policy).
- For example, only to be sure that the test works fine, you may want to allow
- all permissions. To do so, insert the following line in the policy file:
- grant {
- permission java.security.AllPermission;
- };
-
-8 - Launch tomcat with the security option:
- $CATALINA_HOME/bin/startup.sh -security
-
-9 - Compile and launch the HelloDeploy example. The HelloDeploy example must be
- launched with the following argument for the JVM:
- java -Djava.security.policy=server.policy
-
-10 - The process should be deployed. You can test it at the following url:
- http://localhost:8080/axis/services/helloPT?method=sayHello&name=World
-
-
-
- => It should work fine :-)
--- branches/Orchestra_4_0/src/demos/weather2/README.txt 2007-07-24 08:47:17 UTC (rev 706)
+++ branches/Orchestra_4_0/src/demos/weather2/README.txt 2007-07-25 14:52:02 UTC (rev 707)
@@ -3,9 +3,9 @@
The location is a city, followed by the name of the country. No blank are allowed.
"Grenoble,France"=>right
"Grenoble, France"=>wrong
+
This process uses an external web service:
http://www.webservicex.net/globalweather.asmx
-
which take a 2 parameters: a city and a country, and return the meteo of this location, if found.
This web service uses the DOCUMENT style, whith a LITERAL use.
@@ -13,45 +13,29 @@
client for this webservice.
The process created uses also a DOCUMENT/LITERAL style.
-Here is a list of things to do to launch the process:
-1 - Install a Tomcat container (5.5.17) and set the CATALINA_HOME environment
- variable to this directory.
+To execute this part, the engine must be already started (cf README of $ORCHESTRA_HOME directory).
-2 - Then create a CATALINA_BASE directory (copy conf, logs, shared, temp,
- webapps and work directories from CATALINA_HOME) and set the CATALINA_BASE
- environment variable.
-3 - Download the axis 1.4 release. Unzip the downloaded archive (this will
- create an axis-1.4 directory). Now we will call this directory AXIS_HOME.
+The Weather2Deploy can be called to deploy the Weather2 process in the ProcessDeployer.
-4 - Copy the AXIS_HOME/webapps/axis directory to the CATALINA_BASE/webapps
- directory.
+You can deploy and test this process with the foolowing commands
+(the ProcessDeployer must have been launched):
-5 - Copy Orchestra_4_0/src/main/java/org/objectweb/orchestra/webservices/axis/ArchiveLoader.jws
- to the CATALINA_BASE/webapps/axis directory.
-6 - Copy Orchestra_4_0/orchestra_4_0.jar to CATALINA_BASE/webapps/axis/WEB-INF/lib.
- Copy Orchestra_4_0/src/main/resources/xercesImpl.jar to CATALINA_BASE/webapps/axis/WEB-INF/lib.
- Copy Orchestra_4_0/src/main/resources/xsom.jar to CATALINA_BASE/webapps/axis/WEB-INF/lib.
+***The weather2 demo:***
+In $ORCHESTRA_HOME/demos
-7 - Configure the tomcat container catalina.policy file to allow RMI connections
- (located in $CATALINA_BASE/conf/catalina.policy).
- For example, only to be sure that the test works fine, you may want to allow
- all permissions. To do so, insert the following line in the policy file:
- grant {
- permission java.security.AllPermission;
- };
+Deploy the weather2 process.
+ >ant deployWeather2
-8 - Launch tomcat with the security option:
- $CATALINA_HOME/bin/startup.sh -security
+Call the weather2 process and try for instance with the weather in Grenoble.
+You must have a network connection.
+ >ant callWeather2
-9 - Compile and launch the HelloDeploy example. The HelloDeploy example must be
- launched with the following argument for the JVM:
- java -Djava.security.policy=server.policy
-10 - The process should be deployed. You can test it with Client given in the demo: Weather2Call.
- => It should work fine :-)
+
+
(Binary files differ)
(Binary files differ)
(Binary files differ)
(Binary files differ)
(Binary files differ)
(Binary files differ)
--- branches/Orchestra_4_0/src/logs/orchestra.trace 2007-07-24 08:47:17 UTC (rev 706)
+++ branches/Orchestra_4_0/src/logs/orchestra.trace 2007-07-25 14:52:02 UTC (rev 707)
@@ -0,0 +1,45860 @@
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++A new message is arrived. We look if somebody is waiting for this message.
++Creation of a new Environment in the runTime
++No instance is waiting for this message.
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++No instance is waiting for this message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++A new message is arrived. We look if somebody is waiting for this message.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++No instance is waiting for this message.
++New message received for the activity :receive2
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new message is arrived. We look if somebody is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++No instance is waiting for this message.
++New message received for the activity :receive2
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA000110: In the from-spec and to-spec of the partnerLink variant of <assign> the value of the partnerLink attribute must refer to an existing partnerLink defined in an enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
++Executing copy
++Executing copy
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=globalSequence
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :getVariablePropertyReceive
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Beginning invoke #3...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Beginning invoke #6...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Beginning invoke #9...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive4
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Beginning invoke #4...
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #8...
++Executing copy
++Executing copy
++Executing copy
++One-way invoke complete.
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Beginning invoke #12...
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Beginning invoke #17...
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Executing copy
++Request/response invoke complete.
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveComplex
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receive1
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive2
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receive3
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically valid.
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :receiveWithoutFromParts
++Executing assign
++Executing copy
++Execute Reply activity
++Execute Receive activity
++An activity is asking for a message.
++An activity is waiting for a message
++A new message is arrived. We look if somebody is waiting for this message.
++New message received for the activity :receiveWithFromParts
++Executing assign
++Executing copy
++Executing copy
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #2):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in activity Reply (activityIdf #4):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
++A new message is arrived. We look if somebody is waiting for this message.
++No instance is waiting for this message.
++A new instance of the process is created.
++Creation of a new Environment in the runTime
++Execution of sequence name=null
++Execute Receive activity
++An activity is asking for a message.
++New message received for the activity :null
++Executing assign
++Executing copy
++Execute Reply activity
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00016: A partnerLink MUST specify the myRole or the partnerRole, or both.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00018: The name of a partnerLink MUST be unique among the names of all partnerLinks defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element PartnerLink:
+ Error SA00017: The initializePartnerRole attribute MUST NOT be used on a partnerLink that does not have a partner role.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00022: A WS-BPEL process definition MUST NOT be accepted for processing if it defines two or more propertyAliases for the same property name and WS-BPEL variable type.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00023: The name of a variable MUST be unique among the names of all variables defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Variable:
+ Error SA00025: The messageType, type or element attributes are used to specify the type of the variable. Exactly one of these attributes MUST be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00033: The XPath _expression_ in <to> MUST begin with an XPath VariableReference.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element To:
+ Error SA00034: When the variable used in <from> or <to> is defined using XML Schema types (simple or complex) or element, the part attribute MUST NOT be used.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00035: In the from-spec of the partnerLink variant of <assign> the value "myRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute myRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element From:
+ Error SA00036: In the to-spec of the partnerLink variant of <assign> the value "partnerRole" for attribute endpointReference is only permitted when the partnerLink specifies the attribute partnerRole.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Literal:
+ Error SA00038: The literal from-spec variant returns values as if it were a from-spec that selects the children of the <literal> element in the WS-BPEL source code. The return value MUST be a single EII or Text Information Item (TII) only.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Copy:
+ Error SA00043: For a copy operation to be valid, the data referred to by the from-spec and the to-spec MUST be of compatible types.The following situations are considered type incompatible:
+ =>the selection results of both the from-spec and the to-spec are variables of a WSDL message type, and the two variables are not of the same WSDL message type (two WSDL message types are the same if their QNames are equal).
+ =>the selection result of the from-spec is a variable of a WSDL message type and that of the to-spec is not, or vice versa (parts of variables, selections of variable parts, or endpoint references cannot be assigned to/from variables of WSDL message types directly).
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00044: The name of a <correlationSet> MUST be unique among the names of all <correlationSet>defined within the same immediately enclosing scope.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element CorrelationSet:
+ Error SA000108: Properties used in the CorrelationSet must refer to an existing property of the Wsdl.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element CorrelationSet:
+ Error SA00045: Properties used in a correlationSet MUST be defined using XML Schema simple types.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Invoke (activityIdf #3):
+ Error SA00046: The pattern attribute used in <correlation> within <invoke> is required for request-response operations, and disallowed when a one-way operation is invoked.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically valid.
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Reply (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <scope>, <flow> and <sequence> MUST NOT be performed prior to or simultaneously with start activities.
+
+=> Static analysis: the process is semantically incorrect.
+The following errors have been detected, please check the BPEL 2.0 standard for reference:
+
+- in activity Receive (activityIdf #1):
+ Error SA00058: In a <receive> or <reply> activity, the variable referenced by the variable attribute MUST be a messageType variable whose QName matches the QName of input (for <receive>) or output (for <reply>) message type used in the operation except as follows: if the WSDL operation uses a message containing exactly one part which itself is defined using an element, then a WS-BPEL variable of the same element type as used to define the part MAY be referenced by the variable attribute of the <receive> or <reply> activity.
+
+- in element Process:
+ Error SA00056: A "start activity" is a <receive> or <pick> activity that is annotated with a createInstance="yes" attribute. Activities other than the following: start activities, <s