You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2006/10/06 07:07:33 UTC

svn commit: r453499 [2/2] - in /incubator/tuscany/cpp/sca: runtime/core/src/tuscany/sca/core/ runtime/core/src/tuscany/sca/model/ samples/BigBank/ samples/BigBank/bigbank.account/ samples/BigBank/bigbank.accountmanagement/ samples/Calculator/ samples/C...

Added: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.solution.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.solution.composite?view=auto&rev=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.solution.composite (added)
+++ incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.solution.composite Thu Oct  5 22:07:31 2006
@@ -0,0 +1,32 @@
+<?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"
+	name="sample.calculator.solution">
+	
+        <component name="sample.calculator.CalculatorComponent">
+        	<implementation.composite name="sample.calculator" />
+       	</component>
+
+        <component name="sample.calculator.CalculatorWSClientComponent">
+        	<implementation.composite name="sample.calculator.wsclient" />
+       	</component>
+
+</composite>

Propchange: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.solution.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.solution.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/Makefile.am?view=diff&rev=453499&r1=453498&r2=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/Makefile.am (original)
+++ incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/Makefile.am Thu Oct  5 22:07:31 2006
@@ -1,5 +1,5 @@
 deploydir=$(prefix)/samples/RubyCalculator/deploy
-wsclientdir=$(deploydir)/packages/sample.calculator.wsclient
+wsclientdir=$(deploydir)/sample.calculator.wsclient
 prgbindir=$(deploydir)/bin
 
 wsclient_DATA = *.rb *.wsdl *.composite

Modified: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/runwsclient.bat
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/runwsclient.bat?view=diff&rev=453499&r1=453498&r2=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/runwsclient.bat (original)
+++ incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/runwsclient.bat Thu Oct  5 22:07:31 2006
@@ -42,7 +42,7 @@
 
 set PATH=%TUSCANY_SCACPP%\bin;%TUSCANY_SDOCPP%\bin;%AXIS2C_HOME%\lib;%PATH%
 
-cd %TUSCANY_SCACPP_SYSTEM_ROOT%\packages\sample.calculator.wsclient
+cd %TUSCANY_SCACPP_SYSTEM_ROOT%\sample.calculator.wsclient
 ruby -I%TUSCANY_SCACPP%\extensions\ruby\lib CalculatorWSClient.rb
 
 :end

Modified: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/runwsclient.sh
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/runwsclient.sh?view=diff&rev=453499&r1=453498&r2=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/runwsclient.sh (original)
+++ incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/runwsclient.sh Thu Oct  5 22:07:31 2006
@@ -44,5 +44,5 @@
 export TUSCANY_SCACPP_SYSTEM_ROOT=$TEST_SYSTEM
 export TUSCANY_SCACPP_DEFAULT_COMPONENT=sample.calculator.CalculatorWSClientComponent
 
-cd $TUSCANY_SCACPP_SYSTEM_ROOT/packages/sample.calculator.wsclient
+cd $TUSCANY_SCACPP_SYSTEM_ROOT/sample.calculator.wsclient
 ruby -I$TUSCANY_SCACPP/extensions/ruby/lib CalculatorWSClient.rb

Modified: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am?view=diff&rev=453499&r1=453498&r2=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am (original)
+++ incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am Thu Oct  5 22:07:31 2006
@@ -1,5 +1,5 @@
 deploydir=$(prefix)/samples/RubyCalculator/deploy
-compositedir=$(deploydir)/packages/sample.calculator
+compositedir=$(deploydir)/sample.calculator
 prgbindir=$(deploydir)/bin
 
 prgbin_SCRIPTS = runwsserver.sh

