Commit 5d4341d0 authored by Tiemo Bang's avatar Tiemo Bang

1. working

parent 4709d402
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
partnerRole="InventoryService"></bpel:partnerLink> partnerRole="InventoryService"></bpel:partnerLink>
<bpel:partnerLink name="OrderPL" partnerLinkType="tns:OrderPLT" partnerRole="OrderService"></bpel:partnerLink> <bpel:partnerLink name="OrderPL" partnerLinkType="tns:OrderPLT" partnerRole="OrderService"></bpel:partnerLink>
<bpel:partnerLink name="ShipmentPL" partnerLinkType="tns:ShipmentPLT" partnerRole="ShipmentService"></bpel:partnerLink> <bpel:partnerLink name="ShipmentPL" partnerLinkType="tns:ShipmentPLT" partnerRole="ShipmentService"></bpel:partnerLink>
<bpel:partnerLink name="PaymentPL" partnerLinkType="tns:PaymentPLT" partnerRole="PaymentService"></bpel:partnerLink>
</bpel:partnerLinks> </bpel:partnerLinks>
<!-- ================================================================= --> <!-- ================================================================= -->
...@@ -67,6 +68,12 @@ ...@@ -67,6 +68,12 @@
<bpel:variable name="calcOrderRequest" messageType="ns:calcOrderCostsInput"></bpel:variable> <bpel:variable name="calcOrderRequest" messageType="ns:calcOrderCostsInput"></bpel:variable>
<bpel:variable name="calcShipmentCostResponse" messageType="ns:calcShipmentCostsOutput"></bpel:variable> <bpel:variable name="calcShipmentCostResponse" messageType="ns:calcShipmentCostsOutput"></bpel:variable>
<bpel:variable name="calcShipmentCostRequest" messageType="ns:calcShipmentCostsInput"></bpel:variable> <bpel:variable name="calcShipmentCostRequest" messageType="ns:calcShipmentCostsInput"></bpel:variable>
<bpel:variable name="calcTransactionCostResponse" messageType="ns:calcTransactionCostsOutput"></bpel:variable>
<bpel:variable name="calcTranactionCostRequest" messageType="ns:calcTransactionCostsInput"></bpel:variable>
<bpel:variable name="conductPaymentResponse" messageType="ns:conductPaymentOutput"></bpel:variable>
<bpel:variable name="conductPaymentRequest" messageType="ns:conductPaymentInput"></bpel:variable>
<bpel:variable name="shipProdctsResponse" messageType="ns:shipProductsOutput"></bpel:variable>
<bpel:variable name="shipProductsRequest" messageType="ns:shipProductsInput"></bpel:variable>
</bpel:variables> </bpel:variables>
<!-- ================================================================= --> <!-- ================================================================= -->
...@@ -249,6 +256,29 @@ ...@@ -249,6 +256,29 @@
<bpel:assign validate="no" name="assignOrderID"> <bpel:assign validate="no" name="assignOrderID">
<bpel:copy>
<bpel:from><bpel:literal><tns:shipProducts xmlns:tns="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:orderId>tns:orderId</tns:orderId>
<tns:date>2001-01-01</tns:date>
</tns:shipProducts>
</bpel:literal></bpel:from>
<bpel:to variable="shipProductsRequest" part="shipProductsInput"></bpel:to>
</bpel:copy>
<bpel:copy>
<bpel:from><bpel:literal><tns:conductPayment xmlns:tns="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:orderId>tns:orderId</tns:orderId>
<tns:amount>0.0</tns:amount>
</tns:conductPayment>
</bpel:literal></bpel:from>
<bpel:to variable="conductPaymentRequest" part="conductPaymentInput"></bpel:to>
</bpel:copy>
<bpel:copy>
<bpel:from><bpel:literal><tns:calcTransactionCosts xmlns:tns="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:orderId>tns:orderId</tns:orderId>
</tns:calcTransactionCosts>
</bpel:literal></bpel:from>
<bpel:to variable="calcTranactionCostRequest" part="calcTransactionCostsInput"></bpel:to>
</bpel:copy>
<bpel:copy> <bpel:copy>
<bpel:from><bpel:literal><tns:calcShipmentCosts xmlns:tns="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <bpel:from><bpel:literal><tns:calcShipmentCosts xmlns:tns="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:orderId>tns:orderId</tns:orderId> <tns:orderId>tns:orderId</tns:orderId>
...@@ -279,10 +309,54 @@ ...@@ -279,10 +309,54 @@
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query> <bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:to> </bpel:to>
</bpel:copy> </bpel:copy>
<bpel:copy>
<bpel:from part="storeOrderDetailsOutput" variable="storeOrderDetailsResponse">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:from>
<bpel:to part="calcTransactionCostsInput" variable="calcTranactionCostRequest">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:to>
</bpel:copy>
<bpel:copy>
<bpel:from part="storeOrderDetailsOutput" variable="storeOrderDetailsResponse">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:from>
<bpel:to part="conductPaymentInput" variable="conductPaymentRequest">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:to>
</bpel:copy>
<bpel:copy>
<bpel:from part="storeOrderDetailsOutput" variable="storeOrderDetailsResponse">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:from>
<bpel:to part="shipProductsInput" variable="shipProductsRequest">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:to>
</bpel:copy>
</bpel:assign> </bpel:assign>
<bpel:invoke name="calcOrderCost" partnerLink="OrderPL" operation="calcOrderCosts" inputVariable="calcOrderRequest" outputVariable="calcOrderResponse"></bpel:invoke> <bpel:invoke name="calcOrderCost" partnerLink="OrderPL" operation="calcOrderCosts" inputVariable="calcOrderRequest" outputVariable="calcOrderResponse"></bpel:invoke>
<bpel:invoke name="calcShipmentCost" partnerLink="ShipmentPL" operation="calcShipmentCosts" portType="ns:ShipmentPortType" inputVariable="calcShipmentCostRequest" outputVariable="calcShipmentCostResponse"></bpel:invoke> <bpel:invoke name="calcShipmentCost" partnerLink="ShipmentPL" operation="calcShipmentCosts" portType="ns:ShipmentPortType" inputVariable="calcShipmentCostRequest" outputVariable="calcShipmentCostResponse"></bpel:invoke>
<bpel:assign validate="no" name="AssignOutPut"> <bpel:invoke name="calcTransactionCost" partnerLink="PaymentPL" operation="calcTransactionCosts" portType="ns:PaymentPortType" inputVariable="calcTranactionCostRequest" outputVariable="calcTransactionCostResponse"></bpel:invoke>
<bpel:assign validate="no" name="AssignCost">
<bpel:copy>
<bpel:from>
<![CDATA[$calcOrderResponse.calcOrderCostsOutput/ns:orderCosts + $calcShipmentCostResponse.calcShipmentCostsOutput/ns:shipmentCosts + $calcTransactionCostResponse.calcTransactionCostsOutput/ns:transactionCosts]]>
</bpel:from>
<bpel:to part="conductPaymentInput" variable="conductPaymentRequest">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0">
<![CDATA[ns:amount]]>
</bpel:query>
</bpel:to>
</bpel:copy>
</bpel:assign>
<bpel:invoke name="conductPayment" partnerLink="PaymentPL" operation="conductPayment" portType="ns:PaymentPortType" inputVariable="conductPaymentRequest" outputVariable="conductPaymentResponse"></bpel:invoke>
<bpel:invoke name="shipProducts" partnerLink="ShipmentPL" operation="shipProducts" portType="ns:ShipmentPortType" inputVariable="shipProductsRequest" outputVariable="shipProdctsResponse"></bpel:invoke>
<bpel:assign validate="no" name="AssignOutput">
<bpel:copy> <bpel:copy>
<bpel:from><bpel:literal><tns:ConductOrder84Response xmlns:tns="group12" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <bpel:from><bpel:literal><tns:ConductOrder84Response xmlns:tns="group12" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:result>tns:result</tns:result> <tns:result>tns:result</tns:result>
...@@ -291,9 +365,7 @@ ...@@ -291,9 +365,7 @@
<bpel:to variable="output" part="payload"></bpel:to> <bpel:to variable="output" part="payload"></bpel:to>
</bpel:copy> </bpel:copy>
<bpel:copy> <bpel:copy>
<bpel:from> <bpel:from part="shipProductsOutput" variable="shipProdctsResponse"></bpel:from>
<![CDATA[$calcOrderResponse.calcOrderCostsOutput/ns:orderCosts + $calcShipmentCostResponse.calcShipmentCostsOutput/ns:shipmentCosts]]>
</bpel:from>
<bpel:to part="payload" variable="output"> <bpel:to part="payload" variable="output">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[tns:result]]></bpel:query> <bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[tns:result]]></bpel:query>
</bpel:to> </bpel:to>
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
</extensions> </extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#/"/> <extendedObject href="ConductOrder84.bpel#/"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ProcessExtension" modificationStamp="1478814877079" processName="{group12}ConductOrder84" processVersion="1"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ProcessExtension" modificationStamp="1478959255449" processName="{group12}ConductOrder84" processVersion="4"/>
</extensions> </extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.1"/> <extendedObject href="ConductOrder84.bpel#//@activity/@activities.1"/>
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions> </extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.10"/> <extendedObject href="ConductOrder84.bpel#//@activity/@activities.14"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions> </extensions>
<extensions> <extensions>
...@@ -177,23 +177,19 @@ ...@@ -177,23 +177,19 @@
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions> </extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.2"/> <extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.5"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions> </extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.1"/> <extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.4"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions> </extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.9"/> <extendedObject href="ConductOrder84.bpel#//@activity/@activities.10"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions> </extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.9/@copy.1"/> <extendedObject href="ConductOrder84.bpel#//@activity/@activities.10/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.9/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions> </extensions>
<extensions> <extensions>
...@@ -208,12 +204,84 @@ ...@@ -208,12 +204,84 @@
<extendedObject href="ConductOrder84.bpel#//@variables/@children.10"/> <extendedObject href="ConductOrder84.bpel#//@variables/@children.10"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions> </extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.6"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.3"/> <extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.3"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions> </extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.9"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@variables/@children.11"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@variables/@children.12"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.7"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.11"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@variables/@children.13"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@variables/@children.14"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.8"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.13"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.12"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@variables/@children.15"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@variables/@children.16"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.9"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions> <extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.0"/> <extendedObject href="ConductOrder84.bpel#//@activity/@activities.6/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/> <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions> </extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.13/@copy.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.13/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
</extensionmodel:ExtensionMap> </extensionmodel:ExtensionMap>
...@@ -6844,4 +6844,784 @@ ...@@ -6844,4 +6844,784 @@
<containingElement elementType="from" elementName=""/> <containingElement elementType="from" elementName=""/>
<attribute attributeName="expressionLanguage" oldValue=""/> <attribute attributeName="expressionLanguage" oldValue=""/>
</modelChange> </modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:40:12.460+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<newElement elementType="invoke" elementName="" elementXPath="/process/sequence[1]/invoke[5]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:40:12.476+0100">
<containingElement elementType="invoke" elementName="" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="name" oldValue="" newValue="Invoke"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:40:18.964+0100">
<containingElement elementType="invoke" elementName="Invoke" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="name" oldValue="Invoke" newValue="calcTransactionCost"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:41:12.614+0100">
<parentElement elementType="partnerLinks" elementName="" elementXPath="/process/partnerLinks[1]"/>
<newElement elementType="partnerLink" elementName="PaymentPL" elementXPath="/process/partnerLinks[1]/partnerLink[5]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:12.615+0100">
<containingElement elementType="invoke" elementName="calcTransactionCost" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="partnerLink" oldValue="" newValue="PaymentPL"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:12.624+0100">
<containingElement elementType="invoke" elementName="calcTransactionCost" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="operation" oldValue="" newValue="calcTransactionCosts"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:12.635+0100">
<containingElement elementType="invoke" elementName="calcTransactionCost" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="operation" oldValue="calcTransactionCosts"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:12.646+0100">
<containingElement elementType="invoke" elementName="calcTransactionCost" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="portType" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:20.153+0100">
<containingElement elementType="invoke" elementName="calcTransactionCost" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="operation" oldValue="" newValue="calcTransactionCosts"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:20.163+0100">
<containingElement elementType="invoke" elementName="calcTransactionCost" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="portType" oldValue="" newValue="ns:PaymentPortType"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:41:28.215+0100">
<parentElement elementType="variables" elementName="" elementXPath="/process/variables[1]"/>
<newElement elementType="variable" elementName="PaymentPLResponse" elementXPath="/process/variables[1]/variable[12]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:41:28.232+0100">
<parentElement elementType="variables" elementName="" elementXPath="/process/variables[1]"/>
<newElement elementType="variable" elementName="PaymentPLRequest" elementXPath="/process/variables[1]/variable[13]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:28.232+0100">
<containingElement elementType="invoke" elementName="calcTransactionCost" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="inputVariable" oldValue="" newValue="PaymentPLRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:28.248+0100">
<containingElement elementType="invoke" elementName="calcTransactionCost" elementXPath="/process/sequence[1]/invoke[5]"/>
<attribute attributeName="outputVariable" oldValue="" newValue="PaymentPLResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:42.890+0100">
<containingElement elementType="variable" elementName="PaymentPLResponse" elementXPath="/process/variables[1]/variable[12]"/>
<attribute attributeName="name" oldValue="PaymentPLResponse" newValue="calcTransactionCostResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:41:55.426+0100">
<containingElement elementType="variable" elementName="PaymentPLRequest" elementXPath="/process/variables[1]/variable[13]"/>
<attribute attributeName="name" oldValue="PaymentPLRequest" newValue="calcTranactionCostRequest"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:42:02.610+0100">
<parentElement elementType="assign" elementName="assignOrderID" elementXPath="/process/sequence[1]/assign[3]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[5]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:42:02.649+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[5]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:42:02.657+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[5]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:18.456+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[5]/from[1]"/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:18.457+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[5]/from[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:18.458+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[5]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:18.459+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[5]/from[1]"/>
<attribute attributeName="part" oldValue="" newValue="storeOrderDetailsOutput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:18.462+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[5]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="storeOrderDetailsResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:21.411+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:21.412+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:21.413+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:21.414+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue="" newValue="calcTransactionCostsInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:42:21.419+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue="" newValue="calcTranactionCostRequest"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:42:24.524+0100">
<parentElement elementType="assign" elementName="assignOrderID" elementXPath="/process/sequence[1]/assign[3]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:42:24.537+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:42:24.548+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:42:24.573+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:42:24.573+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:42:24.578+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:42:24.578+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="TextChanged" timestamp="2016-11-12T14:43:01.900+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[2]/from[1]"/>
<attribute attributeName="text" oldValue="$calcOrderResponse.calcOrderCostsOutput/ns:orderCosts + $calcShipmentCostResponse.calcShipmentCostsOutput/ns:shipmentCosts" newValue="$calcOrderResponse.calcOrderCostsOutput/ns:orderCosts + $calcShipmentCostResponse.calcShipmentCostsOutput/ns:shipmentCosts + $calcTransactionCostResponse.calcTransactionCostsOutput/ns:transactionCosts"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:43:01.906+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[2]/from[1]"/>
<attribute attributeName="expressionLanguage" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:43:01.913+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[2]/from[1]"/>
<attribute attributeName="expressionLanguage" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:50:04.086+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<newElement elementType="invoke" elementName="" elementXPath="/process/sequence[1]/invoke[6]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:04.105+0100">
<containingElement elementType="invoke" elementName="" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="name" oldValue="" newValue="Invoke"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:10.597+0100">
<containingElement elementType="invoke" elementName="Invoke" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="name" oldValue="Invoke" newValue="conducatPayment"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:50:19.630+0100">
<parentElement elementType="variables" elementName="" elementXPath="/process/variables[1]"/>
<newElement elementType="variable" elementName="PaymentPLResponse" elementXPath="/process/variables[1]/variable[14]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:50:19.646+0100">
<parentElement elementType="variables" elementName="" elementXPath="/process/variables[1]"/>
<newElement elementType="variable" elementName="PaymentPLRequest" elementXPath="/process/variables[1]/variable[15]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:19.646+0100">
<containingElement elementType="invoke" elementName="conducatPayment" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="partnerLink" oldValue="" newValue="PaymentPL"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:19.660+0100">
<containingElement elementType="invoke" elementName="conducatPayment" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="operation" oldValue="" newValue="calcTransactionCosts"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:19.670+0100">
<containingElement elementType="invoke" elementName="conducatPayment" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="operation" oldValue="calcTransactionCosts" newValue="conductPayment"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:19.684+0100">
<containingElement elementType="invoke" elementName="conducatPayment" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="portType" oldValue="" newValue="ns:PaymentPortType"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:19.693+0100">
<containingElement elementType="invoke" elementName="conducatPayment" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="inputVariable" oldValue="" newValue="PaymentPLRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:19.713+0100">
<containingElement elementType="invoke" elementName="conducatPayment" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="outputVariable" oldValue="" newValue="PaymentPLResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:35.040+0100">
<containingElement elementType="variable" elementName="PaymentPLResponse" elementXPath="/process/variables[1]/variable[14]"/>
<attribute attributeName="name" oldValue="PaymentPLResponse" newValue="conductPaymentResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:50:42.114+0100">
<containingElement elementType="variable" elementName="PaymentPLRequest" elementXPath="/process/variables[1]/variable[15]"/>
<attribute attributeName="name" oldValue="PaymentPLRequest" newValue="conductPaymentRequest"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:50:55.389+0100">
<parentElement elementType="assign" elementName="assignOrderID" elementXPath="/process/sequence[1]/assign[3]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[7]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:50:55.435+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[7]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:50:55.444+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[7]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:06.835+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[7]/from[1]"/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:06.837+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[7]/from[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:06.838+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[7]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:06.840+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[7]/from[1]"/>
<attribute attributeName="part" oldValue="" newValue="storeOrderDetailsOutput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:06.843+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[7]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="storeOrderDetailsResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:33.544+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:33.545+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:33.546+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:33.547+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue="" newValue="conductPaymentInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:33.551+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue="" newValue="conductPaymentRequest"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:51:35.398+0100">
<parentElement elementType="assign" elementName="assignOrderID" elementXPath="/process/sequence[1]/assign[3]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:51:35.411+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:51:35.421+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:51:35.434+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:51:35.434+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:51:35.441+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:51:35.441+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:51:46.270+0100">
<parentElement elementType="assign" elementName="AssignOutPut" elementXPath="/process/sequence[1]/assign[4]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:51:46.271+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:51:46.272+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:54.736+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[2]/to[1]"/>
<attribute attributeName="variable" oldValue="output"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:54.741+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[2]/to[1]"/>
<attribute attributeName="part" oldValue="payload"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:54.744+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[2]/to[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:54.750+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[2]/to[1]"/>
<attribute attributeName="part" oldValue="" newValue="conductPaymentInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:51:54.753+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[4]/copy[2]/to[1]"/>
<attribute attributeName="variable" oldValue="" newValue="conductPaymentRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:17.515+0100">
<containingElement elementType="assign" elementName="AssignOutPut" elementXPath="/process/sequence[1]/assign[4]"/>
<attribute attributeName="name" oldValue="AssignOutPut" newValue="AssignCost"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:25.432+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<newElement elementType="assign" elementName="" elementXPath="/process/sequence[1]/assign[5]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:25.443+0100">
<containingElement elementType="assign" elementName="" elementXPath="/process/sequence[1]/assign[5]"/>
<attribute attributeName="name" oldValue="" newValue="Assign"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:30.811+0100">
<containingElement elementType="assign" elementName="Assign" elementXPath="/process/sequence[1]/assign[5]"/>
<attribute attributeName="name" oldValue="Assign" newValue="AssignOutput"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:38.205+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[5]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:38.246+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:38.256+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:47.372+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:47.373+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:47.374+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:47.375+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="part" oldValue="" newValue="conductPaymentOutput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:47.379+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="conductPaymentResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:51.693+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:51.694+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:51.695+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:51.696+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue="" newValue="payload"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:52:51.698+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue="" newValue="output"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:52.691+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[5]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:52.701+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:52.711+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:52:52.722+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:52.722+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:52:52.728+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:52:52.728+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:05.283+0100">
<containingElement elementType="invoke" elementName="conducatPayment" elementXPath="/process/sequence[1]/invoke[6]"/>
<attribute attributeName="name" oldValue="conducatPayment" newValue="conductPayment"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:55:25.327+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<newElement elementType="invoke" elementName="" elementXPath="/process/sequence[1]/invoke[7]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:25.338+0100">
<containingElement elementType="invoke" elementName="" elementXPath="/process/sequence[1]/invoke[7]"/>
<attribute attributeName="name" oldValue="" newValue="Invoke"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:31.910+0100">
<containingElement elementType="invoke" elementName="Invoke" elementXPath="/process/sequence[1]/invoke[7]"/>
<attribute attributeName="name" oldValue="Invoke" newValue="shipProducts"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:55:38.439+0100">
<parentElement elementType="variables" elementName="" elementXPath="/process/variables[1]"/>
<newElement elementType="variable" elementName="ShipmentPLResponse" elementXPath="/process/variables[1]/variable[16]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:55:38.455+0100">
<parentElement elementType="variables" elementName="" elementXPath="/process/variables[1]"/>
<newElement elementType="variable" elementName="ShipmentPLRequest" elementXPath="/process/variables[1]/variable[17]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:38.455+0100">
<containingElement elementType="invoke" elementName="shipProducts" elementXPath="/process/sequence[1]/invoke[7]"/>
<attribute attributeName="partnerLink" oldValue="" newValue="ShipmentPL"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:38.466+0100">
<containingElement elementType="invoke" elementName="shipProducts" elementXPath="/process/sequence[1]/invoke[7]"/>
<attribute attributeName="operation" oldValue="" newValue="calcShipmentCosts"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:38.477+0100">
<containingElement elementType="invoke" elementName="shipProducts" elementXPath="/process/sequence[1]/invoke[7]"/>
<attribute attributeName="operation" oldValue="calcShipmentCosts" newValue="shipProducts"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:38.489+0100">
<containingElement elementType="invoke" elementName="shipProducts" elementXPath="/process/sequence[1]/invoke[7]"/>
<attribute attributeName="portType" oldValue="" newValue="ns:ShipmentPortType"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:38.498+0100">
<containingElement elementType="invoke" elementName="shipProducts" elementXPath="/process/sequence[1]/invoke[7]"/>
<attribute attributeName="inputVariable" oldValue="" newValue="ShipmentPLRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:38.515+0100">
<containingElement elementType="invoke" elementName="shipProducts" elementXPath="/process/sequence[1]/invoke[7]"/>
<attribute attributeName="outputVariable" oldValue="" newValue="ShipmentPLResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:55:52.708+0100">
<containingElement elementType="variable" elementName="ShipmentPLResponse" elementXPath="/process/variables[1]/variable[16]"/>
<attribute attributeName="name" oldValue="ShipmentPLResponse" newValue="shipProdctsResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:03.091+0100">
<containingElement elementType="variable" elementName="ShipmentPLRequest" elementXPath="/process/variables[1]/variable[17]"/>
<attribute attributeName="name" oldValue="ShipmentPLRequest" newValue="shipProductsRequest"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:56:28.204+0100">
<parentElement elementType="assign" elementName="assignOrderID" elementXPath="/process/sequence[1]/assign[3]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:56:28.246+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:56:28.255+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:53.010+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:53.012+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:53.014+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:53.016+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue="" newValue="shipProductsInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:53.021+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue="" newValue="shipProductsRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:54.923+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:54.924+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:54.925+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:56:54.927+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="calcOrderRequest"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:56:54.952+0100">
<parentElement elementType="assign" elementName="assignOrderID" elementXPath="/process/sequence[1]/assign[3]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:56:54.966+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:56:54.975+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:56:54.988+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:56:54.988+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:56:54.994+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:56:54.994+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:57:00.420+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="variable" oldValue="calcOrderRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:57:00.423+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:57:00.426+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:57:00.428+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="part" oldValue="" newValue="storeOrderDetailsOutput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:57:00.432+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[3]/copy[9]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="storeOrderDetailsResponse"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:57:37.800+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[5]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:57:37.801+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:57:37.801+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:57:38.239+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[5]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:57:38.239+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:57:38.240+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:57:39.012+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[5]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:57:39.026+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:57:39.038+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:08.275+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:08.276+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:08.277+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:08.279+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="part" oldValue="" newValue="shipProductsOutput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:08.283+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="shipProdctsResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:09.213+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:09.214+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:09.215+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:09.216+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue="" newValue="payload"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:58:09.220+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue="" newValue="output"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:58:10.075+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[5]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:58:10.083+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:58:10.095+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:58:10.109+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:58:10.109+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:58:10.114+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:58:10.114+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:16.213+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<newElement elementType="assign" elementName="" elementXPath="/process/sequence[1]/assign[5]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:59:16.223+0100">
<containingElement elementType="assign" elementName="" elementXPath="/process/sequence[1]/assign[5]"/>
<attribute attributeName="name" oldValue="" newValue="Assign"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:59:23.899+0100">
<containingElement elementType="assign" elementName="Assign" elementXPath="/process/sequence[1]/assign[5]"/>
<attribute attributeName="name" oldValue="Assign" newValue="shipDate"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:28.789+0100">
<parentElement elementType="assign" elementName="shipDate" elementXPath="/process/sequence[1]/assign[5]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:28.835+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:28.888+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:59:39.438+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:59:39.439+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:59:39.440+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:59:39.442+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue="" newValue="shipProductsInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-12T14:59:39.448+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue="" newValue="shipProductsRequest"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:41.055+0100">
<parentElement elementType="assign" elementName="shipDate" elementXPath="/process/sequence[1]/assign[5]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:41.067+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:41.077+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:59:41.092+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:41.092+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:59:41.101+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:41.101+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T14:59:44.427+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-12T14:59:44.427+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T15:00:43.946+0100">
<parentElement elementType="assign" elementName="shipDate" elementXPath="/process/sequence[1]/assign[5]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T15:00:43.946+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T15:00:43.946+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T15:00:44.312+0100">
<parentElement elementType="assign" elementName="shipDate" elementXPath="/process/sequence[1]/assign[5]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T15:00:44.312+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T15:00:44.313+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[5]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-12T15:00:47.638+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<oldElement elementType="assign" elementName="shipDate" elementXPath="/process/sequence[1]/assign[5]"/>
</modelChange>
</bplog:Log> </bplog:Log>
...@@ -16,6 +16,9 @@ ...@@ -16,6 +16,9 @@
</plnk:partnerLinkType> </plnk:partnerLinkType>
<plnk:partnerLinkType name="ShipmentPLT"> <plnk:partnerLinkType name="ShipmentPLT">
<plnk:role name="ShipmentService" portType="wsdl:ShipmentPortType"/> <plnk:role name="ShipmentService" portType="wsdl:ShipmentPortType"/>
</plnk:partnerLinkType>
<plnk:partnerLinkType name="PaymentPLT">
<plnk:role name="PaymentService" portType="wsdl:PaymentPortType"/>
</plnk:partnerLinkType> </plnk:partnerLinkType>
<import location="46.101.159.46.wsdl" namespace="http://iaas.uni-stuttgart.de/labs/FlowSOG"/> <import location="46.101.159.46.wsdl" namespace="http://iaas.uni-stuttgart.de/labs/FlowSOG"/>
<types> <types>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03" xmlns:FlowSOG="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:group12="group12"> <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03" xmlns:FlowSOG="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:group12="group12">
<process name="group12:ConductOrder84"> <process name="group12:ConductOrder84">
<metaData> <metaData>
<mdProperty name="version" value="45"/> <mdProperty name="version" value="234254"/>
</metaData> </metaData>
<active>true</active> <active>true</active>
<retired>false</retired> <retired>false</retired>
...@@ -19,5 +19,8 @@ ...@@ -19,5 +19,8 @@
<invoke partnerLink="ShipmentPL"> <invoke partnerLink="ShipmentPL">
<service name="FlowSOG:ShipmentService" port="ShipmentPort"/> <service name="FlowSOG:ShipmentService" port="ShipmentPort"/>
</invoke> </invoke>
<invoke partnerLink="PaymentPL">
<service name="FlowSOG:PaymentService" port="PaymentPort"/>
</invoke>
</process> </process>
</deploy> </deploy>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment