gpt4 book ai didi

javascript - 使用 WebSocket 连接到服务器时连接被拒绝

转载 作者:太空宇宙 更新时间:2023-11-03 10:59:26 24 4
gpt4 key购买 nike

我正在尝试从我的 android 应用程序连接到 glassFish-server4.1.1但在 90000 毫秒后给我错误无法连接到/localhost(端口 8080)我更改服务器上的端口但给我同样的错误……

它仅在 netbeans 上连接到服务器但在 android 上给我失败并低于我的代码

服务器代码`

 @ServerEndpoint("/echo") 

公共(public)类 WebSocketClass {

 /**
* @param session
* @OnOpen allows us to intercept the creation of a new session.
* The session class allows us to send data to the user.
* In the method onOpen, we'll let the user know that the handshake was
* successful.
*/


@OnOpen
public void onOpen(Session session){
System.out.println(session.getId() + " has opened a connection");
try {
session.getBasicRemote().sendText("Connection Established");
} catch (IOException ex) {
}
}

/**
* When a user sends a message to the server, this method will intercept the message
* and allow us to react to it. For now the message is read as a String.
* @param message
* @param session
*/
@OnMessage
public void onMessage12(String message, Session session){
System.out.println("Message from " + session.getId() + ": " + message);
try {
session.getBasicRemote().sendText(message);
} catch (IOException ex) {
}
}

/**
* The user closes the connection.
*
* Note: you can't send messages to the client from this method
* @param session
*/
@OnClose
public void onClose(Session session){
System.out.println("Session " +session.getId()+" has ended");
}}

客户端代码

private void connectWebSocket() {
URI uri;
try {
uri = new URI("ws://localhost:8080/WebApplication1/echo");
} catch (URISyntaxException e) {
e.printStackTrace();
return;
}

mWebSocketClient = new WebSocketClient(uri) {
@Override
public void onOpen(ServerHandshake serverHandshake) {
Log.i("Websocket", "Opened");
mWebSocketClient.send("Hello from " + Build.MANUFACTURER + " " + Build.MODEL);
}

@Override
public void onMessage(String s) {
final String message = s;
runOnUiThread(new Runnable() {
@Override
public void run() {
TextView textView = (TextView)findViewById(R.id.messages);
textView.setText(textView.getText() + "\n" + message);
}
});
}

@Override
public void onClose(int i, String s, boolean b) {
Log.i("Websocket", "Closed " + s);
}

@Override
public void onError(Exception e) {
Log.i("Websocket", "Error " + e.getMessage());
}
};
mWebSocketClient.connect();
}

我不知道为什么会出现这个错误?任何人都可以帮助我...

最佳答案

也许您应该更改 IP 以反射(reflect)在客户端上安装 glassfish 服务器的 IP

关于javascript - 使用 WebSocket 连接到服务器时连接被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47961846/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com