Added: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.demo.solution.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.demo.solution.composite?view=auto&rev=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.demo.solution.composite (added)
+++ incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.demo.solution.composite Thu Oct  5 22:07:31 2006
@@ -0,0 +1,34 @@
+<?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"
+	name="supplychain.demo.solution">
+
+	<component name="supplychain.DemoClient">
+		<implementation.composite name="supplychain.demo"/>
+		<reference name="retailer">supplychain.Retailer/RetailerService</reference>
+		<reference name="logging">supplychain.Logging/LoggingService</reference>
+	</component>
+	
+	<component name="supplychain.Logging">
+		<implementation.composite name="supplychain.logging"/>
+	</component>
+	
+</composite>

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.demo.solution.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.demo.solution.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerA.solution.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerA.solution.composite?view=auto&rev=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerA.solution.composite (added)
+++ incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerA.solution.composite Thu Oct  5 22:07:31 2006
@@ -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"
+	name="supplychain.manufacturerA.solution">
+
+	<component name="supplychain.manufacturerA">
+		<implementation.composite name="supplychain.manufacturer"/>
+		<reference name="logging">supplychain.Logging/LoggingService</reference>
+		<property name="manufacturerID">manufacturerA</property>
+	</component>
+	
+</composite>

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerA.solution.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerA.solution.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerB.solution.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerB.solution.composite?view=auto&rev=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerB.solution.composite (added)
+++ incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerB.solution.composite Thu Oct  5 22:07:31 2006
@@ -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"
+	name="supplychain.manufacturerB.solution">
+
+	<component name="supplychain.manufacturerB">
+		<implementation.composite name="supplychain.manufacturer"/>
+		<reference name="logging">supplychain.Logging/LoggingService</reference>
+		<property name="manufacturerID">manufacturerB</property>
+	</component>
+	
+</composite>

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerB.solution.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerB.solution.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerC.solution.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerC.solution.composite?view=auto&rev=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerC.solution.composite (added)
+++ incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerC.solution.composite Thu Oct  5 22:07:31 2006
@@ -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"
+	name="supplychain.manufacturerC.solution">
+
+	<component name="supplychain.manufacturerC">
+		<implementation.composite name="supplychain.manufacturer"/>
+		<reference name="logging">supplychain.Logging/LoggingService</reference>
+		<property name="manufacturerID">manufacturerC</property>
+	</component>
+	
+</composite>

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerC.solution.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.manufacturerC.solution.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.retailer.solution.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.retailer.solution.composite?view=auto&rev=453499
==============================================================================
--- incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.retailer.solution.composite (added)
+++ incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.retailer.solution.composite Thu Oct  5 22:07:31 2006
@@ -0,0 +1,66 @@
+<?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"
+	name="supplychain.retailer.solution">
+
+	<component name="supplychain.Retailer">
+		<implementation.composite name="supplychain.retailer"/>
+		<reference name="warehouse">supplychain.WarehouseA/WarehouseService</reference>
+		<reference name="warehouse">supplychain.WarehouseB/WarehouseService</reference>
+		<reference name="warehouse">supplychain.WarehouseC/WarehouseService</reference>
+		<reference name="logging">supplychain.Logging/LoggingService</reference>
+	</component>
+	
+	<component name="supplychain.WarehouseA">
+		<implementation.composite name="supplychain.warehouse"/>
+		<reference name="manufacturer">supplychain.manufacturerA/ManufacturerService</reference>
+		<reference name="logging">supplychain.Logging/LoggingService</reference>
+		<property name="warehouseID">warehouseA</property>
+	</component>
+	
+	<component name="supplychain.WarehouseB">
+		<implementation.composite name="supplychain.warehouse"/>
+		<reference name="manufacturer">supplychain.manufacturerB/ManufacturerService</reference>
+		<reference name="logging">supplychain.Logging/LoggingService</reference>
+		<property name="warehouseID">warehouseB</property>
+	</component>
+	
+	<component name="supplychain.WarehouseC">
+		<implementation.composite name="supplychain.warehouse"/>
+		<reference name="manufacturer">supplychain.manufacturerA/ManufacturerService</reference>
+		<reference name="logging">supplychain.Logging/LoggingService</reference>
+		<property name="warehouseID">warehouseC</property>
+	</component>
+	
+	<wire>
+		<source>supplychain.manufacturerA/callback</source>
+		<target>supplychain.WarehouseA/WarehouseCallbackService</target>
+	</wire>
+	<wire>
+		<source>supplychain.manufacturerB/callback</source>
+		<target>supplychain.WarehouseB/WarehouseCallbackService</target>
+	</wire>
+	<wire>
+		<source>supplychain.manufacturerC/callback</source>
+		<target>supplychain.WarehouseC/WarehouseCallbackService</target>
+	</wire>
+	
+</composite>

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.retailer.solution.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/SupplyChain/supplychain.retailer.solution.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org