Hi,
We are upgrading to wildly 31 Final from wildly 23 and getting below error while deploying a war file which contains code for a web service. Can some one help me how to resolve this issue?
we have the following listener class in web xml
<listener>
<
listener-class> com.sun.xml.ws.transport.http.servlet.WSServletContextListener
</listener-class>
</listener>
I tried to use jakarta.servlet.ServletContextListener but getting below exception. could you please tell me which similar class we should use from Jakarta to avoid this exception in deployment.
<listener>
<listener-class>jakarta.servlet.ServletContextListener</listener-class>
</listener>
{"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"brews.war\".undertow-deployment.UndertowDeploymentInfoService" => "Failed to start service
Caused by: java.lang.IllegalArgumentException: UT010012: Listener class class com.sun.xml.ws.transport.http.servlet.WSServletContextListener must implement at least one listener interface"}}
Thanks
--Vijay