Author: mszefler
Date: Tue Oct 30 19:46:13 2007
New Revision: 590547

URL: http://svn.apache.org/viewvc?rev=590547&view=rev
Log:
experimental: external variables

Added:
    ode/branches/extvar/bpel-runtime/src/test/resources/org/
    ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/
    ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/
    ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/
    
ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/evar/
    
ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/evar/jdbc/
    
ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/evar/jdbc/evardeploy.xml
   (with props)

Added: 
ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/evar/jdbc/evardeploy.xml
URL: 
http://svn.apache.org/viewvc/ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/evar/jdbc/evardeploy.xml?rev=590547&view=auto
==============================================================================
--- 
ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/evar/jdbc/evardeploy.xml
 (added)
+++ 
ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/evar/jdbc/evardeploy.xml
 Tue Oct 30 19:46:13 2007
@@ -0,0 +1,57 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03";
+       xmlns:pns="http://ode/bpel/unit-test"; 
+       xmlns:wns="http://ode/bpel/unit-test.wsdl";
+       xmlns:evar="http://www.apache.org/ode/extensions/externalVariables";>
+
+
+       <process name="pns:HelloWorld2">
+               <active>true</active>
+               <provide partnerLink="helloPartnerLink">
+                       <service name="wns:HelloService" port="HelloPort"/>
+               </provide>
+               
+               <evar:externalVariable id="evar1" > 
+                       <evar:jdbc xmlns="">                                    
+                               <datasource-ref>testds</datasource-ref>
+                               <table>extvartable1</table>
+                               <init mode="insert"/> 
+                               <column name="id1"              
+                                       key="yes"                               
+                                       generator="uuid" /> 
+                               <column name="id2"          
+                                   column-name="_id2_"     
+                                       key="yes"                               
+                                       generator="uuid" />     
+                               <column name="pid" 
+                                       generator="pid" />      
+                               <column name="iid"
+                                       generator="iid" />      
+                               <column name="cts" 
+                                       generator="ctimestamp" />   
+                               <column name="uts" 
+                                       generator="utimestamp" />   
+                               <column name="foo" />           
+                               <column name="bar" />           
+                       </evar:jdbc>                    
+               </evar:externalVariable>
+               
+       </process>
+</deploy>

Propchange: 
ode/branches/extvar/bpel-runtime/src/test/resources/org/apache/ode/bpel/evar/jdbc/evardeploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to