Dear Undertow-Team,

I am interested in running portlets on a WildFly application server and need to get GateIn integrated inside. For that I assume a GateIn WCI is required to hook into Undertow. I am not quite sure how to do that. A GateIn WCI integration used to be done by implementing this type of class:

import org.apache.catalina.ContainerListener;
import org.apache.catalina.LifecycleListener;
import org.gatein.wci.spi.ServletContainerContext;

public class MyServletContainerContext implements ServletContainerContext, ContainerListener, LifecycleListener


I am looking for a the classes in Undertow that provide the same type of functionality: hook into the container lifecycle and react on container events.

As a reference I am using the gatein-wci project on github: https://github.com/gatein/gatein-wci or https://github.com/gatein/gatein-wci/blob/master/jboss/jboss7/src/main/java/org/gatein/wci/jboss/JB7ServletContainerContext.java

It would great if you could just help me get started.

Best regards,
Vladimir Manolov

PS: I found this jira-task which is still open: https://issues.jboss.org/browse/GTNWCI-48