project init
This commit is contained in:
58
oms/src/test/java/com/ExampleClient.java
Normal file
58
oms/src/test/java/com/ExampleClient.java
Normal file
@@ -0,0 +1,58 @@
|
||||
package com;
|
||||
|
||||
|
||||
import org.java_websocket.client.WebSocketClient;
|
||||
import org.java_websocket.drafts.Draft;
|
||||
import org.java_websocket.handshake.ServerHandshake;
|
||||
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* This example demonstrates how to create a websocket connection to a server. Only the most important callbacks are overloaded.
|
||||
*/
|
||||
public class ExampleClient extends WebSocketClient {
|
||||
|
||||
public ExampleClient(URI serverUri, Draft draft) {
|
||||
super(serverUri, draft);
|
||||
}
|
||||
|
||||
public ExampleClient(URI serverURI) {
|
||||
super(serverURI);
|
||||
}
|
||||
|
||||
public ExampleClient(URI serverUri, Map<String, String> httpHeaders) {
|
||||
super(serverUri, httpHeaders);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onOpen(ServerHandshake handshakedata) {
|
||||
send("Hello, it is me. Mario :)");
|
||||
System.out.println("opened connection");
|
||||
// if you plan to refuse connection based on ip or httpfields overload: onWebsocketHandshakeReceivedAsClient
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMessage(String message) {
|
||||
System.out.println("received: " + message);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClose(int code, String reason, boolean remote) {
|
||||
// The codecodes are documented in class org.java_websocket.framing.CloseFrame
|
||||
System.out.println("Connection closed by " + (remote ? "remote peer" : "us") + " Code: " + code + " Reason: " + reason);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(Exception ex) {
|
||||
ex.printStackTrace();
|
||||
// if the error is fatal then onClose will be called additionally
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws URISyntaxException {
|
||||
ExampleClient c = new ExampleClient(new URI("ws://localhost:8887")); // more about drafts here: http://github.com/TooTallNate/Java-WebSocket/wiki/Drafts
|
||||
c.connect();
|
||||
}
|
||||
|
||||
}
|
||||
14
oms/src/test/java/com/TestWebSocket.java
Normal file
14
oms/src/test/java/com/TestWebSocket.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package com;
|
||||
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
|
||||
public class TestWebSocket {
|
||||
|
||||
|
||||
public static void main(String args[]) throws URISyntaxException {
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user