我无法wss://
在使用 Play!Framework 2.2 创建的简单 WebSocket 应用程序中使用。它回显了消息。端点是这样的
def indexWS2 = WebSocket.using[String] {
request => {
println("got connection to indexWS2")
var channel: Option[Concurrent.Channel[String]] = None
val outEnumerator: Enumerator[String] = Concurrent.unicast(c => channel = Some(c))
// Log events to the console
val myIteratee: Iteratee[String, Unit] = Iteratee.foreach[String] {gotString => {
println("received: " + gotString)
// send string back
channel.foreach(_.push("echoing back \"" + gotString + "\""))
}}
(myIteratee, outEnumerator)
}
}
并且路线被描述为
GET /ws2 controllers.Application.indexWS2
我从这样的 JS 客户端创建连接
myWebSocket = new WebSocket("ws://localhost:9000/ws2");
一切正常。但是,如果我更改ws://
为wss://
使用 TLS,它会失败并且我得到以下 Netty 异常:
[error] p.nettyException - Exception caught in Netty
java.lang.IllegalArgumentException: empty text
我怎样才能使这项工作?谢谢。