Re: Java file i/o routines

2002-01-23 Thread Mark Galbreath
Good clue. Start at the beginning. Mark (who HAS done the entire tutorial...but nothing about setting classpaths for packages :-) ) - Original Message - From: "Donald Lee" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 23, 2002 7:22 PM Subject: Re: Java file i/o r

Re: Java file i/o routines

2002-01-23 Thread Donald Lee
You are correct. I clicked on the TOC link and there were several sections that I had missed. Not sure how it happened but thanks for putting me on the right track. -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAI

request.setCharacterEncoding in jsdk-2.2

2002-01-23 Thread Donald Ball
hi all. i'm trying to internationalize a java webapp that's targetted at j2ee 1.2 containers. since that implies jsdk-2.2, i'm stuck without the request.setCharacterEncoding method that was added in jsdk-2.3. assuming that the browser didn't send a character encoding and i need to forcibly set the

Re: RequestDispatcher from within a frame

2002-01-23 Thread Jason Wells
Nic, Thanks for the tip. Turns out using client-side Javascript to break out of the frameset does most of the job. But, there is a twist is that I thought might be worth documenting here. In my case, I forward the RequestDispatcher to this Javascript from within a servlet filter, and I've discov

Re: Question - Problem

2002-01-23 Thread Anthony Diodato
I encoded the url, now it is re-directing to the proper page, but the session I created is null. -Original Message- From: Richard Yee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 23, 2002 3:05 PM To: [EMAIL PROTECTED] Subject: Re: Question - Problem Tony, See http://www.jspinside

Re: Question - Problem

2002-01-23 Thread Richard Yee
Tony, See http://www.jspinsider.com/faq/32.view It answers the problem of "Why do I lose my session context when doing a response.sendRedirect()?"Answered by: Jayson Falkner Here's the text of the answer: Some browsers do not accept and handle cookies properly. When this happens the jspses

Re: Question - Problem

2002-01-23 Thread Anthony Diodato
I just tried to put it into the doPost() method, and got the same results, it doesn't re-direct. Tony -Original Message- From: Michael Weller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 23, 2002 2:33 PM To: [EMAIL PROTECTED] Subject: Re: Question - Problem hi! maybe it's becaus

Re: Question - Problem

2002-01-23 Thread Michael Weller
hi! maybe it's because the RequestDispatcher object you're refering to in your doPost method is an instance variable of your servlet (and not local to doPost). -mw - Original Message - From: "Anthony Diodato" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 23, 2002 8:

Question - Problem

2002-01-23 Thread Anthony Diodato
Hello All, Here is my scenario. I have Tomcat 3.2.4 running on IIS 5.0 I have an html page as my entrance to the website. (http://www.domainname.com/index.html) On this site is a form to login, with you user name and password. When the user clicks submit, they get sent to a servlet that I wrote

Re: Servlet-Applet Communication

2002-01-23 Thread Richard Yee
What exactly is the exception? You might want to use the Java console of Netscape to show it. You might need to edit the java.policy file to grant the permission. Try searching www.javasoft.com for the exception that you are getting. -Richard At 11:39 AM 1/23/2002 +0530, you wrote: >Hi guys!!!