summaryrefslogtreecommitdiffstats
path: root/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient
diff options
context:
space:
mode:
Diffstat (limited to 'tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient')
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/AccountService.wsdl126
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/AccountWSClient.rb40
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/Makefile.am6
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/bigbank.wsclient.composite29
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/runwsclient.bat51
-rwxr-xr-xtags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/runwsclient.sh48
6 files changed, 0 insertions, 300 deletions
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/AccountService.wsdl b/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/AccountService.wsdl
deleted file mode 100644
index b83c453462..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/AccountService.wsdl
+++ /dev/null
@@ -1,126 +0,0 @@
-<?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.
--->
-
-<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.bigbank.com/AccountService"
- xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.bigbank.com/AccountService"
- name="AccountService">
-
- <wsdl:types>
- <xsd:schema
- targetNamespace="http://www.bigbank.com/AccountService"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-
- <xsd:element name="getAccountReport">
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element name="customerID"
- type="xsd:string" />
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
-
- <xsd:element name="getAccountReportResponse">
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element name="result"
- type="tns:AccountReport" />
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
-
- <xsd:complexType name="AccountReport">
- <xsd:sequence>
- <xsd:element name="checking"
- type="tns:CheckingAccount" maxOccurs="unbounded" />
- <xsd:element name="savings"
- type="tns:SavingsAccount" maxOccurs="unbounded" />
- <xsd:element name="stocks" type="tns:StockAccount"
- maxOccurs="unbounded" />
- </xsd:sequence>
- </xsd:complexType>
-
- <xsd:complexType name="StockAccount">
- <xsd:sequence>
- <xsd:element name="accountNumber" type="xsd:string" />
- <xsd:element name="symbol" type="xsd:string" />
- <xsd:element name="quantity" type="xsd:integer" />
- <xsd:element name="balance" type="xsd:float" />
- </xsd:sequence>
- </xsd:complexType>
-
- <xsd:complexType name="CheckingAccount">
- <xsd:sequence>
- <xsd:element name="accountNumber" type="xsd:string" />
- <xsd:element name="balance" type="xsd:float" />
- </xsd:sequence>
- </xsd:complexType>
-
- <xsd:complexType name="SavingsAccount">
- <xsd:sequence>
- <xsd:element name="accountNumber" type="xsd:string" />
- <xsd:element name="balance" type="xsd:float" />
- </xsd:sequence>
- </xsd:complexType>
- </xsd:schema>
- </wsdl:types>
-
- <wsdl:message name="getAccountReportRequest">
- <wsdl:part element="tns:getAccountReport"
- name="getAccountReportRequest" />
- </wsdl:message>
-
- <wsdl:message name="getAccountReportResponse">
- <wsdl:part element="tns:getAccountReportResponse"
- name="getAccountReportResponse" />
- </wsdl:message>
-
- <wsdl:portType name="AccountService">
- <wsdl:operation name="getAccountReport">
- <wsdl:input message="tns:getAccountReportRequest" />
- <wsdl:output message="tns:getAccountReportResponse" />
- </wsdl:operation>
- </wsdl:portType>
-
- <wsdl:binding name="AccountServiceSOAP" type="tns:AccountService">
- <soap:binding style="document"
- transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="getAccountReport">
- <soap:operation
- soapAction="http://www.bigbank.com/AccountService/getAccountReport" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
-
- <wsdl:service name="AccountService">
- <wsdl:port binding="tns:AccountServiceSOAP"
- name="AccountServiceSOAP">
- <soap:address
- location="http://localhost:9090/axis2/services/bigbank.AccountManagementComponent/AccountService" />
- </wsdl:port>
- </wsdl:service>
-</wsdl:definitions>
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/AccountWSClient.rb b/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/AccountWSClient.rb
deleted file mode 100644
index 6775b80f7a..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/AccountWSClient.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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.
-#
-#
-
-require("tuscany_sca_ruby")
-
-accountService = SCA::locateService("AccountService")
-
-report = accountService.getAccountReport(1234)
-
-checking = report.root.elements["checking"]
-savings = report.root.elements["savings"]
-stocks = report.root.elements["stocks"]
-
-print "\n\n"
-print "Checking account #: ", checking.elements["accountNumber"].text.strip, "\n"
-print "Balance: ", checking.elements["balance"].text.strip, "\n"
-
-print "Savings account #: ", savings.elements["accountNumber"].text.strip, "\n"
-print "Balance: ", savings.elements["balance"].text.strip, "\n"
-
-print "Stocks account #:", stocks.elements["accountNumber"].text.strip, "\n"
-print "Symbol: ", stocks.elements["symbol"].text.strip, "\n"
-print "Quantity: ", stocks.elements["quantity"].text.strip, "\n"
-print "Balance: ", stocks.elements["balance"].text.strip, "\n"
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/Makefile.am b/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/Makefile.am
deleted file mode 100644
index 69becca3d5..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-deploydir=$(prefix)/samples/HttpdBigBank/deploy
-clientdir=$(deploydir)/bigbank.wsclient
-
-client_DATA = *.rb *.composite *.wsdl
-client_SCRIPTS = runwsclient.sh
-EXTRA_DIST = runwsclient.sh *.rb *.composite *.wsdl
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/bigbank.wsclient.composite b/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/bigbank.wsclient.composite
deleted file mode 100644
index f484a2fc7c..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/bigbank.wsclient.composite
+++ /dev/null
@@ -1,29 +0,0 @@
-<?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/>
- </reference>
-
-</composite>
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/runwsclient.bat b/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/runwsclient.bat
deleted file mode 100644
index 05d0ee2153..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/runwsclient.bat
+++ /dev/null
@@ -1,51 +0,0 @@
-@echo off
-
-@REM Licensed to the Apache Software Foundation (ASF) under one
-@REM or more contributor license agreements. See the NOTICE file
-@REM distributed with this work for additional information
-@REM regarding copyright ownership. The ASF licenses this file
-@REM to you under the Apache License, Version 2.0 (the
-@REM "License"); you may not use this file except in compliance
-@REM with the License. You may obtain a copy of the License at
-@REM
-@REM http://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM Unless required by applicable law or agreed to in writing,
-@REM software distributed under the License is distributed on an
-@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-@REM KIND, either express or implied. See the License for the
-@REM specific language governing permissions and limitations
-@REM 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%
-
-rem Run the client
-set PATH=%TUSCANY_SCACPP%\extensions\ruby\bin;%TUSCANY_SCACPP%\bin;%TUSCANY_SCACPP%\extensions\ws\reference\bin;%TUSCANY_SCACPP%\extensions\ws\service\bin;%TUSCANY_SDOCPP%\bin;%AXIS2C_HOME%\lib;%PATH%
-
-set TUSCANY_SCACPP_ROOT=%~d0%~p0\..\
-set TUSCANY_SCACPP_COMPONENT=bigbank.AccountWSClientComponent
-set TUSCANY_SCACPP_BASE_URI=http://localhost:9090
-
-cd %TUSCANY_SCACPP_ROOT%\bigbank.wsclient
-ruby -I%TUSCANY_SCACPP%\extensions\ruby\bin AccountWSClient.rb
-
-:end
-endlocal
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/runwsclient.sh b/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/runwsclient.sh
deleted file mode 100755
index d50e6a4b0a..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/samples/HttpdBigBank/bigbank.wsclient/runwsclient.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/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"
-
-export LD_LIBRARY_PATH=$TUSCANY_SCACPP/extensions/ruby/lib:$TUSCANY_SCACPP/lib:$TUSCANY_SDOCPP/lib:$AXIS2C_HOME/lib:$LD_LIBRARY_PATH
-
-export TUSCANY_SCACPP_ROOT=$APFULLDIR/../
-export TUSCANY_SCACPP_COMPONENT=bigbank.AccountWSClientComponent
-export TUSCANY_SCACPP_BASE_URI=http://localhost:9090
-
-cd $TUSCANY_SCACPP_ROOT/bigbank.wsclient
-ruby -I$TUSCANY_SCACPP/extensions/ruby/lib AccountWSClient.rb