Whitespace revisited (workaround presented)

1999-12-08 Thread Taylor Gautier
I have previously posted about my whitespace woes, mostly stemming from the fact that JSP doesn't support any notion of ignoring whitespace (that is JSP assumes that any whitespace in the input file should appear in the output file, making it difficult if not impossible to specify the exact

Re: how to displaying in browser

1999-12-03 Thread Taylor Gautier
lt; and quot; HTML entities are supposed to be terminated with a ';'. -t - Original Message - From: Hu, Jeffery X (Jeff) To: [EMAIL PROTECTED] Sent: Friday, December 03, 1999 9:42 AM Subject: how to displaying "" in browser Hi friends, I am using "lt"

Re: off-topic: passing '+' in URL using JavaScript navigate method...

1999-11-30 Thread Taylor Gautier
This isn't really a JSP question, but... you might try setting the location property of the window to the URL. The O'Reilly Javascript book recommends this over the navigate function since the navigate function is only supported by IE. -t - Original Message - From: Matthew Lehrian

Re: In what ways does JSP score over Servlets ?

1999-11-09 Thread Taylor Gautier
- Original Message - From: Justin Wells [EMAIL PROTECTED] To: Taylor Gautier [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, November 09, 1999 4:25 AM Subject: Re: In what ways does JSP score over Servlets ? Quoting Taylor Gautier ([EMAIL PROTECTED]): JSP gives you exactly

Re: In what ways does JSP score over Servlets ?

1999-11-08 Thread Taylor Gautier
JSP gives you exactly the same capabilities as a templating language, in fact it is a templating language. It goes much further than that, however, because it uses JavaBeans as backend data providers, meaning that any Bean is usable by JSP, so really any kind or type of data can be inserted. It

Re: Why use Servlets with JSP?

1999-10-14 Thread Taylor Gautier
You can't really forward from one JSP to another, because by the time you get control, it has already opened an output stream on the output socket. Thus screen logic control in a JSP would be a series of includes, which would be pretty clumsy. Other than that, it wouldn't be terrible to let

Re: Why use Servlets with JSP?

1999-10-14 Thread Taylor Gautier
I stand corrected. Thanks craig :) -tg - Original Message - From: Craig McClanahan [EMAIL PROTECTED] To: Taylor Gautier [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, October 14, 1999 11:45 AM Subject: Re: Why use Servlets with JSP? Taylor Gautier wrote: You can't really

Re: Sample JSP

1999-10-13 Thread Taylor Gautier
I think his email address and signature suggest already that he is not necessarily concerned with acting an appropriate manner for the list. His prior posts, unanswered by all, have already been "on the edge". I say get rid of him, and if he really wants to be on the JSP list, the let him get

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Taylor Gautier
Actually if you're going to do that you might as well just override service, which just delegates to doPost or doGet anyway. -tg - Original Message - From: Kirkdorffer, Daniel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 12, 1999 8:46 AM Subject: Re: doPost versus doGet

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Taylor Gautier
I disagree. One should apply traditional optimization procedures and good solid engineering principles to decide if this tradeoff is worth it or not. FWIW, Craig I see disagrees with me, but here are some of the pros and cons. You would do best to consider these for your own particular

Re: sample JSP

1999-10-12 Thread Taylor Gautier
seconded. He has gone from a pest to a major annoyance - Original Message - From: Kirkdorffer, Daniel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 12, 1999 7:41 PM Subject: Re: sample JSP Could someone toss this guy? -- From: PhartMaster

Re: WML JSP (was:Working out if a bean has been instantiated?)

1999-09-27 Thread Taylor Gautier
- Original Message - From: Karl Avedal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 27, 1999 5:11 AM Subject: Re: WML JSP (was:Working out if a bean has been instantiated?) For several reasons I reached the conclusion that number 2 was far superior. I don't have

Re: Content-type???

1999-09-27 Thread Taylor Gautier
There is a content-type directive in JSP 1.0 and greater. -tg - Original Message - From: Karl Avedal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 27, 1999 9:02 AM Subject: Re: Content-type??? Hey Anders, Hi everybody!! We are trying our best to build a

Re: Configuring JRun to automatically reload JavaBeans

1999-09-24 Thread Taylor Gautier
That's a rumor. Most servlet engines support dynamically reloading servlets that change (not beans), unfortunately after a certain, modest, level of complexity, this doesn' t really do any good since it only reloads servlets, not classes that may be dependent classes. That is if you have a

Re: User Security (was Re: Using JSP and Servlets.)

1999-09-22 Thread Taylor Gautier
You could force all jsp requests to go to a login page from your webserver (outside of your servlet engine that is). If, for example, you were running apache with jrun, then make apache forward all requests for *.jsp to some login page. Internally I think the forwards from the servlet to jsp

Re: Converting national characters to HTML

1999-09-13 Thread Taylor Gautier
Not yet. I've been pressing Sun to include content-type translation into the JSP spec. -tg - Original Message - From: Winfried Klum [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 13, 1999 3:16 AM Subject: Converting national characters to HTML I'm using data from a

Re: Why use JavaBeans?

1999-09-13 Thread Taylor Gautier
Sort of...of course. Current JSP doesn't support fully generic beans :( -tg - Original Message - From: DAVE TOWNSEND [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 13, 1999 7:06 AM Subject: Re: Why use JavaBeans? There is, in my opinion, very little

Re: How to set target attribute when redirecting to another JSP

1999-09-08 Thread Taylor Gautier
Return a page with Javascript in it to do it for you. -tg - Original Message - From: Ronak Shah [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 08, 1999 3:03 PM Subject: How to set target attribute when redirecting to another JSP I want to know if there is a way to

Re: [Fwd: Proposal for standardized tags]

1999-09-02 Thread Taylor Gautier
You should commit or rollback BEFORE the JSP page. The JSP page is only your display, all logic should have been performed before going to the JSP page. Thus you have seperation of business logic and presentation. (i.e. your JSP page should only show the results of committing or rolling back,

Re: Long process

1999-08-17 Thread Taylor Gautier
Actually, I am not sure that the EXACT behavior of the JSP engine is defined with respect to the behavior after a forward is issued, at least I haven't seen it. I was under the impression that issuing a forward would go and process the request on the same thread in the new servlet and then

Re: Long process (Rewrite)

1999-08-17 Thread Taylor Gautier
- Original Message - From: Mike Engelhart [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 17, 1999 11:42 AM Subject: Re: Long process (Rewrite) Correct me if I'm wrong, but this sounds like a complete and utter hack. I realize there are lots of different "methods" to do

Car won't start after installing JSP...

1999-06-10 Thread Taylor Gautier
I installed JSP and now my car won't start. Any ideas? -tg === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JSP-INTEREST". For general help, send email to [EMAIL

Re: dynamic taglets feature.

1999-06-09 Thread Taylor Gautier
Your first sentence says itall.Why don't you try jrun specific lists. (duh) -tg - Original Message - From: R.Balan To: [EMAIL PROTECTED] Sent: Wednesday, June 09, 1999 11:41 AM Subject: Re: dynamic taglets feature. Second try "R.Balan" wrote: Hi

Re: HTMLEncode

1999-05-25 Thread Taylor Gautier
I have to concur, this is one of the more annoying things about building dynamic pages with current Java solutions. There seems to be no intrinsic support for html, such as a construction set of some kind (see java.apache.org for a beginning attempt at such a beast), and most importantly, an

Re: HTMLEncode

1999-05-25 Thread Taylor Gautier
- Original Message - From: Ari Halberstadt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 25, 1999 1:34 PM Subject: Re: HTMLEncode Taylor Gautier [EMAIL PROTECTED] wrote: I have to concur, this is one of the more annoying things about building dynamic pages with current

Lastname, Firstname

1999-05-12 Thread Taylor Gautier
What's up with this Lastname, Firstname thing? I am sending from a different mail client now, so I guess I will find out if it is some funky configuration problem on Sun's part or a problem with my regular mail client. -taylor

Re: Using for params in URLs

1999-01-17 Thread Taylor Gautier
Umm, no, to be honest I have never heard of such a thing. It sounds as if you are referring to URL's, and I don't believe anyone has proposed changing the way URL's are created. Changing the to a ; seems like a disastrous idea, and in no way shape or form could possibly be linked to new

Re: Session values question

1999-01-02 Thread Taylor Gautier
You're both wrong :) David is half right. A session implements it's storage using a hashtable. A hashtable does not store the keys, that's why it's called a *HASH*table. It stores the values in a data structure. The keys, when a request for a value is made, are converted into a hashcode

Re: Garbage collection

1999-01-02 Thread Taylor Gautier
That doesn't FORCE garbage collection. Just suggests that if the GC would like to run, it can. -tg - Original Message - From: Pedro Teixeira [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 04, 1999 10:51 AM Subject: Re: Garbage collection Tao Kang wrote: No. You

OFFTOPIC: HTTP Tool

1999-01-02 Thread Taylor Gautier
Does anyone have or know of a good Java based HTTP tool? Ideally I could interactively edit HTTP messages and handle cookies. I looked at Gamelan. The closest thing I could find was a proxy that could monitor HTTP traffic. Any other sites that have a good collection of freeware I could have

Re: Session values question

1999-01-02 Thread Taylor Gautier
My apologies to David then... I think you are right. Maybe I ought to look at those books :) -tg - Original Message - From: Dustin Aleksiuk [EMAIL PROTECTED] To: Taylor Gautier [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, November 04, 1999 1:28 PM Subject: Re: Re: Session values