Re: Prob of Servlet objects in JSP functions

2000-07-18 Thread suresh
the visualcafe latest version supports servlet. yu can read professional jsp programming. reagrds suresh "Rath, Dipak (Dipak)" wrote: > Hi: > I'm new to the world of JSP/Servlet. I'm about to be a part of a project and > we intend to use jsp and servlet. We ordered Visual Cafe (expert edition) >

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Robert Nicholson
Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Daryani Santosh > Sent: Monday, July 17, 2000 3:46 PM > To: [EMAIL PROTECTED] > Subject: Re: Prob of Servlet objects in JSP functions > > > Professio

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Ionel Condor
Hi, I am using Visual Age for Java integrated with Tomcat and the debugging process works very vell. I think that any IDE support jsp/servlets. (for example Visual Cafe works very well with Dynamo App Server, so i think that it must works also with servlets (for sure) and also with a jsp engine.

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Daryani Santosh
> To: [EMAIL PROTECTED] cc:(bcc: Santosh Daryani/IT/Aon Consulting) Subject: Re: Prob of Servlet objects in JSP functions Hi: I'm new to the world of JSP/Servlet. I'm about to be a part of a project and we intend to use jsp and servlet. We ordered Visual Cafe (expert edition)

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Rath, Dipak (Dipak)
Hi: I'm new to the world of JSP/Servlet. I'm about to be a part of a project and we intend to use jsp and servlet. We ordered Visual Cafe (expert edition) and realized that it does not support jsp and servlet development. I would like to know if some of you use visual cafe for jsp/servlet developm

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Robert Nicholson
Implicits are only available within _jspService so you'll have to rethink. Time to consider using beans or in your case possibly custom tags as you have access to the pageContext from within a Custom Tag. > -Original Message- > From: A mailing list about Java Server Pages specification a

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Scott Evans
The declarative tag <%! %> creates instance variables in the servlet into which your jsp page is compiled. This means that such variables are shared by all threads running through the servlet. Because the declarative tag is evaluated at compile time, none of the "implicit" objects (request, respon

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Ionel Condor
Hi, the code from declarations is inserted in the body of the servlet class, outside of the service(...) method (for which the request/response objects are defined). Gerard Menezes wrote: > Hi all, > > I have a problem while defining JSP functions in the > Declarative tag <%! %>. > I cannot acc

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Kiran
Hi Gerard, If you make a study of your JSP generated servlet, you'll notice that that the contents of your declarative tag go in as instance mathods/variables of the servlet. The implicit objects are extracted from the page context object within the _jspService method and so are not available to