From e0dfff0c88d03888baabf071f29cb489e7c1228a Mon Sep 17 00:00:00 2001 From: mcombellack Date: Thu, 21 May 2009 23:06:20 +0000 Subject: Initial commit of SMS Gateway CORBA service that is used by the notification contribution git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@777308 13f79535-47bb-0310-9956-ffa450edef68 --- .../services/smsgateway-corba-service/pom.xml | 70 ++++++++++++++++++++++ .../SMSGatewayCORBAServiceBootstrap.java | 56 +++++++++++++++++ .../scatours/smsgateway/SMSGatewayServiceImpl.java | 31 ++++++++++ .../src/main/resources/sms-gateway.idl | 26 ++++++++ 4 files changed, 183 insertions(+) create mode 100644 sandbox/travelsample/services/smsgateway-corba-service/pom.xml create mode 100644 sandbox/travelsample/services/smsgateway-corba-service/src/main/java/scatours/smsgateway/SMSGatewayCORBAServiceBootstrap.java create mode 100644 sandbox/travelsample/services/smsgateway-corba-service/src/main/java/scatours/smsgateway/SMSGatewayServiceImpl.java create mode 100644 sandbox/travelsample/services/smsgateway-corba-service/src/main/resources/sms-gateway.idl (limited to 'sandbox/travelsample/services') diff --git a/sandbox/travelsample/services/smsgateway-corba-service/pom.xml b/sandbox/travelsample/services/smsgateway-corba-service/pom.xml new file mode 100644 index 0000000000..99885194d8 --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-corba-service/pom.xml @@ -0,0 +1,70 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 1.5-SNAPSHOT + + + smsgateway-corba-service + Apache Tuscany SCA Tours SMS Gateway CORBA Service + + + + junit + junit + 4.5 + test + + + + + ${artifactId} + + + org.codehaus.mojo + idlj-maven-plugin + 1.1 + + + + generate + + + + + idlj + + + + sms-gateway.idl + + false + true + + + ${basedir}/src/main/resources + + + + + diff --git a/sandbox/travelsample/services/smsgateway-corba-service/src/main/java/scatours/smsgateway/SMSGatewayCORBAServiceBootstrap.java b/sandbox/travelsample/services/smsgateway-corba-service/src/main/java/scatours/smsgateway/SMSGatewayCORBAServiceBootstrap.java new file mode 100644 index 0000000000..fbe06f71ee --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-corba-service/src/main/java/scatours/smsgateway/SMSGatewayCORBAServiceBootstrap.java @@ -0,0 +1,56 @@ +/* + * 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 scatours.smsgateway; + +import org.omg.CORBA.ORB; +import org.omg.CosNaming.NameComponent; +import org.omg.CosNaming.NamingContextExt; +import org.omg.CosNaming.NamingContextExtHelper; + +public class SMSGatewayCORBAServiceBootstrap { + + public static void main(String[] args) throws Exception { + System.out.println("Publishing SMS Gateway Service as a CORBA service"); + + String[] orbArgs = {"-ORBInitialPort", "5080"}; + ORB orb = ORB.init( orbArgs, null ); + + NamingContextExt namingCtx; + try + { + org.omg.CORBA.Object objRef = orb.resolve_initial_references("NameService"); + namingCtx = NamingContextExtHelper.narrow(objRef); + } catch (Exception ex) { + System.err.println("ERROR: Failed to resolve Name Service."); + System.err.println("Don't forget to run it with:"); + System.err.println(" tnameserv -ORBInitialPort 5080"); + return; + } + + SMSGatewayServiceImpl smsGateway = new SMSGatewayServiceImpl(); + + String corbaServerName = "SMSGatewayCORBAService"; + NameComponent[] name = { new NameComponent(corbaServerName, "") }; + + namingCtx.rebind(name, smsGateway); + + System.out.println("CORBA server running - waiting for requests"); + orb.run(); + } +} diff --git a/sandbox/travelsample/services/smsgateway-corba-service/src/main/java/scatours/smsgateway/SMSGatewayServiceImpl.java b/sandbox/travelsample/services/smsgateway-corba-service/src/main/java/scatours/smsgateway/SMSGatewayServiceImpl.java new file mode 100644 index 0000000000..5e79686d34 --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-corba-service/src/main/java/scatours/smsgateway/SMSGatewayServiceImpl.java @@ -0,0 +1,31 @@ +/* + * 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 scatours.smsgateway; + + +public class SMSGatewayServiceImpl extends _SMSGatewayImplBase { + + public boolean sendSMS(String fromNumber, String toNumber, String text) { + System.out.println("Sending SMS message"); + System.out.println("From: " + fromNumber); + System.out.println("To: " + toNumber); + System.out.println("Message: " + text); + return true; + } +} diff --git a/sandbox/travelsample/services/smsgateway-corba-service/src/main/resources/sms-gateway.idl b/sandbox/travelsample/services/smsgateway-corba-service/src/main/resources/sms-gateway.idl new file mode 100644 index 0000000000..30a87f5c7a --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-corba-service/src/main/resources/sms-gateway.idl @@ -0,0 +1,26 @@ +/* + * 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. + */ + + module scatours { + module smsgateway { + interface SMSGateway { + boolean sendSMS(in string fromNumber, in string toNumber, in string text); + }; + }; +}; -- cgit v1.2.3