0 Replies Latest reply on Sep 25, 2014 12:35 PM by jmiinc

    Migration from jBoss to WildFly

    jmiinc

       

      Small software company looking for assistance with the migration of an Eclipse Dynamic Web Project from jBoss to WildFly.

      Any suggestions on hiring, contract work, etc?


      Thank you, Jim

       

       

       

      >From jboss-as-7.1.3.Final with

       

      <subsystem xmlns="urn:jboss:domain:web:1.2"

       

      default-virtual-server="default-host" native="false">

       

      <configuration>

       

      <jsp-configuration development="true"/>

       

      </configuration>

       

      <connector name="http" protocol="HTTP/1.1" scheme="http"

       

      socket-binding="http"/>

       

      <virtual-server name="default-host" enable-welcome-root="true">

       

      <alias name="192.168.4.10"/>

       

      </virtual-server>

       

      </subsystem>

       

       

       

       

       

      To wildfly-8.1.0.Final with

       

      <subsystem xmlns="urn:jboss:domain:undertow:1.1">

       

      <buffer-cache name="default"/>

       

      <server name="default-server">

       

      <http-listener name="default" socket-binding="http"/>

       

      <host name="default-host" alias="localhost">

       

      <location name="/" handler="welcome-content"/>

       

      <filter-ref name="server-header"/>

       

      <filter-ref name="x-powered-by-header"/>

       

      </host>

       

      </server>

       

      <servlet-container name="default">

       

      <jsp-config/>

       

      </servlet-container>

       

      <handlers>

       

      <file name="welcome-content"

       

      path="${jboss.home.dir}/welcome-content"/>

       

      </handlers>

       

      <filters>

       

      <response-header name="server-header" header-name="Server"

       

      header-value="WildFly/8"/>

       

      <response-header name="x-powered-by-header"

       

      header-name="X-Powered-By" header-value="Undertow/1"/>

       

      </filters>

       

      </subsystem>