diff options
author | jestin | 2006-07-11 13:57:07 +0000 |
---|---|---|
committer | jestin | 2006-07-11 13:57:07 +0000 |
commit | c9dbee9c2fb98a3ca467ac82a97a9d6f3dba9737 (patch) | |
tree | 19df9d4d9a3874f0a96a9ae6cee6716fe48bd9fd /src/IvyHttpGatewayTest.java | |
parent | 5acff6b70cee194fbb74df827618169d2e2a6499 (diff) | |
download | ivy-java-c9dbee9c2fb98a3ca467ac82a97a9d6f3dba9737.zip ivy-java-c9dbee9c2fb98a3ca467ac82a97a9d6f3dba9737.tar.gz ivy-java-c9dbee9c2fb98a3ca467ac82a97a9d6f3dba9737.tar.bz2 ivy-java-c9dbee9c2fb98a3ca467ac82a97a9d6f3dba9737.tar.xz |
voir chaque fichier pour les modifs.
Je rajoute les servlets dans la base, j'essayerai de fabriquer un ant file
pour les construire
Diffstat (limited to 'src/IvyHttpGatewayTest.java')
-rw-r--r-- | src/IvyHttpGatewayTest.java | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/IvyHttpGatewayTest.java b/src/IvyHttpGatewayTest.java new file mode 100644 index 0000000..e8de0aa --- /dev/null +++ b/src/IvyHttpGatewayTest.java @@ -0,0 +1,42 @@ +/* + * IvyHttpGatewayTest.java + * Created on 18 avril 2005, 20:25 + */ + +package fr.dgac.ivy.tools; + + +/** + * Dynamic tests of the light remote client for the Ivy HTTP Gateway. + * <br><br> + * + * <strong>License:</strong><br> + * + * See IvyHttpGatewayServlet + * + * @see IvyHttpGatewayClient + * @see IvyHttpGatewayServlet + * @see fr.dgac.ivy + * @author Francis JAMBON - CLIPS-IMAG/MultiCom + * @version See IvyHttpGatewayClient + */ +public class IvyHttpGatewayTest { + + /** + * Main method: for testing purpose. + * @param args command line arguments (not used) + */ + public static void main(String[] args) { + System.out.println("### START OF TEST ###"); + IvyHttpGatewayClient test = new IvyHttpGatewayClient( + "test", + "http://localhost:8084/Ivy-HttpGateway/IvyHttpGatewayServlet"); + test.start( + "228.1.2.4:5678"); + test.sendMsg( + "hello"); + test.stop(); + System.out.println("### END OF TEST ###"); + } + +} |