JSP Functions

2003-05-29 Thread Leviaguirre Queral José Luis
Hello, I would like to know what are the advantages and disadvantages of declaring functions in jsp. I heard something about "serialization" but didn't get the concept on the book. Thanks in advanced. JLL.- ==To unsubscr

JSP functions vs

2003-02-26 Thread Francisco Manuel Martínez Suárez
Hi all! I wonder if are there strong reasons to choose one of these: include JSP or methods to include functions in a JSP. What I want is to have in JSP's some methods, let's say, heavy mathematical methods that can be accesed from any of the JSP's in a web application. If I use a class to have

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
ecification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Gerard Menezes > Sent: Monday, July 17, 2000 1:37 PM > To: [EMAIL PROTECTED] > Subject: Prob of Servlet objects in JSP functions > > > Hi all, > > I have a problem while defining JSP functions in the > D

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Scott Evans
-Original Message- From: Gerard Menezes [mailto:[EMAIL PROTECTED]] Sent: Monday, July 17, 2000 2:37 PM To: [EMAIL PROTECTED] Subject: Prob of Servlet objects in JSP functions Hi all, I have a problem while defining JSP functions in the Declarative tag <%! %>. I cannot access the pre-defi

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 <%!

Re: Prob of Servlet objects in JSP functions

2000-07-17 Thread Kiran
lable to other methods. May be you should look into tag extensions to separate your controller logic from the view. -Kiran. Gerard Menezes wrote: > Hi all, > > I have a problem while defining JSP functions in the > Declarative tag <%! %>. > I cannot access the pre-defin

Prob of Servlet objects in JSP functions

2000-07-17 Thread Gerard Menezes
Hi all, I have a problem while defining JSP functions in the Declarative tag <%! %>. I cannot access the pre-defined servlet objects, like request,response,session,application etc. It gives errors such as : *** Error: "request" is either a misplaced package name or a non-exis

jsp functions

1999-12-28 Thread Maciejowski
Is it possible to define a java function, in the jsp file that could be call as a javascript function ? For instance: param1 init param2 init <% myfunction(param1, param2); %> Thanks in advance, david === To unsubscri

Re: Using Server Side JSP functions

1999-11-30 Thread Hans Bergsten
Masaoud wrote: > > Hi, > > I wish to define a function in my JSP, which executes at the server. > I tried using > > > > public String doSomething( String input ) { > String retVal = new String(); > retVal = input + " hello"; > return retVal; > } > > > > The above is similar to an exa

Re: Using Server Side JSP functions

1999-11-30 Thread Praveen Kumar S .
PLS note this is not a JSP SCRIPT it is a server side JAVASCRIPT pls go thro the code again hope this helps Amit > -Original Message- > From: Masaoud [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, November 30, 1999 4:35 PM > To: [EMAIL PROTECTED] > Subject: Using

Using Server Side JSP functions

1999-11-30 Thread Masaoud
Hi, I wish to define a function in my JSP, which executes at the server. I tried using public String doSomething( String input ) { String retVal = new String(); retVal = input + " hello"; return retVal; } The above is similar to an example I saw in a book related to JSP. When I