Re: jdbc taglib question ?????

2001-04-17 Thread Rob L'Estrange
String column comparison values have to be surrounded by single quotes in your sql query. You would need, select * from description where name like '<%= request.getParameter("name") %>' Note that single quotes within your request.getParameter("name") value would have to be escaped or the sql que

Re: Organizing Application Constants

2001-04-06 Thread Rob L'Estrange
I usually put my constants in a class called Constants. I implement them as final and static. I'd then deploy the class in my location accessible to all web applications running in my JSP/Servlet server. I think this location would be server specific (but I could be mistaken). From any web app, I

Re: off topic( javascrpt + jsp) ???Urgent Please

2001-04-03 Thread Rob L'Estrange
OoooOooo hehe Calm yourself bro. Hardly the crime of the century. Post on Shekhar! Rob - Original Message - From: "T.A. Flores" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 03, 2001 1:34 PM Subject: Re: off topic( javascrpt + jsp) ???Urgent Please > It occurred t

Re: onClick="javascript: form1.submit(); ">

2001-03-28 Thread Rob L'Estrange
onClick="form1.submit();" That is, you don't need the "javascript" part of your original code. Rob - Original Message - From: "paniny serou" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 1:44 AM Subject: onClick="javascript: form1.submit(); "> > hello JSP

Re: JavaBeans Components vs. EJBs

2001-03-25 Thread Rob L'Estrange
Java has two component models: JavaBeans and Enterprise JavaBeans. Besides the fact that, firstly, they are component models and, secondly, that they have the text "JavaBeans" in their title, the two have no more in common than any arbitrary sets of Java classes. JavaBeans is an intraprocess comp

Questions for the list (was: problem with javaBean and jsp)

2001-03-22 Thread Rob L'Estrange
--Original Message- > > From: cupid1 [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, March 21, 2001 11:01 PM > > To: [EMAIL PROTECTED] > > Subject: Re: problem with javaBean and jsp > > > > > > It makes sense now. thanks. Is this only the jws beha

Re: SQL Server

2001-03-22 Thread Rob L'Estrange
Righto. My suspicion was that maybe your DSN was setup to use NT, rather than SQL Server, authentication, but you've said below that you've set it up with SQL Server authentication, so that blows that theory. One thing though... You say that you've created a User DSN. I can't really comment on th

Re: The SQL Server problem

2001-03-22 Thread Rob L'Estrange
Fady Just need a bit more info bud... What type (1, 2, 3 or 4) of driver are you using? And, are you going through a DSN? Is the user you are trying to login with setup as an NT logon or SQL Server logon (the last version of SQL Server I've used is SQL Server 7; I'm assuming that SQL Server 2000

Re: How to delete files

2001-03-21 Thread Rob L'Estrange
Assuming that your program has permission to do so, yes. Note that your JavaDocs API documentation is a good source of info on questions like this. Rob - Original Message - From: "Balkrishna R.Parab" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 8:54 PM Sub

Re: problem with javaBean and jsp

2001-03-21 Thread Rob L'Estrange
tionality. Rob - Original Message - From: "cupid1" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 8:00 PM Subject: Re: problem with javaBean and jsp > It makes sense now. thanks. Is this only the jws behavior or tomcat's too? > > -

Re: problem with javaBean and jsp

2001-03-21 Thread Rob L'Estrange
eload your support class. Rob - Original Message - From: "cupid1" <[EMAIL PROTECTED]> To: "Rob L'Estrange" <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 7:17 PM Subject: Re: problem with javaBean and jsp > Rob, > > I restarted the serve

Re: Caching a JSP Page

2001-03-21 Thread Rob L'Estrange
headers are used to control caching. Does anyone have any feedback on this? Thanks Rob - Original Message - From: "Kare Nuorteva" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 5:07 AM Subject: Re: Caching a JSP Page > On Wed, 21 M

Re: Caching a JSP Page

2001-03-21 Thread Rob L'Estrange
Does anyone know where all possible response headers are documented? Rob - Original Message - From: "Hoorn, Michiel van" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 1:19 AM Subject: Re: Caching a JSP Page > Or this in yuor jsp: > > <% > response.addHe

Re: include file

2001-03-19 Thread Rob L'Estrange
>>>Am I doing anything wrong?<<< Yes! :) Below I outline two things. Firstly, why it's wrong, and secondly, what you can do to achieve what you want to achieve. If you want to skip to the solution (the description of why it's wrong is long winded), go down near the bottom of my reply. For the p

Servlet API src

2001-03-18 Thread Rob L'Estrange
Are the source files for the servlet API classes available on Sun's website somewhere? I had a look around but couldn't find a link to the little suckers. Thanks Rob === To unsubscribe: mailto [EMAIL PROTECTED] with body: "s

Re: Inner scriptlet tags

2001-03-18 Thread Rob L'Estrange
String retStr="How are you today?"; > return retStr; > } > > and calling it in the main JSP page as > > <%= testMethod() %> > > I have not tried it, so please excuse me if it does not work. But logically > it should work, and I believe it explains y

Re: Returned mail: see transcript for details

2001-03-18 Thread Rob L'Estrange
I agree. Please fix. Rob - Original Message - From: "iZone Infotech" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 17, 2001 2:53 AM Subject: Fw: Returned mail: see transcript for details > To JSP Forum Moderator, > > Can you do something to remove all these people w

Re: Synchronization issue

2001-03-18 Thread Rob L'Estrange
Hehe I replied to the wrong message thread. Please ignore the reply below :) Rob - Original Message - From: "Rob L'Estrange" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 19, 2001 1:57 PM Subject: Re: Synchronization issue > Howdy bro

Re: Synchronization issue

2001-03-18 Thread Rob L'Estrange
Subject: Re: Inner scriptlet tags > > > > > > Well this is a jsp declaration and not a scriptlet. > > There has been a lot of discussion on the difference, use of jsp > declaration > > and scriptlets. > > All of which can be found at the mail archives of this

Re: Spawning a thread

2001-03-18 Thread Rob L'Estrange
>>> A good question or two may be: Are there uses for <%! %> variables ? and if not, why were they included in the original JSP specifications doc ?<<< Method declaration. This is when they're valid, useful, and, in my opinion, indespensible. For these reasons, the JSP specification would have be

Re: Inner scriptlet tags

2001-03-17 Thread Rob L'Estrange
his list. > Please help yourself as well as this list by searching for them out there. > Have a nice day. > With regards, > Sachin S. Khanna. > www.emailanorder.com > > - Original Message - > From: Rob L'Estrange <[EMAIL PROTECTED]> > To: <[EMAIL PROTECT

Inner scriptlet tags

2001-03-16 Thread Rob L'Estrange
Hi All I've been developing with ASP for sometime and have finally got around to checking out JSP. I've come across something curious. In the source code at the bottom of this email, the highlighted code would be permissible (semantically) in ASP but is not permissible in JSP. I'm using Tomcat 3

Global.jsa ?

2001-03-16 Thread Rob L'Estrange
Hi All Does the JSP framework make use of a Global.jsa file, similar to how the the ASP framework makes use of a Global.asa file? If not, is there something in the JSP framework that plays this role? In particular, I'm interested in application and/or session start/end events, and the ability to

Test email (please ignore)

2001-03-16 Thread Rob L'Estrange
Test. === 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://jav