Added:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/bigbank.wsclient.composite
URL:
http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/bigbank.wsclient.composite?view=auto&rev=473873
==============================================================================
---
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/bigbank.wsclient.composite
(added)
+++
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/bigbank.wsclient.composite
Sat Nov 11 20:39:42 2006
@@ -0,0 +1,29 @@
+<?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="bigbank.wsclient">
+
+ <reference name="AccountService">
+ <interface.wsdl
interface="http://www.bigbank.com/AccountService#wsdl.interface(AccountService)"/>
+ <binding.ws
uri="http://localhost:9090axis2/services/AccountService"/>
+ </reference>
+
+</composite>
Propchange:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/bigbank.wsclient.composite
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/bigbank.wsclient.composite
------------------------------------------------------------------------------
svn:keywords = Rev Date
Added:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.bat
URL:
http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.bat?view=auto&rev=473873
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.bat
(added)
+++ incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.bat
Sat Nov 11 20:39:42 2006
@@ -0,0 +1,51 @@
[EMAIL PROTECTED] off
+
[EMAIL PROTECTED] Licensed to the Apache Software Foundation (ASF) under one
[EMAIL PROTECTED] or more contributor license agreements. See the NOTICE file
[EMAIL PROTECTED] distributed with this work for additional information
[EMAIL PROTECTED] regarding copyright ownership. The ASF licenses this file
[EMAIL PROTECTED] to you under the Apache License, Version 2.0 (the
[EMAIL PROTECTED] "License"); you may not use this file except in compliance
[EMAIL PROTECTED] with the License. You may obtain a copy of the License at
[EMAIL PROTECTED]
[EMAIL PROTECTED] http://www.apache.org/licenses/LICENSE-2.0
[EMAIL PROTECTED]
[EMAIL PROTECTED] Unless required by applicable law or agreed to in writing,
[EMAIL PROTECTED] software distributed under the License is distributed on an
[EMAIL PROTECTED] "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
[EMAIL PROTECTED] KIND, either express or implied. See the License for the
[EMAIL PROTECTED] specific language governing permissions and limitations
[EMAIL PROTECTED] under the License.
+
+setlocal
+
+if "%TUSCANY_SCACPP%" == "" (
+echo "TUSCANY_SCACPP not set"
+goto end
+)
+echo Using SCA installed at %TUSCANY_SCACPP%
+
+if "%TUSCANY_SDOCPP%" == "" (
+echo "TUSCANY_SDOCPP not set"
+goto end
+)
+echo Using SDO installed at %TUSCANY_SDOCPP%
+
+if "%AXIS2C_HOME%" == "" (
+echo "AXIS2C_HOME not set"
+goto end
+)
+echo Using Axis2C installed at %AXIS2C_HOME%
+
+set APFULLDIR=%~d0%~p0
+set TUSCANY_SCACPP_SYSTEM_ROOT=%~d0%~p0\..\
+set TUSCANY_SCACPP_DEFAULT_COMPONENT=bigbank.AccountManagementComponent
+
+rem Run the client
+set PATH=%TUSCANY_SCACPP%\bin;%TUSCANY_SDOCPP%\bin;%AXIS2C_HOME%\lib;%PATH%
+
+cd %TUSCANY_SCACPP_SYSTEM_ROOT%\bigbank.client
+ruby -I%TUSCANY_SCACPP%\extensions\ruby\lib AccountClient.rb
+
+:end
+endlocal
Propchange:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.bat
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.bat
------------------------------------------------------------------------------
svn:keywords = Rev Date
Added:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.sh
URL:
http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.sh?view=auto&rev=473873
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.sh
(added)
+++ incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.sh
Sat Nov 11 20:39:42 2006
@@ -0,0 +1,49 @@
+#!/bin/sh
+
+# 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.
+
+
+APFULLDIR=`pwd`
+
+if [ x$TUSCANY_SCACPP = x ]; then
+echo "TUSCANY_SCACPP not set"
+exit;
+fi
+echo "Using SCA installed at $TUSCANY_SCACPP"
+
+if [ x$TUSCANY_SDOCPP = x ]; then
+echo "TUSCANY_SDOCPP not set"
+exit;
+fi
+echo "Using SDO installed at $TUSCANY_SDOCPP"
+
+if [ x$AXIS2C_HOME = x ]; then
+echo "AXIS2C_HOME not set"
+exit;
+fi
+echo "Using Axis2C installed at $AXIS2C_HOME"
+
+TEST_SYSTEM=$APFULLDIR/../
+
+export
LD_LIBRARY_PATH=$TUSCANY_SCACPP/lib:$TUSCANY_SDOCPP/lib:$AXIS2C_HOME/lib:$LD_LIBRARY_PATH
+
+export TUSCANY_SCACPP_SYSTEM_ROOT=$TEST_SYSTEM
+export TUSCANY_SCACPP_DEFAULT_COMPONENT=bigbank.AccountWSClientComponent
+
+cd $TUSCANY_SCACPP_SYSTEM_ROOT/bigbank.wsclient
+ruby -I$TUSCANY_SCACPP/extensions/ruby/lib AccountWSClient.rb
Propchange:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.sh
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.sh
------------------------------------------------------------------------------
svn:executable = *
Propchange:
incubator/tuscany/cpp/sca/samples/RubyBank/bigbank.wsclient/runwsclient.sh
------------------------------------------------------------------------------
svn:keywords = Rev Date
Modified: incubator/tuscany/cpp/sca/samples/configure.ac
URL:
http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/configure.ac?view=diff&rev=473873&r1=473872&r2=473873
==============================================================================
--- incubator/tuscany/cpp/sca/samples/configure.ac (original)
+++ incubator/tuscany/cpp/sca/samples/configure.ac Sat Nov 11 20:39:42 2006
@@ -164,5 +164,6 @@
RubyBank/Makefile
RubyBank/bigbank.account/Makefile
RubyBank/bigbank.client/Makefile
+ RubyBank/bigbank.wsclient/Makefile
])
AC_OUTPUT
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]