What is the use of Page context ?

2002-11-15 Thread Gopinath D
Hi all, Could u plz tell me what the page context in JSP is. I have seen some questions in many interviews. I was not able to find out this help me... Thanks in advance. Regards, Gopi. === To unsubscribe: mailto

Re: Can anyone help.......??

2002-11-15 Thread Emmanuel Eze
Does Apache Tomcat has support EJB? Can anyone please tell an application server supports JSP, Servlet, EJB. Thanks Emma -Original Message- From: Karr, David [mailto:david.karr;ATTWS.COM] Sent: Friday, November 15, 2002 12:39 AM To: [EMAIL PROTECTED] Subject: Re: Can anyone

Re: Can anyone help.......??

2002-11-15 Thread Adrian Janssen
Use JBoss for EJB, Tomcat for Servlet and JSP. -Original Message- From: Emmanuel Eze [SMTP:[EMAIL PROTECTED]] Sent: 15 November 2002 12:49 To: [EMAIL PROTECTED] Subject: Re: Can anyone help...?? Does Apache Tomcat has support EJB? Can anyone please tell an application

Re: What is the use of Page context ?

2002-11-15 Thread Padhu Vinirs
PageContext is a wrapper around all the implicit objects ( session, context, out etc ). It is used to store/remove/change attributes in all the scopes. And all tag handlers get to the implicit objects using only this object. From the spec: The PageContext provides a number of facilities to the

Re: Can anyone help.......??

2002-11-15 Thread Haseltine, Celeste
No Tomcat does not support EJB's. A free version of an EJB container is JBoss. Or you can purchase an application server that supports all three, EJB's, Servlets, JSP's. Examples are Macromedia's JRUN 4.0, IBM WebSphere, BEA Weblogic, etc Celeste -Original Message- From: Emmanuel

Jsp Page Cleanup Tool

2002-11-15 Thread Maurice M Gates
Greetings~ Does anyone know of a tool or ide that checks to see which pages are in use, I have about several thousands pages to check if any links, popups or redirects are being used, doing site structure housecleaning~

Re: Jsp Page Cleanup Tool

2002-11-15 Thread KEITH KOSMICKI
Try Hotdog Professional (Free for 30 Days), then download supertools especially LinkBot. Then run LinkBot against your site. Best, Keith E. Kosmicki Applications Consultant State of IL Human Services STL Technology Partners [EMAIL PROTECTED] 11/15/02 10:38AM Greetings~ Does anyone know of a

internationalization

2002-11-15 Thread Marivie Galeon
Hi to all! Is it possible to modularize(thru subdirectory per page) resource properties in a web application? Pls. see the following code snippet (web.xml) as example: servlet-nameaction/servlet-name servlet-classorg.apache.struts.action.ActionServlet/servlet-class

Re: JSP sendRedirect textarea problem

2002-11-15 Thread Dror Matalon
Hi, The string were cut by %0D%0A characters. Is my javabean wrong ? No, these are carriage return line feed between your two lines that are coming from the text area. I can't really tell what the problem is, but if I had to guess, I would say that you're constructing your insert string by

Re: JSP sendRedirect textarea problem

2002-11-15 Thread Glen Lewis
Thank you for your message. I am currently out of the office and will return on Monday, November 25th. I will however be checking my email daily. If you have an urgent question, please contact Rich Bagley at 495-6294 Glen Lewis

Re: Can anyone help.......??

2002-11-15 Thread Suzette Stoutenburg
Will JBoss work with an Oracle db? Thanks. Adrian Janssen wrote: Use JBoss for EJB, Tomcat for Servlet and JSP. -Original Message- From: Emmanuel Eze [SMTP:[EMAIL PROTECTED]] Sent: 15 November 2002 12:49 To: [EMAIL PROTECTED] Subject: Re: Can anyone help...??

Re: Can anyone help.......??

2002-11-15 Thread Robert S. Sfeir
On Friday, November 15, 2002, at 05:04 PM, Suzette Stoutenburg wrote: Will JBoss work with an Oracle db? Why would it care? Oracle has a JDBC driver, plop that in and look in the jboss/docs/examples/jca directory for an example script. Edit the script and drop it in

Using ENTER key to submit

2002-11-15 Thread randie ursal
hi list, i have a strange problem. i have a simple form that has a textfield and a submit button. when i enter a value which is in English into the textfield and presses ENTER key, everything works fine. but when i use JAPANESE characters my SERVLET wasn't able to get any value. also,

Re: Using ENTER key to submit

2002-11-15 Thread Dror Matalon
Hi, I'm not sure this 100% related but we ran into something similar. Different browsers do different things when you hit ENTER. Checking the HTML spec, it looks like there's no definition of what should happen. Most browsers handle the ENTER as if you've clicked on the first button, but some do

Re: Using ENTER key to submit

2002-11-15 Thread randie ursal
but this problem only happen when we enter a Japanese characters into the textfield. Dror Matalon wrote: Hi, I'm not sure this 100% related but we ran into something similar. Different browsers do different things when you hit ENTER. Checking the HTML spec, it looks like there's no definition