tomcat and servlets-2-3-pdf-class

2001-04-20 Thread Simon Chia
hello, i have just d/l tomcat 3.2.1 for running servlets. and i have also downloaded servlets-2-3-pdf-class <-- what is this? and where do i put this in my jdk1.3? do i need apache to run my tomcat and servlets? or do ihave to install tomcat ontop of apache? thanks'! ===

No Subject

2001-04-20 Thread ravishankar
sign off === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://

No Subject

2001-04-20 Thread Noel E. Lecaros
Is this the first time you tried running tomcat on your nt box? Or did you already have it running before and you installed another application afterwards? Igor Zerbesi DIGEST wrote: > I try to launch tomcat.It seem there is not the runtime env well setted, > because I Had looked for SAXParser

Re: Creating Objects with UML and Java.

2001-04-20 Thread Ray O'Leary
"The Unified Modelling Language User Guide Guide" by Booch, Rumbaugh & Jacobson, while not specific to Java, worked really well for me. I started really working with Java about 20 months ago, so I may not be the best source for recommendations, but I found it very helpful. - Original Message

Re: Client/Server Communication - JSP Execution

2001-04-20 Thread horwat
When the user hits the stop button the socket connection is closed and the jsp no longer has a valid OutputStream. It is up to the jsp container to unload the servlet class. It can do so at any time a request is not being serviced by the jsp page. It does so by calling "jspDestroy()" before removi

Re: java.lang.IllegalStateException

2001-04-20 Thread horwat
You get this error typically when you try to change the headers after some data is already sent to the client. Justy - Original Message - > Hi everybody, I'm getting this awful message when I try to load a JSP > file. > > java.lang.IllegalStateException: Response has already been commit

Creating Objects with UML and Java.

2001-04-20 Thread Gilson do Nascimento Del Rei
Hello, Does someone know a good book about UML using Java ? thanks in advance. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST

Re: Custom Tag Lib

2001-04-20 Thread horwat
If you are interested in learning more about tag libraries, take a look at the open source Jakarta Taglibs project: http://jakarta.apache.org There you will find many libraries available. Justy - Original Message - > Hello, > does someone know a good and reliable custom tag library ??

Re: Anyone have free tickets for JavaOne?

2001-04-20 Thread Kevin Duffey
Hahahahhaa..ROFL! You crack me up. Free tickets to JavaOne. Here..I'll send you two I just paid $1500 each for..its on me! Have a great time! Hahahahaha.. > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf

Client/Server Communication - JSP Execution

2001-04-20 Thread Paliatsos, John
Hello everyone. Hopefully someone can provide an answer to the following: Let's say we have a jsp page (let's not get into design patterns, i.e. javabeans/servlets vs. jsp) that opens a database connection as part of its logic. The last part of the page destoys the connection. I've noticed tha

Re: Execute .bat file and SQLJ

2001-04-20 Thread Middleton, Jorge Luis
Hi, Why don't you try by executing the shell, and passing your bat file as a parameter to it. By example in NT String command = "start doit.bat"; p = java.lang.Runtime.getRuntime().exec(command); -Original Message- From: Christian Hamann Linares [mailto:[EMAIL PROTECTED]] S

Execute .bat file and SQLJ

2001-04-20 Thread Christian Hamann Linares
Hi All Can you help me about.. how i can execute a .bat file with java? and someone knows about SQLJ.. i would like use sqlj because i need recieved one object since a Store Procedure, one java object.. can you help me of that thanks for all atte Christian hamann =

Re: date problems

2001-04-20 Thread sandarbh
Hi chris thanks a lot, i extended the class and used getTime(date object) , computeTime() and used time (variable) to get things done. Thanks, Regards, Sandarbh - Original Message - From: "chris brown" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 20, 2001 3:45 PM Su

Re: Tcp/Ip Pool connector

2001-04-20 Thread Li, Ming (.)
Can you please provide the URL? Is it free? Basically my customers donot want spend much money on this. -Original Message- From: Marino Vittorio [mailto:[EMAIL PROTECTED]] Sent: Friday, April 20, 2001 10:12 AM To: [EMAIL PROTECTED] Subject: Re: Tcp/Ip Pool connector Use Poolman. It work

No Subject

2001-04-20 Thread Igor Zerbesi DIGEST
I try to launch tomcat.It seem there is not the runtime env well setted, because I Had looked for SAXParserFactory.class in jaxp.jar and there is. This is the response WinNt give me back: D:\JakartaTomcat\jakarta-tomcat-3.2.1\bin>tomcat run Including all jars in D:\JakartaTomcat\jakarta-tomcat-3.

Re: date problems

2001-04-20 Thread chris brown
You should be able to extract a Date object (using Calendar.getTime()) , then from this Date, call getTime() to get a long (in milliseconds). Do the same for your other date, then compare the two long values. A day can generally be assumed to be equal to : 1000ms * 60s * 60m * 24h You may wish

Re: date problems

2001-04-20 Thread sandarbh
Hi Chris , please see following line of code * Calendar df_curr = Calendar.getInstance(); Calendar df = Calendar.getInstance(); -- - Date dcurr =new Date(CurRec); df_curr.setTime(dcurr); *** so now i have two instances

Re: TOMCAT+Struts based application problem

2001-04-20 Thread Jim Bruno Goldberg
At 17:19 19/04/01 -0400, you wrote: >you must to define the follow variables > >CLASSPATH=/usr/local/java/lib:/usr/local/java/jre/lib >TOMCAT_HOME=/usr/local/tomcat >JAVA_HOME=/usr/local/java >export JAVA_HOME >export TOMCAT_HOME >export CLASSPATH > >an then run > >/usr/local/tomcat/bin/sh startup

