package org.jacorb.test.notification; /* * JacORB - a free Java ORB * * Copyright (C) 1999-2014 Gerald Brose / The JacORB Team. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ import java.io.PrintWriter; import java.net.Socket; import org.omg.CORBA.ORB; import org.omg.PortableServer.POA; import org.omg.PortableServer.POAHelper; import org.omg.PortableServer.Servant; /** * @author Alphonse Bendt */ public class TestServer { public static void main(String[] args) throws Exception { String _servantClassName = args[0]; int _portToSendIorTo = Integer.parseInt(args[1]); try { // init ORB ORB orb = ORB.init(args, null); // init POA POA poa = POAHelper.narrow(orb.resolve_initial_references("RootPOA")); poa.the_POAManager().activate(); Class _servantClass = Class.forName(_servantClassName); Servant _servant = (Servant) _servantClass.newInstance(); // create the object reference org.omg.CORBA.Object o = poa.servant_to_reference(_servant); Socket _socket = new Socket("localhost", _portToSendIorTo); PrintWriter _out = new PrintWriter(_socket.getOutputStream(), true); _out.println(orb.object_to_string(o)); _out.flush(); _out.close(); _socket.close(); // wait for requests orb.run(); } catch (Throwable e) { // ignored } } }