utilities
Class JPing

java.lang.Object
  extended by utilities.JPing

public class JPing
extends Object

The JPing class is used to determine if services are running.

JPing can be run as a command line program, as follows:

java utilities.JPing System [ options ]
Options:

-help
Displays the help text. The -help option may be abbreviated to -h or -?.
-service Service
Specifies the specific service to ping. The -service option may be abbreviated to -s. The valid services include: as-file, as-netprt, as-rmtcmd, as-dtaq, as-database, as-ddm, as-central, and as-signon. If this option is not specified, by default, all of the services will be pinged.
-ssl
Specifies whether or not to ping the ssl port(s). The default setting will not ping the ssl port(s).
-timeout
Specifies the timeout period in milliseconds. The -timeout option may be abbreviated to -t. The default setting is 20000 (20 sec).


Here is an example of calling JPing from the command line:

  java utilities.JPing myServer -service as-signon -ssl -timeout 10000
  
The JPing output will look something like the following:
  Verifying connections to system myServer...
  
  Successfully connected to server application: as-signon-s
  Connection Verified
  
To determine, in a program, if the services are running, use com.ibm.as400.access.AS400JPing.

See Also:
AS400JPing

Constructor Summary
Constructor and Description
JPing()
           
 
Method Summary
Modifier and Type Method and Description
static void main(String[] args)
          Run JPing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JPing

public JPing()
Method Detail

main

public static void main(String[] args)
Run JPing.