I/O Exception in a JSP as well as a servlet

2000-11-26 Thread kal inuganti
Hi all I am trying to do a simple string match using jsp or servlet. The problem arises when my servlet or jsp is unable to locate the XML file that is parsed and then the string match is done. I get an error message as follows : Error: 500 Location: /examples/servlet/students1 Internal Servlet

Re: how do I get Parameters from form to the same Jsp

2000-11-26 Thread Martin Nwalal
Thanks for your help but my problem was not resolved this my jsp with html form I would like to submit this form by using a href=... tag instead of input type=submit . tag How Can I do? %@ page isErrorPage="true" % %@ page import="java.sql.*" % %@ page import=java.util.*" % html head

draw image

2000-11-26 Thread Ching sen, Jackson
hi all, I copy this draw image servlet from a book import java.io.*; import java.awt.*; import javax.servlet.*; import javax.servlet.http.*; import Acme.JPM.Encoders.GifEncoder; public class HelloWorldGraphics extends HttpServlet { public void doGet(HttpServletRequest req,

Re: I/O Exception in a JSP as well as a servlet

2000-11-26 Thread Doug Turner
I think your problem is that you are trying to use a URI in the constructor for FileInputStream, and you need to be using a name that makes sense to the native file system (in NT, for example, that means something like d:\myservletfiles\xml\students1.xml). There are a number of ways to attack

Re: JSP in Apache

2000-11-26 Thread Loni Bharat Nagwani
See if you have any services (like IIS) running and close them. - Original Message - From: Aaron Hayes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 24, 2000 3:51 AM Subject: Re: JSP in Apache I cannot get Tomcat to run. I followed the config options, have Apache

Re: draw image

2000-11-26 Thread Loni Bharat Nagwani
You have to run X Windows on the server for this to work. Also in your appserver startup file you have to set DISPLAY variable. If you need more details send me an email and I will dig out the details tommorow. - Original Message - From: Ching sen, Jackson [EMAIL PROTECTED] To: [EMAIL

Urgent.. servlet with images

2000-11-26 Thread Christian Hamann Linares
Hi all I have a several problem... i have to use images... i have Oracle database, but i dont know what kind of type i have to use for storing my image in. Besides, i have to query my Bd and with ResultSet ask a image... Can you help me What kind of type i have to use in my DataBase to My

Re: JSP Debugging

2000-11-26 Thread M. Simms
JBuilder 4 ENTERPRISE edition full breakpoint debugging of JSP source and Java servlet source code. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of $B% %s%=%s%K!!!%^%C%/ (B [EMAIL PROTECTED]

Re: Secure Web Site and Netscape 6 problem

2000-11-26 Thread M. Simms
Comment: Everyone knows you can't build a decent web app from the server-side only. Make sure you can control the clientside Javascript as well or else "you'll be sorry".. If your management intends the HTML programmers to be totally separate from the server-side programmers, again.

Re: How Client Side JavaScript call serverside JSP or Servlet

2000-11-26 Thread M. Simms
script lang="javascript" function gotoJSP(); { location.href="yourjsp.jsp"; } /script -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of hamid Sent: Tuesday, November 07, 2000 5:24 AM To: [EMAIL

JavaMail Help

2000-11-26 Thread Antonio W. Lagnada
Hi All, Please help. I am getting this return code with my SendMail Program using the JavaMail 1.1.3 package. It seems to be complaining about a class not existing (the javamail is defined in my $CLASSPATH). The SendMail.java compiles with no errors. Are there properties that I am not setting

Re: JavaMail Help

2000-11-26 Thread Mahati
hai, it seems u forgot to have activation.jar in u'r classpath - Original Message - From: Antonio W. Lagnada [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 27, 2000 8:40 AM Subject: JavaMail Help Hi All, Please help. I am getting this return code with my SendMail

Re: JSP Debugging

2000-11-26 Thread John Foulds
Does only the enterprise version have full debugging, or do the lower versions like pro? - Original Message - From: "M. Simms" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 26, 2000 9:17 PM Subject: Re: JSP Debugging JBuilder 4 ENTERPRISE edition full breakpoint

Imprised Applicaionn server????

2000-11-26 Thread subramanian Athimoolam
hi friends where can i download 'Imprised Applicaion Server'. ch.. subu _ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com

Re: Imprised Applicaionn server????

2000-11-26 Thread Mio Nino Marquez
For a 60 day trial copy, check: http://www.borland.com/appserver/download/ BTW, they now refer to it as Borland Application Server. :) Mio Nino P. Marquez (Java/JSP/Servlet newbie) - Original Message - From: "subramanian Athimoolam" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday,

CodeWarrior Download

2000-11-26 Thread Khurram Sardar
Hello Everyone, Does anyone know of any evaluation version of CodeWarrior available for download. If anyone knows or has an evaluation version of Code Warrior then please share the knowledge with me and help me in this regard. Best Regards, Khurram Sardar

How does Cache-control exactly work?

2000-11-26 Thread Zeng Fenghua
Hello, everyone! As to implementing Cache Control in JSP (or servlet), at least the following two paragraphs of sample codes can always be found: 1, Using JAVA methods, like (in JSP or in servlet) % response.setHeader("Pragma","No-cache");

Re: how do I get Parameters from form to the same Jsp

2000-11-26 Thread Murali Mohana Rao
Hi Martin, If you want to pass the parameters of the same jsp, you have post the from action into same jsp only, then you can get all parameters, what you are passing... i hope it's like this.. test.jsp html body form name="samp" action=test.jsp input type="test" name="Fname" input

Re: JavaMail Help

2000-11-26 Thread PIYUSH NIGAM
put activation.jar along with mail.jar Piyush Nigam [EMAIL PROTECTED] -Original Message- From: Antonio W. Lagnada [mailto:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 8:40 AM To: [EMAIL PROTECTED] Subject: JavaMail Help Hi All, Please help. I am getting this return code with

Re: [OT] ResultSet SCROLL_INSENSITIVE only on some PCs

2000-11-26 Thread PIYUSH NIGAM
Try installing the latest jdk on your server and giving it's path to your server Piyush Nigam [EMAIL PROTECTED] -Original Message- From: Robuschi (Delfi) [mailto:[EMAIL PROTECTED]] Sent: Friday, November 24, 2000 5:09 PM To: [EMAIL PROTECTED] Subject: [OT] ResultSet SCROLL_INSENSITIVE

Re: how do I get Parameters from form to the same Jsp

2000-11-26 Thread deepak
you can have an onclick event on link which submitsthe form - Original Message - From: "Martin Nwalal" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 26, 2000 3:40 PM Subject: Re: how do I get Parameters from form to the same Jsp Thanks for your help but my problem was

SAX and DOM

2000-11-26 Thread Anthony Mak
Does DOM take more resource (memory) than SAX? Anthony Mak --- $B%"%s%=%s%K!!!%^%C%/ (B $B%j%s%/pJs%7%9%F%`3t02qR (B $B%"%I%P%s%9;v6HIt!! (BE9 $B%A!%` (B === To unsubscribe: mailto [EMAIL PROTECTED] with body:

Re: Exception in a bean method

2000-11-26 Thread Clemente Dani
Throwing the exception in your bean-method definition - Mensaje Original - De: Bala Murali [EMAIL PROTECTED] Fecha: Jueves, Noviembre 23, 2000 4:01 am Asunto: Exception in a bean method I am using one java bean(connecting to a database),if i get any error then,how to pass the error