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' skills. My
background is extensively in C++, but also with a couple of years of Java 
JSP. I haven't had any luck with any of these skills.

Good luck!
Dave Derry


- Original Message -
From: Lauer, Oliver [EMAIL PROTECTED]
To: Tomcat Users List (E-Mail) [EMAIL PROTECTED]
Sent: Tuesday, January 29, 2002 2:58 AM
Subject: Job situation in the US


Hi all,

I admit this forum isn't quite suitable for those postings (saying sorry to
all who are annoyed reading that) but I believe as well a lot of experts are
listening who can answer this question maybe:

Is it still a bloodbath in the US concerning Java Jobs or is the situation
improving ? I'm asking due to my family is wanting me to looking for a
challenge abroad :-)

Thanx
Oliver
 AXA eSolutions GmbH
 AXA Konzern AG Germany
 Oliver Lauer
 Web Architect
 Wörthstraße 34
 D-50668 Köln
 Germany
 Tel.: +49 221 148 31277
 Fax: +49 221 148 43963
 Mobil: +49 179 59 064 59
 e-Mail: [EMAIL PROTECTED]
 _




--
Aus Rechts- und Sicherheitsgruenden ist die in dieser E-Mail gegebene
Information nicht rechtsverbindlich. Eine rechtsverbindliche Bestaetigung
reichen wir Ihnen gerne auf Anforderung in schriftlicher Form nach. Beachten
Sie bitte, dass jede Form der unautorisierten Nutzung, Veroeffentlichung,
Vervielfaeltigung oder Weitergabe des Inhalts dieser E-Mail nicht gestattet
ist.Diese Nachricht  ist ausschliesslich fuer den bezeichneten Adressaten
oder dessen Vertreter bestimmt. Sollten Sie nicht der vorgesehene Adressat
dieser E-Mail oder dessen Vertreter sein, so bitten wir Sie, sich mit dem
Absender der E-Mail in Verbindung zu setzen.

For legal and security reasons the information provided in this e-mail is
not legally binding. Upon request we would be pleased to provide you with a
legally binding confirmation in written form. Any form of unauthorised use,
publication, reproduction, copying or disclosure of the content of this
e-mail is not permitted. This message is exclusively for the person
addressed or their representative. If you are not the intended recipient of
this message and its contents, please notify the sender immediately.


==


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




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 (which will mask the variable created by
useBean). If you really intend to set the bean to null then just do an
assignment rather than a declaration (user = null;).

Dave Derry


- Original Message -
From: Debby Dart [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Sent: Monday, January 21, 2002 8:08 PM
Subject: Jasper error


 ...
 org.apache.jasper.JasperException: Unable to compile class for JSP

 An error occurred at line: 3 in the jsp file: /SaveName.jsp

 Generated servlet error:
 C:\java-apps\Apache Tomcat
4.0\work\localhost\testapp\SaveName$jsp.java:65:
 Class org.apache.jsp.UserData not found.
 UserData user = null;
 ...

 Line 3 in the script is :
 jsp:useBean id=user class=UserData scope=session/

 I thought all I needed to do was to place the file UserData.class into the
 webapps\testapp\Web-inf\classes directory, but apparently I'm missing
 something.





--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




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 (ie. it expects ForwardServlet to be in the dir package).

Hope this helps,
Dave Derry


- Original Message -
From: Cressatti, Dominique [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Sent: Monday, January 21, 2002 10:53 AM
Subject: basic servlet move doesn't work


Hi,

I have a very simple example app.
For testing purposes I moved the servlet into a subdirectory.
So before the move I had
/webapps/Wide_World/WEB-INFO/classes/ForwardServlet.class
and after the move I had
/webapps/Wide_World/WEB-INFO/classes/dir/ForwardServlet.class

according to the docs I've read I can do such a thing and reflect it
I need edit /webapps/Wide_World/web.xml

from:
servlet-nameforward/servlet-name
servlet-classForwardServlet/servlet-class

to
servlet-nameforward/servlet-name
servlet-classdir.ForwardServlet/servlet-class

which I did (and restated tomcat).
However how such simple change doesn't work?
Now when I try to access again the servlet I get:
...HTTP error status 500...
Error allocating a servlet instance
root cause
java.lang.NoClassDefFoundError: dir/ForwardServlet (wrong name:
ForwardServlet)...

What's going on!

Thanks
Dom






--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]