Re: http://mybox:8080/struts/hello.action gets HTTP Status 404 - Not Found

2018-06-30 Thread ssmtpmailtesting ssmtpmailtesting
struts.xml => http://struts.apache.org/dtds/struts-2.5.dtd;> /index.jsp /HelloWorld.jsp web.xml http://struts.apache.org/dtds/struts-2.5.dtd;> /index.jsp

Re: http://mybox:8080/struts/hello.action gets HTTP Status 404 - Not Found

2018-06-30 Thread ssmtpmailtesting ssmtpmailtesting
I solved the problem, this is web.xml http://java.sun.com/xml/ns/j2ee; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;> Archetype Created Web Application struts2

Re: http://mybox:8080/struts/hello.action gets HTTP Status 404 - Not Found

2018-06-30 Thread Yasser Zamani
On 6/30/2018 4:23 PM, ssmtpmailtesting ssmtpmailtesting wrote: > web.xml => > > "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" > "http://java.sun.com/dtd/web-app_2_3.dtd; > > > > Archetype Created Web Application > > struts2 >

Re: http://mybox:8080/struts/hello.action gets HTTP Status 404 - Not Found

2018-06-30 Thread Dave Newton
That means you're hitting a JSP page with S2 tags without having run through an S2 request process, e.g., hitting a JSP page directly. On Sat, Jun 30, 2018 at 9:14 AM ssmtpmailtesting ssmtpmailtesting < ssmtpmailtest...@gmail.com> wrote: > struts.xml => > > > "-//Apache Software

http://mybox:8080/struts/hello.action gets HTTP Status 404 - Not Found

2018-06-30 Thread ssmtpmailtesting ssmtpmailtesting
tree . . ├── pom.xml ├── src │ └── main │ ├── java │ │ └── com │ │ └── actions │ │ ├── HelloWorldAction.java │ │ └── MessageStore.java │ ├── resources │ │ └── struts.xml │ └── webapp │ ├── HelloWorld.jsp │