You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by je...@apache.org on 2002/07/08 02:23:04 UTC

cvs commit: jakarta-avalon-apps/demo/src/java/org/apache/avalon/apps/demos/rmihelloworldserver RMIHelloWorldClient.java

jefft       2002/07/07 17:23:04

  Modified:    demo/src/java/org/apache/avalon/apps/demos/rmihelloworldserver
                        RMIHelloWorldClient.java
  Log:
  Get working with new package name (cornerstone -> apps), and add some cmdline
  error handling
  
  Revision  Changes    Path
  1.3       +6 -1      jakarta-avalon-apps/demo/src/java/org/apache/avalon/apps/demos/rmihelloworldserver/RMIHelloWorldClient.java
  
  Index: RMIHelloWorldClient.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-apps/demo/src/java/org/apache/avalon/apps/demos/rmihelloworldserver/RMIHelloWorldClient.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- RMIHelloWorldClient.java	14 May 2002 11:02:55 -0000	1.2
  +++ RMIHelloWorldClient.java	8 Jul 2002 00:23:04 -0000	1.3
  @@ -14,18 +14,23 @@
    * Client for <code>RMIHelloWorldServer</code>.
    *
    * @author <a href="mailto:colus@apache.org">Eung-ju Park</a>
  + * @author <a href="mailto:jefft@apache.org">Jeff Turner</a>
    */
   public class RMIHelloWorldClient
   {
       public static void main( final String[] args )
           throws Exception
       {
  +        if (args.length != 3) {
  +            System.err.println("Usage: "+RMIHelloWorldClient.class.getName()+" <host> <port> <text>");
  +            return;
  +        }
           final String host = args[ 0 ];
           final int port = Integer.parseInt( args[ 1 ] );
           final String yourName = args[ 2 ];
   
           final Registry registry = LocateRegistry.getRegistry( host, port );
  -        final RMIHelloWorldServer server = (RMIHelloWorldServer)registry.lookup( "org/apache/avalon/cornerstone/demos/rmihelloworldserver/RMIHelloWorldServer" );
  +        final RMIHelloWorldServer server = (RMIHelloWorldServer)registry.lookup( "org/apache/avalon/apps/demos/rmihelloworldserver/RMIHelloWorldServer" );
           System.out.println( "sayHello( " + yourName + " ): " + server.sayHello( yourName ) );
       }
   }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>