Re: JSP help

2003-01-08 Thread Herc
/examples is just another aplication is the default application in the server. There must be specified your application name. __ Do you want a free e-mail for life ? Get it at http://www.personal.ro/ -- To unsubscribe,

RE: JSP help: A bit off topic

2003-01-03 Thread Laxmikanth M.S.
I don't see useBean Tag if u want to use a class use UseBean and call the methos using the bean... -Original Message- From: Raj [SMTP:[EMAIL PROTECTED]] Sent: Friday, January 03, 2003 3:42 PM To: Tomcat Users List Subject: JSP help: A bit off topic Hi, This doesn't

RE: JSP help: A bit off topic

2003-01-03 Thread Mehdi . Nejad
List [EMAIL PROTECTED] ftware.com cc: Subject: RE: JSP help: A bit off topic

RE: JSP Help

2003-01-03 Thread Turner, John
Could be just about anything. You will have to be much more specific for anyone to help you quickly. Be as specific as possible, explain what you have, what you hav done, and what the error message is. John -Original Message- From: Elif Akten [mailto:[EMAIL PROTECTED]] Sent:

RE: JSP Help

2003-01-03 Thread Elif Akten
about configuration..Can you help me?? From: Turner, John [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: JSP Help Date: Fri, 3 Jan 2003 12:43:37 -0500 Could be just about anything. You will have to be much more specific

RE: JSP Help

2003-01-03 Thread Turner, John
have to guess we will just move on to another post. John -Original Message- From: Elif Akten [mailto:[EMAIL PROTECTED]] Sent: Friday, January 03, 2003 1:00 PM To: [EMAIL PROTECTED] Subject: RE: JSP Help I installed Apache tomcat 4.0 and copied my webapplication to webapps

RE: JSP help: A bit off topic

2003-01-03 Thread Craig R. McClanahan
myObject.getSomeString() /* This will actually contain all the code in JSP, just to avoid the JSP page cluttered with Java Code */ If you expect getSomeString() to return *JSP* code (including tags and scriptlets and all), you can't do that. The JSP code is compiled the first time you

RE: JSP Help

2002-09-20 Thread Sexton, George
No, you don't want another print writer, you want to flush the implicitly created printwriter named out that jsp creates under the hood. If this doesn't help, I'm afraid I can't suggest anything more. I avoid JSP like the plague. George Sexton MH Software, Inc. Home of Connect Daily Web

RE: JSP Help

2002-09-19 Thread Sexton, George
The solution I found was to flush() the print writer on the included servlet but not close it. -Original Message- From: Ray Madigan [mailto:[EMAIL PROTECTED]] Sent: 19 September, 2002 5:50 PM To: Tomcat Users List Subject: JSP Help This might not be the correct forum - but I am porting

Re: jsp help

2001-06-16 Thread Luba Powell
Hello, Jeremy: If you are familiar with servlets - there isn't much more to know about JSP. JSP is a short-hand for generating servlets. Just few tags to learn. The advantage of writing JSP tags is that (in our case) apache programs: parser, compilers, loaders parse these tags, generate servlets,

Re: jsp help

2001-06-16 Thread Luba Powell
Correction: tomcat (not apache) programs.. - Original Message - From: Luba Powell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 16, 2001 9:51 PM Subject: Re: jsp help Hello, Jeremy: If you are familiar with servlets - there isn't much more to know about JSP. JSP