Here's what you are missing: <jsp:setProperty name="jobBean" property="*"/> This reads all of the form elements and assigns them to the corresponding bean properties.
Tomcat translates your JSP into a servlet class in the package "org.apache.jsp". Other containers probably do something similar. Since your servlet is in a package, its code cannot access any packageless class. This is a change to Java, as of 1.4.