hello to everyone in the 4205 tutorial I found two lines that I had to
change to avoid server errors 500 at
http://localhost:8089/struts-submit-exercise4-solution/

 :|

1) into ApplicationResource.properties add 

welcome.title=Struts Application
welcome.heading=Struts Applications in Netbeans!
welcome.message=It's easy to create Struts applications with NetBeans.

2) replace into welcomeStruts.jsp

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean";
prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html";
prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic";
prefix="logic" %>

<html:html locale="true">

with

<%@ taglib uri="http://struts.apache.org/tags-bean"; prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html"; prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic"; prefix="logic" %>

<html:html lang="true">


Ask me if I did well?

Sincerely


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Java EE (J2EE) Programming with Passion!" group.
To post to this group, send email to
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to