Max file size of a jsp Page

2002-04-03 Thread Antony Stace
Hi Can someone please tell me what the maximun file size can be for a jsp Page. Is there a limit on the size of 1. The jsp text file 2. The java file which is made from the jsp file 3. The compiled class file. Does the size of tag libraries have any effect? Cheers Tony

Re: Pop3 Mail client.

2002-03-15 Thread Antony Stace
look at javamail i am sure you can do what you want with this _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com === To unsubscribe: mailto

How can I access a Bean from inside a Taglib

2002-03-07 Thread Antony Stace
Hi Folks Can someone kindly tell me how I can access a session bean from inside a Taglib. Cheers Tony === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with

Re: Beans invokes method on JSP??

2002-01-09 Thread Antony Stace
Ravindra wrote: Dear All, I want to talk to a perl master in our jsp group out there ?hurry.I badly need a help on perl what about trying a perl mailing list? === To unsubscribe: mailto [EMAIL PROTECTED] with body:

Where should I store image files?

2001-12-16 Thread Antony Stace
Hi Folks I have a jsp/servlet web app and am not sure where I should keep the image files. The image files are constantly getting added to, ie people can upload new images and they should be stored somewhere, either in a database or in a directory somewhere. I am not sure which is the best way

Printing out all beans available to a jsp page

2001-12-11 Thread Antony Stace
Hi How can I print out a list of all the beans available to a jsp page. Ie I want to include in my jsp page a small section of code which prints out all the beans that this page can access. Cheers Tony === To

Re: Printing out all beans available to a jsp page

2001-12-11 Thread Antony Stace
Thanks for the reply Chris. I just ran your code and it works fine, except for the Enumeration enum = pageContext.getAttributeNames(); while( enum.hasMoreElements() ) { out.println( enum.nextElement() + br ); } My jsp page is hanging on the pageContext.getAttributeNames() line. Any

How can I assign customtag value to a variable

2001-12-11 Thread Antony Stace
Hello I have custom tag which gives me a value bean:write name=messagestag property=messageId filter=true/ I want to be able to use this value in a scriptlet, how can I do this? I want to do somehthing like % String messageId= bean:write name=messagestag property=messageId filter=true/ ;

JSP tutorial/Information in Japanese

2001-11-28 Thread Antony Stace
Hi Folks Can someone point me to where I can find information about using JSP in Japanese. I am after any articles/tutorials on how to use JSP, the Sun site seems very weak in information about JSP in Japanese, or maybe I just can't find it! Cheers Tony

Re: Using JSP and Flash Together, How is it done?

2001-11-21 Thread Antony Stace
and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Antony Stace Sent: Tuesday, November 20, 2001 7:11 PM To: [EMAIL PROTECTED] Subject: Using JSP and Flash Together, How is it done? Hello Ladies and Gentlemen Can someone give me some pointers on how to integrate Flash and JSP pages or give me a reference

Using JSP and Flash Together, How is it done?

2001-11-20 Thread Antony Stace
Hello Ladies and Gentlemen Can someone give me some pointers on how to integrate Flash and JSP pages or give me a reference to a website or books which explain how to use them together. Cheers Tony === To unsubscribe:

JSP/SERVLET DESIGN QUESTION

2001-11-14 Thread Antony Stace
Hi I have a questionI want to know if the following is bad design. I have a servlet, called Simple, with the following doPost code in it [snip] public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException,

Re: JSP/SERVLET DESIGN QUESTION

2001-11-14 Thread Antony Stace
How can I include these includes from a servlet? Cheers Tony Chen, Gin wrote: Why dont u just put the includes inside the servlet? -Original Message- From: Antony Stace [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 4:35 AM To: [EMAIL PROTECTED] Subject: JSP