Jboss 7.2 gives 404 after deployment

2019-02-23 Thread John W. Himpel
Greetings, I have a very small Struts web app that I developed under Red Hat Developer Studio. I am using Struts 2.5.20, Jboss 7.2.0. Right-click in on the project name in Red Hat Developer Studio, select properties->Web Project Settings and the Context root: shows a "learning". After deploymen

Re: Jboss 7.2 gives 404 after deployment

2019-02-23 Thread Martin Gainty
Unregistered web context: '/learning-0.0.1-SNAPSHOT' from server 'default-server' jboss is telling you the webapp /learning-0.0.1-SNAPSHOT was never registered to JBoss wildlfly server default-server if you're like me you would put all your web application declarations in WEB-INF/web.xml if yo

Re: Jboss 7.2 gives 404 after deployment

2019-02-23 Thread John W. Himpel
On Sat, 2019-02-23 at 21:11 +, Martin Gainty wrote: > Unregistered web context: '/learning-0.0.1-SNAPSHOT' from server > 'default-server' > jboss is telling you the webapp /learning-0.0.1-SNAPSHOT was never > registered to JBoss wildlfly server default-server > > if you're like me you would pu

RE: Jboss 7.2 gives 404 after deployment

2019-02-23 Thread Yasser Zamani
>From: John W. Himpel >Sent: Saturday, February 23, 2019 11:22 PM >To: user@struts.apache.org >Subject: Jboss 7.2 gives 404 after deployment > >Greetings, > >I have a very small Struts web app that I developed under Red Hat Developer >Studio. > >I am using Struts 2.5.20, Jboss 7.2.0. > >Right-clic