gpt4 book ai didi

java - "Connection refused"高速公路 Android 到 Java EE 端点

转载 作者:行者123 更新时间:2023-11-30 00:48:17 25 4
gpt4 key购买 nike

我在 Payara 服务器上设置了一个 Java EE 端点,我尝试使用 Autobahn WebSockets 连接到一个 Android 客户端。我有以下设置:

我在服务器上的 WebSocket 端点:

public class CommunicationSocket extends Endpoint {

@Override
public void onOpen(Session aSession, EndpointConfig aConfig) {
aSession.addMessageHandler(new MessageHandler.Whole<byte[]>() {
@Override
public void onMessage(byte[] aMessage) {
// Do something fun
}
});
}
}

我这样注册 WebSocket:

public class RegisterSocket implements ServerApplicationConfig {

@Override
public Set<ServerEndpointConfig> getEndpointConfigs(
Set<Class<? extends Endpoint>> aEndpointClasses) {
Set<ServerEndpointConfig> result = new HashSet<>();
for (Class endpointClass : aEndpointClasses) {
if (endpointClass.equals(CommunicationSocket.class)) {
ServerEndpointConfig sec
= ServerEndpointConfig.Builder.create(endpointClass,
"/WebSocket").build();
result.add(sec);
}
}
return result;
}

@Override
public Set<Class<?>> getAnnotatedEndpointClasses(
Set<Class<?>> aScanned) {
return Collections.emptySet();
}

}

WebSocket 现在可以访问 att ws://localhost:46588/Server/WebSocket。我已经确认它适用于 chrome 中的以下 javascript:

function WebSocketTest() {
if ("WebSocket" in window) {
ws = new WebSocket("ws://localhost:46588/Server/WebSocket");

ws.onopen = function() {
ws.send("Message to send");
alert("Message is sent...");
};

ws.onmessage = function (evt) {
var received_msg = evt.data;
alert("Message is received... \n" + received_msg);
};

} else {
// The browser doesn't support WebSocket
alert("WebSocket NOT supported by your Browser!");
}
}

但是,当我尝试使用高速公路连接我的 android 客户端时,套接字关闭而无法建立连接并显示消息“连接被拒绝”。我在onCreate中使用如下代码连接(mSocket是activity类的一个字段):

WebSocketHandler messageHandler = new WebSocketHandler() {
@Override
public void onOpen() {
System.out.println("Connected...");
}

@Override
public void onClose(int code, String reason) {
System.out.println("Socket closing: " + reason);
mSocket = null;
}

@Override
public void onTextMessage(String payload) {
System.out.println("Received: " + payload);
}

@Override
public void onBinaryMessage(byte[] payload) {
System.out.println("Message received: " + payload);
}
};

mSocket = new WebSocketConnection();
try {
String address = "ws://localhost:46588/Server/WebSocket";
mSocket.connect(address, messageHandler);
} catch (WebSocketException e) {
System.out.println("Could not connect to WebSocket: "
+ e.getMessage());
mSocket = null;
}

我的 list 中有互联网权限:

<uses-permission android:name="android.permission.INTERNET">
</uses-permission>

我的代码或方法中是否有任何错误?是否可以记录/捕获连接事件(握手或其他)以阐明连接被拒绝的原因?

最佳答案

当我准备发布问题时,我最后一次用谷歌搜索:lo and behold , localhost 不是运行模拟器的机器的本地主机(我猜是模拟设备的本地主机)。所以使用:

10.0.2.2:[port] 

代替

localhost:[port] 

在模拟器上就可以了(如果在真机上运行不要忘记修改)

关于java - "Connection refused"高速公路 Android 到 Java EE 端点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41462845/

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