the correct order of tags in web.xml file

2001-12-25 Thread yilmaz
Hi all, can anyone tell me where i can find a piece of doc about the order of the tags in a web.xml file? For a while, i have been trying to use different combinations of those tags but still i couldn't find out the right order. I searched archives, FAQs , even http://java.sun.com/dtd/web-app_2_3.

Re: Weird problem with encoding in JSP

2001-12-25 Thread James Pan
Hi Seiju, Thank you very much! It works like magic! :-) Thanks again! James > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of seiju@home > Sent: Wednesday, December 26, 2001 10:12 AM > To: [EMAIL PRO

Flash & Jsp

2001-12-25 Thread Peter Dolukhanov
Season Greetings to everyone on this list!!   Quick question, I am developing a flash site which contains a dropdown box object, I need that dropdown box populated by JSP, I can obviously prepare it in any way that is needed. In HTML/JSP that just involved connecting to a database and perfom

Re: Weird problem with encoding in JSP

2001-12-25 Thread [EMAIL PROTECTED]
Hi. Try, something like this: param = new String(param.getBytes("8859_1"), "SJIS"); cheers, -seiju - Original Message - From: "James Pan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 25, 2001 9:40 PM Subject: Weird problem with encoding in JSP >

Weird problem with encoding in JSP

2001-12-25 Thread James Pan
Hi, I have a problem with displaying Japanese characters (read from a database) in JSP, and I can really use some pointers!! Set-up: 1) I have used this: <%@ page contentType="text/html; charset=Shift_JIS" %> on the first line of the page, and

Re: File Upload Using Tomcat

2001-12-25 Thread Dmitry Namiot
See for example Upload taglib on http://www.servletsuite.com/jsp.htm -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com __ Your favorite stores, helpful shopping tools and great gift ideas. Exper

Re: Accessing Beans from TagLibs

2001-12-25 Thread Yuri Grument
Title: JSP-INTEREST Digest - 23 Dec 2001 to 24 Dec 2001 (#2001-367) Hi, Puray   Tomcat includes all classes located in web-inf/classes and all jars located in web-inf/lib into CLASSPATH available to your tag handler. So, you ccan just add   import somepackage.SomeBean;   into your tag handler