From f8ca3972868ddfad816ccdc0110fe7772b2b4708 Mon Sep 17 00:00:00 2001 From: lresende Date: Sat, 23 Jan 2010 20:45:20 +0000 Subject: TUSCANY-3438 - Adding calculator-corba samples to 1.6 binary distribution git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@902486 13f79535-47bb-0310-9956-ffa450edef68 --- .../samples/calculator-corba-service/build.xml | 72 ++++++++++++++++++++++ .../samples/calculator-corba-service/pom.xml | 62 +++++++++---------- .../java/calculator/CalculatorCORBAServer.java | 44 +++++++++++++ 3 files changed, 147 insertions(+), 31 deletions(-) create mode 100644 sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/build.xml create mode 100644 sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/src/main/java/calculator/CalculatorCORBAServer.java (limited to 'sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service') diff --git a/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/build.xml b/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/build.xml new file mode 100644 index 0000000000..9720cef593 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/build.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/pom.xml b/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/pom.xml index 466a8004a5..54839fe626 100644 --- a/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/pom.xml @@ -35,37 +35,37 @@ - - - org.apache.tuscany.sca - tuscany-host-embedded - 1.6-SNAPSHOT - - - org.apache.tuscany.sca - tuscany-implementation-java-runtime - 1.6-SNAPSHOT - runtime - - - org.apache.tuscany.sca - tuscany-binding-corba-runtime - 1.6-SNAPSHOT - runtime - - - org.apache.tuscany.sca - tuscany-host-corba-jse-tns - 1.6-SNAPSHOT - runtime - - - junit - junit - 4.5 - test - - + + + org.apache.tuscany.sca + tuscany-host-embedded + 1.6-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 1.6-SNAPSHOT + runtime + + + org.apache.tuscany.sca + tuscany-binding-corba-runtime + 1.6-SNAPSHOT + runtime + + + org.apache.tuscany.sca + tuscany-host-corba-jse-tns + 1.6-SNAPSHOT + runtime + + + junit + junit + 4.5 + test + + ${artifactId} diff --git a/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/src/main/java/calculator/CalculatorCORBAServer.java b/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/src/main/java/calculator/CalculatorCORBAServer.java new file mode 100644 index 0000000000..aa6154e25a --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.6/samples/calculator-corba-service/src/main/java/calculator/CalculatorCORBAServer.java @@ -0,0 +1,44 @@ +/* + * 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. + */ + +package calculator; + +import java.io.IOException; + +import org.apache.tuscany.sca.host.embedded.SCADomain; + +public class CalculatorCORBAServer { + + public static void main(String[] args) { + SCADomain scaDomain; + try { + scaDomain = SCADomain.newInstance("CalculatorCORBAServer.composite"); + + System.out.println("Calculator CORBA server started (press enter to shutdown)"); + System.in.read(); + scaDomain.close(); + System.out.println("Calculator CORBA server stopped"); + } catch (IOException e) { + e.printStackTrace(); + } + + + } + +} -- cgit v1.2.3