Author: seanahn
Date: Tue Feb 10 20:08:37 2009
New Revision: 743081
URL: http://svn.apache.org/viewvc?rev=743081&view=rev
Log:
ODE-511, Hibernate DAO + OnEvent + Correlation error
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/BpelActivityTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/deploy.xml
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test1.properties
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test2.properties
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.bpel
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest.soap
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest2.soap
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest3.soap
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/BpelActivityTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/BpelActivityTest.java?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/BpelActivityTest.java
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/BpelActivityTest.java
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,59 @@
+package org.apache.ode.axis2;
+
+import static org.testng.Assert.fail;
+
+import org.apache.log4j.Logger;
+import org.testng.annotations.Test;
+
+public class BpelActivityTest extends Axis2TestBase implements
ODEConfigDirAware {
+ public String getODEConfigDir() {
+ return
getClass().getClassLoader().getResource("webapp").getFile() +
"/WEB-INF/conf.hib-derby";
+ }
+
+// @Test(dataProvider="configs")
+ public void testSimpleFaultCatch() throws Exception {
+ final String bundleName = "TestThrowOnEventNoCatch";
+ // deploy the required service
+ server.deployService(DummyService.class.getCanonicalName());
+ if (server.isDeployed(bundleName)) server.undeployProcess(bundleName);
+ server.deployProcess(bundleName);
+
+ new Thread() {
+ public void run() {
+ try {
+ Thread.sleep(3000);
+ String response =
server.sendRequestFile("http://localhost:8888/ode/processes/NPG072408_4/test4/process/Pool",
+ bundleName, "testRequest2.soap");
+
Logger.getLogger(BpelActivityTest.class).debug("!!!SEAN : " + response);
+ } catch( Exception e ) {
+ fail(e.getMessage());
+ }
+ }
+ }.start();
+
+ new Thread() {
+ public void run() {
+ try {
+ Thread.sleep(6000);
+ String response =
server.sendRequestFile("http://localhost:8888/ode/processes/NPG072408_4/test4/process/Pool",
+ bundleName, "testRequest3.soap");
+
Logger.getLogger(BpelActivityTest.class).debug("!!!SEAN : " + response);
+ } catch( Exception e ) {
+ fail(e.getMessage());
+ }
+ }
+ }.start();
+
+ try {
+ String response =
server.sendRequestFile("http://localhost:8888/ode/processes/NPG072408_4/test4/process/Pool",
+ bundleName, "testRequest.soap");
+ Logger.getLogger(BpelActivityTest.class).debug("!!!SEAN : " +
response);
+
+// assertTrue(response.contains("helloResponse") &&
response.contains("Something went wrong. Fortunately, it was meant to be."));
+ } finally {
+// server.undeployProcess(bundleName);
+ }
+
+ Thread.sleep(6000);
+ }
+}
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/deploy.xml
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/deploy.xml?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/deploy.xml
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/deploy.xml
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,13 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<dd:deploy xmlns:dd="http://ode.fivesight.com/schemas/2006/06/27/dd">
+ <dd:process xmlns:dd="http://ode.fivesight.com/schemas/2006/06/27/dd"
xmlns:Pool="http://ode.apache.org/test4/Pool"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:diag="http://ode.apache.org/test4"
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:this="http://ode.apache.org/test4/process"
+
xmlns:NPGServices_Abstract="http://www.ode.apache.org/NPG/v1/wsdl"
+ xmlns:NPGData="http://www.ode.apache.org/NPG/v1"
name="this:process" fileName="test4-process.bpel">
+ <dd:property name="PATH">test4</dd:property>
+ <dd:property name="SVG">test4.svg</dd:property>
+ <dd:provide partnerLink="processAndPoolPlkVar">
+ <dd:service name="this:CanonicServiceForPool"
port="canonicPort"></dd:service>
+ </dd:provide>
+</dd:process></dd:deploy>
\ No newline at end of file
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test1.properties
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test1.properties?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test1.properties
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test1.properties
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,21 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+namespace=http://ode.apache.org/test4/process
+service=CanonicServiceForPool
+operation=receiveNPR
+request1=<message><body><receiveNPRRequest
xmlns="http://ode.apache.org/test4/process">1</receiveNPRRequest></body></message>
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test2.properties
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test2.properties?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test2.properties
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test2.properties
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,21 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+namespace=http://ode.apache.org/test4/process
+service=CanonicServiceForPool
+operation=receiveCancel
+request1=<message><body><receiveCancelRequest
xmlns="http://ode.apache.org/test4/process">1</receiveCancelRequest></body></message>
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.bpel
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.bpel?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.bpel
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.bpel
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<bpel:process xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"
xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
xmlns:pnlk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:NPGData="http://www.ode.apache.org/NPG/v1"
xmlns:this="http://ode.apache.org/test4/process"
xmlns:NPGServices_Abstract="http://www.ode.apache.org/NPG/v1/wsdl"
xmlns:diag="http://ode.apache.org/test4"
xmlns:Pool="http://ode.apache.org/test4/Pool"
xmlns:bpmn="http://www.intalio.com/bpms"
xmlns:atomic="http://ode.apache.org/atomicScope"
queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
bpmn:label="process" bpmn:id="_Ef3rkFmMEd2BsZsV-epWfA" name="process"
targetNamespace="http://ode.apache.org/test4/proc
ess">
+ <bpel:import namespace="http://ode.apache.org/test4" location="test4.wsdl"
importType="http://schemas.xmlsoap.org/wsdl/"/>
+ <bpel:import namespace="http://ode.apache.org/test4/process"
location="test4-process.wsdl" importType="http://schemas.xmlsoap.org/wsdl/"/>
+ <bpel:partnerLinks>
+ <bpel:partnerLink name="processAndPoolPlkVar"
partnerLinkType="diag:processAndPool" myRole="process_for_Pool"/>
+ </bpel:partnerLinks>
+ <bpel:correlationSets>
+ <bpel:correlationSet name="portIdCorr" properties="this:portIdProp"/>
+ </bpel:correlationSets>
+ <bpel:variables>
+ <bpel:variable name="thisReceiveNPRRequestMsg"
messageType="this:receiveNPRRequest"/>
+ </bpel:variables>
+ <bpel:sequence>
+ <bpel:receive partnerLink="processAndPoolPlkVar" portType="this:ForPool"
operation="receiveNPR" variable="thisReceiveNPRRequestMsg" createInstance="yes">
+ <bpel:correlations>
+ <bpel:correlation set="portIdCorr" initiate="yes"/>
+ </bpel:correlations>
+ </bpel:receive>
+
+ <bpel:scope name="SubProcess_C81ZcFm2Ed2BsZsV-epWfA"
bpmn:label="SubProcess" bpmn:id="_C81ZcFm2Ed2BsZsV-epWfA">
+ <bpel:variables>
+ <bpel:variable name="thisReceive3RequestMsg"
messageType="this:receive3Request"/>
+ <bpel:variable name="thisReceive2RequestMsg"
messageType="this:receive2Request"/>
+ </bpel:variables>
+ <bpel:faultHandlers>
+ <bpel:catch faultName="this:cancel">
+ <bpel:scope name="SubProcess_eO1BoFnPEd2xsdtTaIB7mA"
bpmn:label="SubProcess" bpmn:id="_eO1BoFnPEd2xsdtTaIB7mA">
+ <bpel:sequence>
+ <bpel:empty bpmn:label="stop" bpmn:id="_sR3bYFnLEd2xsdtTaIB7mA"/>
+ </bpel:sequence>
+ </bpel:scope>
+ </bpel:catch>
+ </bpel:faultHandlers>
+ <bpel:eventHandlers>
+ <bpel:onEvent partnerLink="processAndPoolPlkVar"
portType="this:ForPool" operation="receiveCancel"
messageType="this:receiveCancelRequest" variable="thisReceiveCancelRequestMsg"
bpmn:label="receiveCancel" bpmn:id="_x9bsgFnKEd2xsdtTaIB7mA">
+ <bpel:correlations>
+ <bpel:correlation set="portIdCorr"
initiate="no"></bpel:correlation>
+ </bpel:correlations>
+ <bpel:scope name="cancel_8YLNEFnKEd2xsdtTaIB7mA" bpmn:label="cancel"
bpmn:id="_8YLNEFnKEd2xsdtTaIB7mA">
+ <bpel:sequence>
+ <bpel:empty bpmn:label="handleCancel"
bpmn:id="_8YjAgFnKEd2xsdtTaIB7mA"/>
+ <bpel:throw faultName="this:cancel"/>
+ </bpel:sequence>
+ </bpel:scope>
+ </bpel:onEvent>
+ <!--bpel:onAlarm>
+ <bpel:for>"PT30S"</bpel:for>
+ <bpel:scope name="SubProcess_RM2fcFnXEd2xsdtTaIB7mA"
bpmn:label="SubProcess" bpmn:id="_RM2fcFnXEd2xsdtTaIB7mA">
+ <bpel:sequence>
+ <bpel:throw faultName="this:cancel"/>
+ </bpel:sequence>
+ </bpel:scope>
+ </bpel:onAlarm-->
+ </bpel:eventHandlers>
+ <bpel:receive partnerLink="processAndPoolPlkVar"
portType="this:ForPool" operation="receiveNPR"
variable="thisReceiveNPRRequestMsg">
+ <bpel:correlations>
+ <bpel:correlation set="portIdCorr" initiate="no"/>
+ </bpel:correlations>
+ </bpel:receive>
+ </bpel:scope>
+ </bpel:sequence>
+</bpel:process>
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.wsdl?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.wsdl
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4-process.wsdl
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,79 @@
+<?xml version='1.0' encoding='utf-8'?>
+<wsdl:definitions xmlns:Pool="http://ode.apache.org/test4/Pool"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:diag="http://ode.apache.org/test4"
xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
xmlns:pnlk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:this="http://ode.apache.org/test4/process"
xmlns:NPGServices_Abstract="http://www.ode.apache.org/NPG/v1/wsdl"
xmlns:NPGData="http://www.ode.apache.org/NPG/v1"
targetNamespace="http://ode.apache.org/test4/process">
+ <wsdl:types>
+ <xs:schema elementFormDefault="qualified"
targetNamespace="http://ode.apache.org/test4/process">
+ <xs:element name="receiveCancelRequest" type="xs:string"/>
+ <xs:element name="receiveNPRRequest" type="xs:string"/>
+ <xs:element name="receive3Request" type="xs:string"/>
+ <xs:element name="receive2Request" type="xs:string"/>
+ </xs:schema>
+ </wsdl:types>
+ <wsdl:message name="receiveCancelRequest">
+ <wsdl:part name="body" element="this:receiveCancelRequest"/>
+ </wsdl:message>
+ <wsdl:message name="receiveNPRRequest">
+ <wsdl:part name="body" element="this:receiveNPRRequest"/>
+ </wsdl:message>
+ <wsdl:message name="receive3Request">
+ <wsdl:part name="body" element="this:receive3Request"/>
+ </wsdl:message>
+ <wsdl:message name="receive2Request">
+ <wsdl:part name="body" element="this:receive2Request"/>
+ </wsdl:message>
+ <wsdl:portType name="ForPool">
+ <wsdl:operation name="receiveCancel">
+ <wsdl:input message="this:receiveCancelRequest"
name="receiveCancel"/>
+ </wsdl:operation>
+ <wsdl:operation name="receiveNPR">
+ <wsdl:input message="this:receiveNPRRequest" name="receiveNPR"/>
+ </wsdl:operation>
+ <wsdl:operation name="receive3">
+ <wsdl:input message="this:receive3Request" name="receive3"/>
+ </wsdl:operation>
+ <wsdl:operation name="receive2">
+ <wsdl:input message="this:receive2Request" name="receive2"/>
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:binding name="CanonicBindingForPool" type="this:ForPool">
+ <soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"/>
+ <wsdl:operation name="receiveCancel">
+ <soap:operation style="document"
soapAction="http://ode.apache.org/test4/process/ForPool/receiveCancel"/>
+ <wsdl:input name="receiveCancel">
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+ <wsdl:operation name="receiveNPR">
+ <soap:operation style="document"
soapAction="http://ode.apache.org/test4/process/ForPool/receiveNPR"/>
+ <wsdl:input name="receiveNPR">
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+ <wsdl:operation name="receive3">
+ <soap:operation style="document"
soapAction="http://ode.apache.org/test4/process/ForPool/receive3"/>
+ <wsdl:input name="receive3">
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+ <wsdl:operation name="receive2">
+ <soap:operation style="document"
soapAction="http://ode.apache.org/test4/process/ForPool/receive2"/>
+ <wsdl:input name="receive2">
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+ </wsdl:binding>
+ <wsdl:service name="CanonicServiceForPool">
+ <wsdl:port name="canonicPort" binding="this:CanonicBindingForPool">
+ <soap:address
location="http://localhost:8080/ode/processes/NPG072408_4/test4/process/Pool"/>
+ </wsdl:port>
+ </wsdl:service>
+
+ <vprop:property name="portIdProp" type="xs:string"/>
+ <vprop:propertyAlias propertyName="this:portIdProp"
messageType="this:receiveNPRRequest" part="body">
+ </vprop:propertyAlias>
+ <vprop:propertyAlias propertyName="this:portIdProp"
messageType="this:receive2Request" part="body">
+ </vprop:propertyAlias>
+ <vprop:propertyAlias propertyName="this:portIdProp"
messageType="this:receive3Request" part="body">
+ </vprop:propertyAlias>
+ <vprop:propertyAlias propertyName="this:portIdProp"
messageType="this:receiveCancelRequest" part="body">
+ </vprop:propertyAlias>
+</wsdl:definitions>
\ No newline at end of file
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4.wsdl?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4.wsdl
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/test4.wsdl
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='utf-8'?>
+<wsdl:definitions xmlns:process="http://ode.apache.org/test4/process"
+
xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+ xmlns:pnlk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+ targetNamespace="http://ode.apache.org/test4">
+ <wsdl:import namespace="http://ode.apache.org/test4/process"
location="test4-process.wsdl"/>
+ <pnlk:partnerLinkType name="processAndPool">
+ <pnlk:role name="process_for_Pool" portType="process:ForPool"/>
+ </pnlk:partnerLinkType>
+</wsdl:definitions>
\ No newline at end of file
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest.soap
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest.soap?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest.soap
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest.soap
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
+ <!-- test soap message -->
+ <SOAP-ENV:Body>
+ <receiveNPRRequest
xmlns="http://ode.apache.org/test4/process">1</receiveNPRRequest>
+ </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest2.soap
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest2.soap?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest2.soap
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest2.soap
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
+ <!-- test soap message -->
+ <SOAP-ENV:Body>
+ <receiveCancelRequest
xmlns="http://ode.apache.org/test4/process">1</receiveCancelRequest>
+ </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
Added:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest3.soap
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest3.soap?rev=743081&view=auto
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest3.soap
(added)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestThrowOnEventNoCatch/testRequest3.soap
Tue Feb 10 20:08:37 2009
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
+ <!-- test soap message -->
+ <SOAP-ENV:Body>
+ <receiveNPRRequest
xmlns="http://ode.apache.org/test4/process">1</receiveNPRRequest>
+ </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>