jboss 和 tomcat 定时调度同步问题,求助

各位大虾,求助,急急急!!!
websocket 发布消息时。
// 同步锁和同步发送方法
synchronized (this.session)

	{
		// this.session.getBasicRemote().sendText(message);
		// 异步发送
		this.session.getAsyncRemote().sendText(message);
	}

在多个定时调度同时执行时。
jboss 报错:
JBWEB008529: The remote endpoint was in state [TEXT_FULL_WRITING] which is an invalid state for called method
而 tomcat 启动,不会产生报错。