2013-07-20 49 views
0

我有一個客戶端,我不控制POST a JSON與標頭Expect: 100-continue到播放服務器2.1.2。帖子的內容其實很短,包含我感興趣的數據使用期望100播放框架Netty錯誤繼續

我一直在控制檯收到這些錯誤:

[error] play - Oops, unexpected message received in NettyServer (please report this problem): [email protected] 
[error] play - Oops, unexpected message received in NettyServer (please report this problem): [email protected]  
java.nio.channels.ClosedChannelException 

我的控制器是由一個非常簡單的方法:

object TestController extends Controller { 

    def foo = Action { 
     Ok("bar") 
    } 
} 

我使用Play的2.1.x分支的頭(7月19日)。誰能告訴我發生了什麼事?

回答