[jboss-jira] [JBoss JIRA] (WFLY-5238) [Migration operation] [Web to Undertow] Unable to migrate any valve to handler
Radim Hatlapatka (JIRA)
issues at jboss.org
Mon Aug 31 10:50:05 EDT 2015
Radim Hatlapatka created WFLY-5238:
--------------------------------------
Summary: [Migration operation] [Web to Undertow] Unable to migrate any valve to handler
Key: WFLY-5238
URL: https://issues.jboss.org/browse/WFLY-5238
Project: WildFly
Issue Type: Bug
Components: Web (Undertow)
Reporter: Radim Hatlapatka
Assignee: Stuart Douglas
In Undertow there are Handlers which can be used similarly as Valves. Some valves have corresponding handler in Undertow. Such valves could be migrated.
E.g. as part of [EAP7-428] there is added {{io.undertow.server.handlers.RequestDumpingHandler}}.
This could be thereby migrated from
{code:xml}
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<valve name="request-dumper" module="org.jboss.as.web" class-name="org.apache.catalina.valves.RequestDumperValve"/>
<virtual-server name="default-host" enable-welcome-root="false">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
...
</subsystem>
{code}
to something like:
{code:xml}
<subsystem xmlns="urn:jboss:domain:undertow:3.0">
<buffer-cache name="default"/>
<server name="default-server" default-host="default-host">
<host name="default-host" alias="localhost, example.com">
<filter-ref name="request-dumper"/>
</host>
</server>
<servlet-container name="default">
<jsp-config/>
</servlet-container>
<filter name="request-dumper" module="io.undertow.core" class-name="io.undertow.server.handlers.RequestDumpingHandler"/>
...
</subsystem>
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
More information about the jboss-jira
mailing list