Author: lresende
Date: Sat Nov 10 00:26:45 2007
New Revision: 593752
URL: http://svn.apache.org/viewvc?rev=593752&view=rev
Log:
Adding composite and componentType for new BPEL process
Added:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.componentType
(with props)
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.composite
(with props)
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.componentType
(with props)
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.composite
(with props)
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.bpel
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.composite
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.wsdl
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.bpel
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.wsdl
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/pong.wsdl
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.bpel
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.wsdl
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.bpel
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.bpel?rev=593752&r1=593751&r2=593752&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.bpel
(original)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.bpel
Sat Nov 10 00:26:45 2007
@@ -18,9 +18,9 @@
-->
<process name="HelloWorld"
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/helloworld"
+ xmlns="http://schemas.xmlsoap.org/ws/2004/03/business-process/"
xmlns:bpws="http://schemas.xmlsoap.org/ws/2004/03/business-process/"
- xmlns="http://schemas.xmlsoap.org/ws/2004/03/business-process/"
-
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/helloworld"
+
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/helloworld"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:test="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
@@ -34,7 +34,7 @@
</partnerLinks>
<variables>
- <variable name="myVar" messageType="test:HelloMessage"/>
+ <variable name="helloMessage" messageType="test:HelloMessage"/>
<variable name="tmpVar" type="xsd:string"/>
</variables>
@@ -44,23 +44,23 @@
partnerLink="helloPartnerLink"
portType="test:HelloPortType"
operation="hello"
- variable="myVar"
+ variable="helloMessage"
createInstance="yes"/>
<assign name="assign1">
<copy>
- <from variable="myVar" part="TestPart"/>
+ <from variable="helloMessage" part="TestPart"/>
<to variable="tmpVar"/>
</copy>
<copy>
<from>concat($tmpVar,' World')</from>
- <to variable="myVar" part="TestPart"/>
+ <to variable="helloMessage" part="TestPart"/>
</copy>
</assign>
<reply name="end"
partnerLink="helloPartnerLink"
portType="test:HelloPortType"
operation="hello"
- variable="myVar"/>
+ variable="helloMessage"/>
</sequence>
</process>
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.composite
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.composite?rev=593752&r1=593751&r2=593752&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.composite
(original)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.composite
Sat Nov 10 00:26:45 2007
@@ -20,7 +20,7 @@
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
targetNamespace="http://bpel"
xmlns:hns="http://tuscany.apache.org/implementation/bpel/example/helloworld"
- name="bpel">
+ name="helloworld">
<component name="BPELHelloWorldComponent">
<implementation.bpel process="hns:HelloWorld"/>
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.wsdl
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.wsdl?rev=593752&r1=593751&r2=593752&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.wsdl
(original)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/helloworld/helloworld.wsdl
Sat Nov 10 00:26:45 2007
@@ -18,7 +18,7 @@
~ under the License.
-->
-<wsdl:definitions
+<wsdl:definitions name="helloworld"
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.bpel
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.bpel?rev=593752&r1=593751&r2=593752&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.bpel
(original)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.bpel
Sat Nov 10 00:26:45 2007
@@ -19,8 +19,9 @@
-->
<process
name="Ping"
- xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
- targetNamespace="urn:/Ping.bpel"
+
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/ping"
+ xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+ xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="urn:/Ping.bpel"
xmlns:ping="urn:/Ping.wsdl"
Added:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.componentType
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.componentType?rev=593752&view=auto
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.componentType
(added)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.componentType
Sat Nov 10 00:26:45 2007
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="ASCII"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ xmlns:wsdli="http://www.w3.org/2006/01/wsdl-instance"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+ <service name="PingService">
+ <interface.wsdl
interface="http://tuscany.apache.org/implementation/bpel/example/ping.wsdl#wsdl.interface(PingPortType)"
/>
+ </service>
+
+</componentType>
\ No newline at end of file
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.componentType
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.componentType
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.componentType
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.composite
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.composite?rev=593752&view=auto
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.composite
(added)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.composite
Sat Nov 10 00:26:45 2007
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://bpel"
+ xmlns:hns="http://tuscany.apache.org/implementation/bpel/example/ping"
+ name="ping">
+
+ <component name="BPELPingComponent">
+ <implementation.bpel process="hns:Ping"/>
+ </component>
+
+</composite>
\ No newline at end of file
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.composite
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.composite
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.composite
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.wsdl
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.wsdl?rev=593752&r1=593751&r2=593752&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.wsdl
(original)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/ping.wsdl
Sat Nov 10 00:26:45 2007
@@ -17,16 +17,16 @@
~ specific language governing permissions and limitations
~ under the License.
-->
-<definitions name="Ping"
- targetNamespace="urn:/Ping.wsdl"
- xmlns:tns="urn:/Ping.wsdl"
+<definitions name="ping"
+
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/ping.wsdl"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/ping.wsdl"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
- xmlns="http://schemas.xmlsoap.org/wsdl/">
+ xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype">
<types>
- <schema targetNamespace="urn:/Ping.wsdl"
- xmlns="http://www.w3.org/2000/10/XMLSchema">
+ <schema
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/ping.wsdl"
+ xmlns="http://www.w3.org/2001/XMLSchema">
<element name="PingRequest">
<complexType>
<all>
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/pong.wsdl
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/pong.wsdl?rev=593752&r1=593751&r2=593752&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/pong.wsdl
(original)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/ping/pong.wsdl
Sat Nov 10 00:26:45 2007
@@ -17,16 +17,16 @@
~ specific language governing permissions and limitations
~ under the License.
-->
-<definitions name="Pong"
- targetNamespace="urn:/Pong.wsdl"
- xmlns:tns="urn:/Pong.wsdl"
+<definitions name="pong"
+
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"
+
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
- <schema targetNamespace="urn:/Pong.wsdl"
- xmlns="http://www.w3.org/2000/10/XMLSchema">
+ <schema
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"
+ xmlns="http://www.w3.org/2001/XMLSchema">
<element name="PongRequest">
<complexType>
<all>
@@ -71,4 +71,4 @@
-->
-</definitions>
+</definitions>
\ No newline at end of file
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.bpel
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.bpel?rev=593752&r1=593751&r2=593752&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.bpel
(original)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.bpel
Sat Nov 10 00:26:45 2007
@@ -1,87 +1,52 @@
<?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.
- -->
-<process
- name="Pong"
- xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
- targetNamespace="urn:/Pong.bpel"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- xmlns:tns="urn:/Pong.bpel"
- xmlns:pong="urn:/Pong.wsdl"
- expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0">
-
- <import location="Pong.wsdl"
- namespace="urn:/Pong.wsdl"
- importType="http://schemas.xmlsoap.org/wsdl/" />
-
- <import location="Pong.wsdl"
- namespace="urn:/Pong.wsdl"
- importType="http://schemas.xmlsoap.org/wsdl/" />
-
+<process
+ name="Pong"
+
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/pong"
+ xmlns="http://schemas.xmlsoap.org/ws/2004/03/business-process/"
+ xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+
xmlns:pong="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"
+ xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/pong"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ exitOnStandardFault="yes"
+ expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0">
+
+ <import importType="http://schemas.xmlsoap.org/wsdl/"
+ location="pong.wsdl"
namespace="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"/>
+ <import importType="http://schemas.xmlsoap.org/wsdl/"
+ location="pong.wsdl"
namespace="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"/>
<partnerLinks>
- <partnerLink name="PongPartnerLink"
- partnerLinkType="pong:PongPartnerLinkType"
- myRole="Provider" />
+ <partnerLink myRole="Provider" name="PongPartnerLink"
partnerLinkType="pong:PongPartnerLinkType"/>
</partnerLinks>
-
<variables>
<variable messageType="pong:PongRequest" name="pongRequest"/>
<variable messageType="pong:PongResponse" name="pongResponse"/>
- <variable type="xsd:string" name="text" />
+ <variable name="text" type="xsd:string"/>
</variables>
-
<sequence name="Main">
- <receive name="pongReceive"
- createInstance="yes"
- operation="Pong"
- partnerLink="PongPartnerLink"
- portType="pong:PongPortType"
- variable="pongRequest"/>
-
- <assign name="assignPongRequest">
- <!-- add "ping" text to the input text -->
+ <receive createInstance="yes" name="pongReceive"
+ operation="Pong" partnerLink="PongPartnerLink"
+ portType="pong:PongPortType" variable="pongRequest"/>
+ <assign name="assignPongRequest" validate="no">
<copy>
- <from>concat($pongRequest.body/pong:text, ' pong')</from>
- <to>$text</to>
+ <from><![CDATA[concat($pongRequest.body/pong:text, '
pong')]]></from>
+ <to><![CDATA[$text]]></to>
</copy>
- <!-- initialize pongResponse -->
<copy>
<from>
<literal>
- <pong:PongRequest>
+ <pong:PongRequest xmlns:pong="urn:/Pong.wsdl">
<pong:text/>
</pong:PongRequest>
</literal>
</from>
- <to>$pongResponse.body</to>
+ <to><![CDATA[$pongResponse.body]]></to>
</copy>
- <!-- copy new text into pongResponse -->
<copy>
- <from>$text</from>
- <to>$pongResponse.body/pong:text</to>
+ <from><![CDATA[$text]]></from>
+ <to><![CDATA[$pongResponse.body/pong:text]]></to>
</copy>
</assign>
-
- <reply name="pongReply"
- partnerLink="PongPartnerLink"
- portType="pong:PongPortType"
- operation="Pong"
- variable="pongResponse"/>
+ <reply name="pongReply" operation="Pong"
+ partnerLink="PongPartnerLink" portType="pong:PongPortType"
variable="pongResponse"/>
</sequence>
</process>
Added:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.componentType
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.componentType?rev=593752&view=auto
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.componentType
(added)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.componentType
Sat Nov 10 00:26:45 2007
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="ASCII"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ xmlns:wsdli="http://www.w3.org/2006/01/wsdl-instance"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+ <service name="PongService">
+ <interface.wsdl
interface="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl#wsdl.interface(PongPortType)"
/>
+ </service>
+
+</componentType>
\ No newline at end of file
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.componentType
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.componentType
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.componentType
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.composite
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.composite?rev=593752&view=auto
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.composite
(added)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.composite
Sat Nov 10 00:26:45 2007
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://bpel"
+ xmlns:hns="http://tuscany.apache.org/implementation/bpel/example/pong"
+ name="pong">
+
+ <component name="BPELPongComponent">
+ <implementation.bpel process="hns:Pong"/>
+ </component>
+
+</composite>
\ No newline at end of file
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.composite
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.composite
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.composite
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified:
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.wsdl
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.wsdl?rev=593752&r1=593751&r2=593752&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.wsdl
(original)
+++
incubator/tuscany/java/sca/modules/implementation-bpel/src/test/resources/pong/pong.wsdl
Sat Nov 10 00:26:45 2007
@@ -17,16 +17,16 @@
~ specific language governing permissions and limitations
~ under the License.
-->
-<definitions name="Pong"
- targetNamespace="urn:/Pong.wsdl"
- xmlns:tns="urn:/Pong.wsdl"
+<definitions name="pong"
+
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"
+
xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
- <schema targetNamespace="urn:/Pong.wsdl"
- xmlns="http://www.w3.org/2000/10/XMLSchema">
+ <schema
targetNamespace="http://tuscany.apache.org/implementation/bpel/example/pong.wsdl"
+ xmlns="http://www.w3.org/2001/XMLSchema">
<element name="PongRequest">
<complexType>
<all>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]