You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 28, 2018. It is now read-only.
In grizzly2-http/src/main/java/org/glassfish/jersey/grizzly2/httpserver/GrizzlyHttpServerFactory.java
the following is used to make grizzly pass TRACE method handling to the registered http handler:
config.setPassTraceRequest(true);
Since grizzly has its own TRACE method implementation, it would be useful to introduce a Jersey configuration option
to enable it if the application does not want to provide its custom implementation:
config.setTraceEnabled(true)
Affected Versions
[2.21]
The text was updated successfully, but these errors were encountered:
In grizzly2-http/src/main/java/org/glassfish/jersey/grizzly2/httpserver/GrizzlyHttpServerFactory.java
the following is used to make grizzly pass TRACE method handling to the registered http handler:
config.setPassTraceRequest(true);
Since grizzly has its own TRACE method implementation, it would be useful to introduce a Jersey configuration option
to enable it if the application does not want to provide its custom implementation:
config.setTraceEnabled(true)
Affected Versions
[2.21]
The text was updated successfully, but these errors were encountered: