我在服务器和客户端之间有一个WebSockets连接。这允许我向客户端发送命令,他用数据回应我。服务器也有Web服务。然后我可以说,“在该客户端上执行此命令”。所以我们有:
Client1 --- webservices - > server --- websockets --->客户机2
问题是,从Client2接收数据的服务器上的方法是 void 。
如何将数据发回Client1?
Web服务
@Path("/ws")
public class QOSResource {
public QOSResource(){}
@Produces(MediaType.TEXT_PLAIN)
@Path("/ping/{macAddr}")
@GET
public String getPing(@PathParam("macAddr") String macAddr){
return"Mac adresse : "+macAddr;
//WebSocketsCentralisation.getInstance().ping(macAddr);
}
}
的WebSockets
@OnWebSocketMessage
public **void** onText(Session session, String message) {
if (session.isOpen()) {
if(firstConnection){
firstConnection = false;
this.macAddr = message;
WebSocketsCentralisation.getInstance().join(this);
}
ObjectMapper mapper = new ObjectMapper();
Object o;
try {
o = mapper.readValue(message, Object.class);
if(o instanceof PingResult){
**// TODO return result to ws**
}
} catch (JsonParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JsonMappingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
提前感谢您的帮助
答案 0 :(得分:1)
您在方法参数中获得的Session对象包含与远程端点对话的范围。
您需要使用RemoteEndpoint返回的Session.getRemote()来发送消息。
示例:
// Send BINARY websocket message (async)
byte data[] = mapper.toBytes(obj);
session.getRemote().sendBytesByFuture(data);
// Send TEXT websocket message (async)
String text = mapper.toString(obj);
session.getRemote().sendStringByFuture(text);
请注意,如果远程端点连接不再处于打开状态(例如远程端点向您发送消息然后立即发起CLOSE握手),则session.getRemote()调用将抛出WebSocketException控制信息)。
// How to handle send message if remote isn't there
try {
// Send message to remote
session.getRemote().sendString(text);
} catch(WebSocketException e) {
// WebSocket remote isn't available.
// The connection is likely closed or in the process of closing.
}
注意:这种websocket使用方式,你有一个Session和一个RemoteEndpoint,与即将推出的JSR-356标准(javax.websocket
)一致。在标准API中,您可以使用javax.websocket.Session
和javax.websocket.RemoteEndpoint
。
答案 1 :(得分:0)
您的websocket处理程序应该有一个关联的Connection实例,您可以在其上调用sendMessage()
。