Can we please have a notification scheme enabled for Undertow Jira?
by Darran Lofthouse
Can we please have a notification scheme enabling for the Undertow Jira
project so that we can receive e-mail notifications.
I would suggest just use the same one as is used for Remoting JMX, it
should be sufficient to have the notifications go to the general mailing
list and interested individuals.
Regards,
Darran Lofthouse.
10 years, 3 months
certs
by Bill Burke
I need to be able to client certs in the following manner:
* Set the server to WANT client certs so that it is optional
* Obtain certificate at the servlet layer so I can validate it myself.
Can Undertow do these yet? Just want to know so I can create the
appropriate jiras.
--
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com
11 years, 4 months
Update the Undertow Fork of Wildfly
by Darran Lofthouse
Hello all,
Would it be possible for us to try and maintain the undertow-io fork [1]
of WildFly so that it can be built against the latest code in the
undertow repo?
I am trying to finish off the Digest changes to get Digest
authentication working within the WildFly integration but I am currently
getting a build failure.
If the WildFly fork is kept up to date it should then mean that when
updating WildFly to the next Undertow version all the required changes
are in one place.
Regards,
Darran Lofthouse.
[1] https://github.com/undertow-io/jboss-as
11 years, 5 months
Undertow worker threads
by FRANCESCO MARCHIONI
Dear Undertow devs,
I'm running some test on the new undertow subsystem: in particular I'm trying to control the maximum threads available for serving http requests (old Tomcat maxThread parameter).
Is it correct to define the max threads allowed via the io-threads attribute of the worker element as follows ?
<subsystem xmlns="urn:jboss:domain:undertow:1.0">
<http-listener name="default" socket-binding="http" worker="custom" />
. . .
</subsystem>
<subsystem xmlns="urn:jboss:domain:io:1.0">
<worker name="custom" io-threads="100" />
<buffer-pool name="default" buffer-size="16384" buffers-per-slice="128"/>
</subsystem>
Or should rather use the task-max-threads attribute instead ?
Thanks!
Francesco
11 years, 5 months
When DIGEST support?
by Bill Burke
Damn, *bleepin* JAX-RS TCK has a test that requires DIGEST auth. When
will Undertow in Wildfly support it? Before the next Wildfll Alpha
would be nice.
--
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com
11 years, 5 months
keep-alive?
by Bill Burke
Does undertow support keep-alive yet? I'm using Apache HC Client 4.2.1
and am getting a "ConnectionManager has been shutdown" exception after
trying to read a 0 length response body from a 200, ok status. So it
seems that Undertow is closing the connection after the response returns.
Before you say, "well don't read from a 0 length response", the JAX-RS
2.0 spec requires that we throw a certain exception on an empty response
when trying to read an actual response. Undertow is setting a
Content-Length of "0", so I can workaround this problem by checking for
this condition, but closing the connection isn't really great for
performance....
--
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com
11 years, 5 months