Re: pdf

2001-04-20 Thread Brad Rhoads
check out http://www.activepdf.com > -Original Message- > From: Raghu Movva [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 05, 2001 3:42 AM > To: [EMAIL PROTECTED] > Subject: Re: pdf > > > not possible to write into a pdf file. U have altogether > create a new pdf > file. > regards >

Re: Tcp/Ip Pool connector

2001-04-20 Thread Marino Vittorio
Use Poolman. It works fine for every type of resource pooling. Cheers, Vittorio -Original Message- From: Patricio Vera [mailto:[EMAIL PROTECTED]] Sent: venerdì 20 aprile 2001 15.42 To: [EMAIL PROTECTED] Subject: Tcp/Ip Pool connector Hi, Any one know about a Tcp/Ip pool connector cla

Re: sign off

2001-04-20 Thread Ying Sun
sign off thanks === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at:

Tcp/Ip Pool connector

2001-04-20 Thread Patricio Vera
Hi, Any one know about a Tcp/Ip pool connector class, some like the db pool connector but for comunications? (where I can find it?) I use servlets applications. Are there some configuration for Tomcat to do this?, Regards, Patricio Vera S. Gentileza Terra Lycos Chile S.A. Visite nuestro p

Anyone have free tickets for JavaOne?

2001-04-20 Thread Keith Kwiatek
Does anyone have some free tickets they can give me to JavaOne? Keith === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Development in Java with UML

2001-04-20 Thread Gilson do Nascimento Del Rei
Hi all, Someone can to recommend me a good book about JAVA development using UML or vice versa. Thanks is advance. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROT

date problems

2001-04-20 Thread sandarbh
Hi all, I want to have exact difference in days for two days in Java. If for the current year , then I am able to extract exact info using calender class, but across the years its not possible?? can any one suggest a better way please?? Thanks in anticipation. sandarbh =

How to give multi-language using JAVA?

2001-04-20 Thread Aruna Thesia
hello friends. looking forward for your help for my prob. Now my problem is, I am doing a project of Color Analysis, which is running well on Microsoft Win-NT (English-Os) on JRUN3.1 server and SQL-server in my system (at INDIA). If works fine if all information is being written/typed in Englis

Re: File Upload from HTML form

2001-04-20 Thread Dmitry Namiot
Check out this for example: http://coldjava.hypermart.net/servlets/upload.htm -- Coldjava - server-side Java components http://coldjava.hypermart.net __ Get your own FREE, personal Netscape Webmail account today at http://webmail.

Re: Custom Tag Lib

2001-04-20 Thread Dmitry Namiot
What kind of tags do you need? Check out this for example: http://coldjava.hypermart.net/jsp.htm -- Coldjava - server-side Java components http://coldjava.hypermart.net __ Get your own FREE, personal Netscape Webmail account today a

Re: AW: Any free JSP hosting??

2001-04-20 Thread BERWART Thierry
http://www.webappcabaret.com -Message d'origine- De : Kurt, Oliver [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 20 avril 2001 11:23 À : [EMAIL PROTECTED] Objet : AW: Any free JSP hosting?? www.mycgiserver.com -Ursprungliche Nachricht- Von: manoj nahar [mailto:[EMAIL PROTECTED]]

AW: Any free JSP hosting??

2001-04-20 Thread Kurt, Oliver
www.mycgiserver.com -Ursprungliche Nachricht- Von: manoj nahar [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 20. April 2001 11:03 An: [EMAIL PROTECTED] Betreff: Any free JSP hosting?? hi there, Does anybody know of any free JSP web hosting?? thanks manoj nahar ==

Any free JSP hosting??

2001-04-20 Thread manoj nahar
hi there, Does anybody know of any free JSP web hosting?? thanks manoj nahar === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST

No Subject

2001-04-20 Thread Sreenath Venkatramanappa
Hi i have a doubt y do u use JSP instead of Servlets for File Upload and Download. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTER

java.util.Calendar, Timezone, and Daylight Savings Time change

2001-04-20 Thread chris brown
Hello, I'm writing a JSP application in which the user can specify a preferred timezone, using Calendar's get/setTimeZone() method. How are Daylight Savings Time changes handled by this? I don't know on which dates these changes take effect, so I can't see how to change the specified timezone aut

Re: pdf

2001-04-20 Thread Raghu Movva
not possible to write into a pdf file. U have altogether create a new pdf file. regards raghu - Original Message - From: Reddy, Narsimha (CORP, GEITC) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 20, 2001 1:57 PM > hi all > > I am having a problem > For my projec

No Subject

2001-04-20 Thread Reddy, Narsimha (CORP, GEITC)
hi all I am having a problem For my project purpose I need to read a .pdf file using ASP or JSP and modifying its contents. Is it possible to do so without converting .pdf into an intermediatery format. waiting for responses thanks in advance -narsimha reddy ==

Antwort: Test filed

2001-04-20 Thread Steffen Morawietz
use this code in the page you submit your form to: Enumeration params = request.getParameterNames(); String param; while (params.hasMoreElements()) { param = (String) params.nextElement(); out.println("Parameter: " + param + "\tWert: " + request.getParameter(param) + ""); } it

Test filed

2001-04-20 Thread [Lelievre Frederic]
Hi, I'm a new user of the JSP and I would like to test the filed in mY JSP when a press the submitt button. How can I make this test ? Thanks for for response. > Frédéric LELIEVRE > TTE - (BA / F04 C024) > > * +352-44992--2485 > * [EMAIL PROTECTED] > Visit us at http://www.clearstream.com