To tell you the truth, Does Sept 11th ring a bell. Plus I am born n raised in the usa and I beleive that jobs in the usa should belong in the usa, I pay my taxes up to the teeth, and I oppose aliens coming in as h1b and taking jobs away from us citizens not putting their money in the us economy. They work here for less pay and leaving with dough that should belong to us citizens, who spent mad dough for college tuition or no tutition or time spent long years learning this stuff. I believe companies use that excuse that there is no qualified people so they look elsewhere so they look good on the books. They pay off the politicians etc
----- Original Message ----- From: "vk" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 09, 2002 1:56 PM Subject: Looking for java Positoin > My apologies for off line posting. It has been a shock for me to come out of > current job all of sudden, being on H1B visa in US makes the life more > tougher. I am trying to find a new position through all channels but looks > like I have got very less time to accomplish this. > > I have been in java development for more than 2 and half years where as my > total job experience is approximately 7 and half years. I have done 3 > projects in JSP/Servlet . I will highly appreciate if any one can gives me > some lead for java developer position. You can mail me at > [EMAIL PROTECTED] I am in Cincinnati, OH but willing to relocate > anywhere in US. > > Once again sorry , for off line posting. > > Thanks, > Vijay > > > > > ----- Original Message ----- > From: "Panayiotis Periorellis" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, February 27, 2002 2:36 PM > Subject: Re: How to call a user defined method from a JSP > > > > I'm surprised with this email because I 'm running tomcat 4.01 and I > > have placed my java classes inside > > > > Tomcat/jak/server/classes > > > > I import them the way you describe and it seems to work alright. > > > > Furthermore there are 2 directories call web-inf > > One in > > Tomcat/jak/webapps/root/web-inf > > And the other in > > > > Tomcat/jak/webapps/examples/web-inf > > > > panos > > > > > > -----Original Message----- > > From: Hans Bergsten [mailto:[EMAIL PROTECTED]] > > Sent: 27 February 2002 18:26 > > To: [EMAIL PROTECTED] > > Subject: Re: How to call a user defined method from a JSP > > > > > > [EMAIL PROTECTED] wrote: > > > > > The specifics may vary from server to server, but in general you can > > > you place the class anywhere. However, your classpath must point to > > > the directory containing the code. > > > > > > This is not correct. All JSP 1.0 (and later) compliant servers look for > > class files in two very well defined places: the WEB-INF/classes and the > > WEB-INF/lib directories for the application. The first is for class > > files and the second for class files packaged in JAR files. In addition, > > some containers let you place class files and JAR files in > > container-specific directories, but the two WEB-INF dirctories are > > *always* used and should be your first choice. > > > > > Also, remember to import your class in your > > > JSP. > > > <%@ page import="DBConnection" %> > > > > > > This is true, and the reason for why you need to import a class that is > > not declared to be in a package (i.e. that is part of the unnamed > > default package) is described in more detail here: > > > > <http://java.oreilly.com/news/jsptips_1100.html> > > > > Hans > > > > > Hope this helps. > > > ~ Elena. > > > --------------------------- > > > Elena Tsifrina > > > SYSCOM, Inc. > > > www.syscom.com > > > > > > > > > > > > > > > "Chauviaux, Patrick" > > > <[EMAIL PROTECTED] To: > > [EMAIL PROTECTED] > > > NISYS.COM> cc: > > > Sent by: A mailing list Subject: Re: How > > to call a user defined method from a > > > about Java Server Pages JSP > > > specification and > > > reference > > > <[EMAIL PROTECTED] > > > COM> > > > > > > > > > 02/27/02 10:11 AM > > > Please respond to A > > > mailing list about Java > > > Server Pages > > > specification and > > > reference > > > > > > > > > > > > > > > > > > > > > In fact, what I want to know is where do I have to put the > > > DBConnection.class or do you have to change the classpath? Please help > > > > > me. > > > > > > -----Original Message----- > > > From: Chauviaux, Patrick [mailto:[EMAIL PROTECTED]] > > > Sent: Wednesday, February 27, 2002 2:43 PM > > > To: [EMAIL PROTECTED] > > > Subject: How to call a user defined method from a JSP > > > > > > > > > Hello, > > > > > > I am new to JSP so my question is perhaps not really interesting for > > > you but I would appreciate if you could reply. > > > > > > I have created a JSP and a class DBConnection. I want to create an > > > instance of that class in my JSP like this: <% DBConnection dbc = new > > > DBConnection(); %> I use an Apache-Tomcat server and I have put the > > > JSP and the DBConnection.class in the same directory > > > ($TOMCAT\webapps\ROOT\) > > > > > > The problem is that when I test the JSP it can't find the class > > > DBConnection. I have the following error: > > > org.apache.jasper.JasperException: Unable to compile class for > > > > > JSP > > > > > > An error occurred between lines: 150 and 158 in the jsp file: > > > /SubscriptionHousehold.jsp > > > > > > Generated servlet error: > > > > > > C:\jakarta-tomcat-4.0.2\work\localhost\_\SubscriptionHousehold$jsp.jav > > > a:63: > > > Class org.apache.jsp.DBConnection not > > > found. > > > DBConnection dbc = new DBConnection(); > > > > > > Can someone tell me what I have to do to be able to create an instance > > > > > of DBConnection in my JSP? Is it possible? I hope it is. > > > > > > Best regards, > > > > > > Patrick > > > > > > ====================================================================== > > > ===== > > > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > > > JSP-INTEREST". > > > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST > > > DIGEST". > > > Some relevant FAQs on JSP/Servlets can be found at: > > > > > > http://archives.java.sun.com/jsp-interest.html > > > http://java.sun.com/products/jsp/faq.html > > > http://www.esperanto.org.nz/jsp/jspfaq.jsp > > > http://www.jguru.com/faq/index.jsp > > > http://www.jspinsider.com > > > > > > ====================================================================== > > > ===== > > > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > > > JSP-INTEREST". > > > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST > > > DIGEST". > > > Some relevant FAQs on JSP/Servlets can be found at: > > > > > > http://archives.java.sun.com/jsp-interest.html > > > http://java.sun.com/products/jsp/faq.html > > > http://www.esperanto.org.nz/jsp/jspfaq.jsp > > > http://www.jguru.com/faq/index.jsp > > > http://www.jspinsider.com > > > > > > ====================================================================== > > > ===== > > > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > > JSP-INTEREST". > > > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST > > DIGEST". > > > Some relevant FAQs on JSP/Servlets can be found at: > > > > > > http://archives.java.sun.com/jsp-interest.html > > > http://java.sun.com/products/jsp/faq.html > > > http://www.esperanto.org.nz/jsp/jspfaq.jsp > > > http://www.jguru.com/faq/index.jsp > > > http://www.jspinsider.com > > > > > > > > > > > > -- > > Hans Bergsten [EMAIL PROTECTED] > > Gefion Software http://www.gefionsoftware.com > > JavaServer Pages http://TheJSPBook.com > > > > ======================================================================== > > === > > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > > JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set > > JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found > > at: > > > > http://archives.java.sun.com/jsp-interest.html > > http://java.sun.com/products/jsp/faq.html > > http://www.esperanto.org.nz/jsp/jspfaq.jsp > > http://www.jguru.com/faq/index.jsp > > http://www.jspinsider.com > > > > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST > DIGEST". > > Some relevant FAQs on JSP/Servlets can be found at: > > > > http://archives.java.sun.com/jsp-interest.html > > http://java.sun.com/products/jsp/faq.html > > http://www.esperanto.org.nz/jsp/jspfaq.jsp > > http://www.jguru.com/faq/index.jsp > > http://www.jspinsider.com > > =========================================================================== > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://archives.java.sun.com/jsp-interest.html > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.jsp > http://www.jguru.com/faq/index.jsp > http://www.jspinsider.com =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com
