On 29/10/2013 20:02, Vasiliy Strelnikov wrote:
> Hello,
> 
> I'm currently writing some kind of WebSocket service with help of newly
> implemented JSR-356 spec.
> But, I've noticed, that there is lack of support of WebSocket Extensions
> functionality (http://tools.ietf.org/html/rfc6455#page-48 ).
> 
> For example, as far as I can see, function
> org.apache.tomcat.websocket.WsSession.getNegotiatedExtensions
> implemented in the following way:
> 
> @Override
> public List<Extension> getNegotiatedExtensions() {
> checkState();
> return Collections.emptyList();
> }
> 
> Does anybody know, if there are plans to implement this part of JSR-356
> in Tomcat 7.x or 8.x?

JSR-356 does not currently support user defined extensions. It does
support container defined extensions. Currently, Tomcat does not
implement any. Extensions are only likely to be implemented if there is
sufficient demand for them.

Mark


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to