[Fwd: Help!!!Need Urgently...On Japanese Characters.]

2000-11-23 Thread Jacky Cheung
Hi, One thing missing. You have to save your JSP, which may have some Japanese character hard coded, in UTF-8 encoding (some Java editor support this). Jacky Jacky Cheung wrote: > Hi, > > Have you ever specify charset in your JSPs? Try to specify it to UTF-8 like > this..

Re: Help!!!Need Urgently...On Japanese Characters.

2000-11-23 Thread Jacky Cheung
Hi, Have you ever specify charset in your JSPs? Try to specify it to UTF-8 like this... <%@ page ... contentType="text/html ; charset=UTF-8" %> Jacky Alexius Luke Andrews wrote: > Dear Friends, > I am at the finishing stages of my project.I am having a very tight > shedule now.I have a proble

Re: RequestDispatcher

2000-09-16 Thread Jacky Cheung
Hi, I think I can explain forward and include using the following cases. Let say there are 2 servlet A and B. If A forwards request to B, the control will first go to A and then B. Servlet A does not generate any output to the output stream. All output is generated by Servlet B (including

Re: Jserv

2000-08-04 Thread Jacky Cheung
Jserv implements servlet 2.0 only. Jacky Marcelo Mayworm wrote: > Does anybody know if Jserv works with servlet api 2.1 or 2.2? > > Thanks > Marcelo de Mattos Mayworm > Java 1.1 Programmer Brainbench Certification > BL Informatica > Tel.: 0xx21 220-3642 0xx24 9901-2929 > [EMAIL PROTECTED] > [E

Re: Please conection between W98 and linux URGENT!!

2000-07-06 Thread Jacky Cheung
Hi, Have you installed FTP-Server in your Linux box? There should be a rpm for "WU-Ftpd" in the RH installation CD-ROM. Jacky "Wilson E. Lozano R. - Estudiante" wrote: > Hi guys, > > I am working with linux RH 6.1, apache 1.3.11, jdk 1.2 and gnujsp 1.0, > and i develop on workstation with win9

Re: Image genration using jcchart & passing it to HTML client.

2000-04-10 Thread Jacky Cheung
Hi, To generate a chart to client, you need to write a Servlet to generate the chart image (say, gif). 1. create a non visible Frame (i.e., call setVisible(false) or just don't call setVisible(true)) 2. add a chart to the frame and give the chart data to draw 3. get an ServletOutputStream 4. set

JServ 1.0 + GNUJSP 1.0

2000-03-13 Thread Jacky Cheung
Hi,   I am developing a web application using JSDK 2.1 and JSP 1.0. However, the production environment uses JServ 1.0 and GNUJSP 1.0. Since JServ 1.0 supports up to JSDK 2.0 only, my servlets cannot run.   I have read through the GNUJSP 1.0 documentations and found that GNUJSP will provide J

Cannot redirect in IE & NS

2000-03-07 Thread Jacky Cheung
Hi, I am developing JSP and Servlets using Forte for Java. In one of my Servlets, after putting some objects into a session (e.g. session.putValue("object", anObject);), it will redirect to an URL using response.sendRedirect(response.encodeRedirectURL(url)); I tested the servlet using t

JServ 1.0 & GNUJSP 1.0

2000-03-03 Thread Jacky Cheung
Hi, I am developing web applications using JSDK 2.1 servlets and JSP. However, The production enviroment will be JServ 1.0 + GNUJSP 1.0. Since JServ 1.0 supports only JSDK 2.0, all my servlets cannot run in JServ servlet engine. After reading the documentation of GNUJSP 1.0, I found that GNU

JServ 1.0 + GNUJSP 1.0

2000-03-03 Thread Jacky Cheung
Hi,   I am developing a web application using JSDK 2.1 and JSP 1.0. However, the production environment uses JServ 1.0 and GNUJSP 1.0. Since JServ 1.0 supports up to JSDK 2.0 only, my servlets cannot run.   I have read through the GNUJSP 1.0 documentations and found that GNUJSP will provide J

Re: getting info back from an applet

2000-02-13 Thread Jacky Cheung
There are some useful information for JSP including how to send information between JSP and Applet at http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP You may also interested in the information about servlet too and the URL is http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets Best rega