deployment emergency

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Diego Garber

deployment emergency

Post by Diego Garber » Thu Feb 27, 2003 3:15 pm

I am about to deploy the my application using the last JFreeChart version, and since I am quite new at Java, I didn't realize from the beggining that my client's would have to download the JRE (11 MB!!!) to be able to use the tool. My clients are web users who probably only have the MS Explorer installed and no extra Java-Plug-in or anything like it.
Please, if there is anybody who can help me, is there anyway to avoid this, or to solve it in short-term.
Thank you,

Diego.

David Gilbert

Re: deployment emergency

Post by David Gilbert » Fri Feb 28, 2003 1:06 am

Hi Diego,

Alas, there is no easy solution for you. JFreeChart needs the Java 2D API, which was included in Java from JDK 1.2 onwards. But Internet Explorer only supports JDK 1.1, which is many years old...so you need to have the Java plug-in installed for your applets to work.

I think this is one reason why servlets are popular, they have far fewer deployment problems since the end-user only sees HTML forms and images.

Regards,

Dave Gilbert

Locked