Re: Job situation in the US

2002-01-29 Thread dderry
Speaking from my experience in Georgia: I was laid-off in June. I've had one 2 month contract since then. I find a lot of job postings that do not seem to be real (I never get any response, and the positions are constantly being reposted). Many job postings have a shopping list of 'required'

Re: Jasper error

2002-01-22 Thread dderry
Debby, You need to import org.apache.jsp.UserData to use it in that manner. (%@ page import=org.apache.jsp.UserData %). the useBean declaration creates a scripting variable named user, and does not require the import. But at line 3 (UserData user = null;) you are declaring a different variable

Re: basic servlet move doesn't work

2002-01-21 Thread dderry
Sounds like you may have not changed the package statement in ForwardServlet. Remember that the directory structure reflects the package structure (or vice versa). It looks like it is finding the class ForwardServlet, but it is the wrong name because it is expecting to find dir.ForwardServlet