Re: JSP 1.2

2002-09-26 Thread Chuck Amadi
Steven A. Martin wrote: > I'm considering jumping into 1.2 for my future JSP support. With 2.0 on >the way, should we wait? I don't tend to fall into the struts camp wanting >more control over my view sending signals to the controller layer. Besides >staying with the latest and somewhat great

file upload from web page, download to new location using jsp?

2002-09-26 Thread hugo
Hi I would like to upload a file from a html form, and use java code in my jsp file to download it to a new location. I have the html for file uploading all set up, and I know how to set up an inputstream in java, but I do not know how to connect the two i.e. connect the file accessed by the upl

Re: share objects

2002-09-26 Thread Martin Simon
I finally deal with this problem... i am using session and i am storing objects(instanties of any class) in sessions and there are accessable from any jsp!!! - Original Message - From: ROLDAN, Gabriel raul <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 25, 2002 10:

setContentType()

2002-09-26 Thread Debopam Ghoshal
Hi All, Can anyone please let me know what are the different content type settings available. Actually i want to force the user download an xml file instead of it opening in the browser. So for this what content type setting should i use so that the user is prompted to download and save the file i

Re: setContentType()

2002-09-26 Thread m batsis
Debopam Ghoshal wrote: > Hi All, > Can anyone please let me know what are the different content type settings > available. Actually i want to force the user download an xml file > instead of > it opening in the browser. Well, if the browser is able to accept and render an XML document there is no

apache-tomcat configuration

2002-09-26 Thread Asadullah Khan
hi all, can anybody provide some link on how to configure apache on linux to talk to tomcat on win2k?? its very urgent. i have searched in google. but could not find a complete step by step document. pl help. regards, asad èº{.nÇ+‰·¦j)m¢X¬¶Ç«¾6¯j˧r‰°ŠØ[¡Ü¬Šè}òR<ƒSLZ+v(

parsing an html document

2002-09-26 Thread jyoti chereddy
Hello, Can someone suggest me a good way of parsing an html document. Does anyone know of good html parsers. thanks, Jyoti _ Send and receive Hotmail on your mobile device: http://mobile.msn.com ===

Re: parsing an html document

2002-09-26 Thread KEITH KOSMICKI
We used XML to parse HTML documents for LexisNexis Document Solutions. Wouldn't know how with JSP, just learning JSP. Be interested in how to do this in JSP. Best, Keith Kosmicki Programmer Consulant STL Technical Partners >>> [EMAIL PROTECTED] 09/26/02 10:50AM >>> Hello, Can someone sugges

Re: parsing an html document

2002-09-26 Thread Daniel Ramirez
you could begin with the DocumentParser class javax.swing.text.html.parser.DocumentParser - Original Message - From: "jyoti chereddy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 26, 2002 9:50 AM Subject: parsing an html document > Hello, > > Can someone sugge

Re: parsing an html document

2002-09-26 Thread Dror Matalon
http://www.quiotix.com/downloads/html-parser seems to work well. On Thu, Sep 26, 2002 at 03:50:17PM +, jyoti chereddy wrote: > Hello, > > Can someone suggest me a good way of parsing an html document. > Does anyone know of good html parsers. > > thanks, > Jyoti > > ___

Document Indexing for searching

2002-09-26 Thread Clayton Nash
Hi, We'd like toe be able to full text search some documents people upload to our application. We've managed to do this for word documents bu converting them to HTML and indexing the actual text. We'd like to extend this to a variety of other document formats. Does anyone know of an application w

JSP 2.0

2002-09-26 Thread Shawn Bayern
On Thu, 26 Sep 2002, Chuck Amadi wrote: > Slightly off the topic but do you know any links regarding JSP v2 i.e > white papers,specification etc as I would like to know what's going on > as so far from a few threads I have read JSP v2 forgives the programmer > from the artful knowledge of Java an

Stored Procedures in Java

2002-09-26 Thread Lorena Carlo
Hello all, Can somebody help me?. I have an stored procedure in SQL Server 7, and it has input, output, and input-output parameters. With the inputs and outputs parameters I don't have any problems, I use the set method for input and the registerOutParemeter for the outputs, but I have some par

Communicating errors

2002-09-26 Thread Campano, Troy
When my JSP page throws an error I'd like it to send an Instant Message to me over some mechanism. Maybe AOL IM? ICQ? My own method? Has anyone done anything like this before. thanks for the help! ~ Troy Campano ==To

Re: Communicating errors

2002-09-26 Thread David Cate
Certainly, I use a custom error page which is simply a wrapper. The piece doesn't send IM or anything - it simply places a generic error class in a JMS queue that gets processed and builds trouble tickets. Some flaws with this - if the web server isn't responding, the error page doesn't work cor

Re: Communicating errors

2002-09-26 Thread Steven A. Martin
The typical monitoring software just does email. The communication protocols for IM and other chats are not open so any software you build now is not guaranteed to continue working even after a patch update. Steven === To u

Re: Communicating errors

2002-09-26 Thread Campano, Troy
Has anyone written their own chat application? I guess it would consist of a server and clients. thanks again! -Original Message- From: Steven A. Martin [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 4:13 PM To: [EMAIL PROTECTED] Subject: Re: Communicating errors The

Password Storage

2002-09-26 Thread Pat Griffin
Hi, Any good information on how to store passwords across JSPs? My application consists of different JSPs, all of which require ongoing connection to a database. Obviously I dont' want the user to keep entering the info. Any help? Thanks. - Pat ===

Re: parsing an html document

2002-09-26 Thread Pete Freitag
> Can someone suggest me a good way of parsing an html document. > Does anyone know of good html parsers. JTidy has a DOM parser for "Real World HTML": http://sourceforge.net/projects/jtidy _ Pete Freitag CTO, CFDEV.COM Tools for Web Developers http://

Re: Password Storage

2002-09-26 Thread Shane Stene
You can implement something similar to what Yahoo and other sites use. Allow the user to either a) continually enter their password information or b) allow them to login once and have an appropriate box checked that says to store the login and password on their machine (in a cookie). If you are

Re: Document Indexing for searching

2002-09-26 Thread Pete Freitag
Verity will pretty much do all that automatically (it won't convert the binary documents, it will actually read them). http://www.verity.com/ _ Pete Freitag CTO, CFDEV.COM Tools for Web Developers http://www.cfdev.com/ -Original Message- From:

Re: Password Storage

2002-09-26 Thread Greg Dunn
One way to do it is to use a session attribute to mark them as "logged in" and put a test in each page that redirects them to the login page if said attribute is not marked "logged in". I'm sure there are lots of alternatives with code in the archive or on the web if you search for "JSP authentic

JSP / Servlets related jobs

2002-09-26 Thread Dror Matalon
Folks, My company, Zapatec, has launched a job marketplace where people can find software projects. All the jobs are done online, and most of them are JSP/Java servlets related. Thought people on the list might be interested. Zapatec is at http://www.zapatec.com the marketplace is at

apache-linux with tomcat-win2k

2002-09-26 Thread Asadullah Khan
hi gurus, can somebody provide any links on how to configure apache on linux to talk to tomcat on win2k?? i have searched in google. but could not find a complete step by step document. please help. It is very urgent. regards, asad N‹§²æìr¸›zf¢–Ú%ŠËlz»ãjö¬ºw(›­…ºÊÈ

Re: apache-tomcat configuration

2002-09-26 Thread Vikramjit Singh
> -Original Message- > From: Asadullah Khan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 26, 2002 4:50 AM > To: [EMAIL PROTECTED] > Subject: apache-tomcat configuration > > > > hi all, > > can anybody provide some link on how to configure apache on > linux to talk to tomcat

Re: My project directory in JSP/java.

2002-09-26 Thread Vikramjit Singh
> -Original Message- > From: Anand Desai [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 25, 2002 7:33 AM > To: [EMAIL PROTECTED] > Subject: My project directory in JSP/java. > > > Hello, > > I would like create a file in my application-project > directory of my tomcat > installati

Re: My project directory in JSP/java.

2002-09-26 Thread Ritesh Gupta
Try this thread, it discusses the same problem as you have in detail. http://forum.pramati.com/forum/thread.jsp?forum=16&thread=10 07 > -Original Message- > From: Anand Desai [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 25, 2002 7:33 AM > To: [EMAIL PROTECTED] > Subject: My p

Re: apache-tomcat configuration

2002-09-26 Thread Asadullah Khan
hi vikramjit thanks for the help. I was looking for apache with tomcat 3.2 using mod_jk. regards Asad - Original Message - From: Vikramjit Singh To: [EMAIL PROTECTED] Sent: Friday, September 27, 2002 9:19 AM Subject: Re: apache-tomcat configura

Re: Tomcat installation issues

2002-09-26 Thread Brendan Spinks
Another quick question... Is anybody using j2se 1.4x in a production environment??? -Original Message- From: Bruce Geerdes [mailto:[EMAIL PROTECTED]] Sent: Thursday, 26 September 2002 1:31 AM To: [EMAIL PROTECTED] Subject: Re: Tomcat installation issues Brendan Spinks wrote: > We are h

Re: apache-tomcat configuration

2002-09-26 Thread Vikramjit Singh
> -Original Message- > From: Asadullah Khan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 26, 2002 9:27 PM > To: [EMAIL PROTECTED] > Subject: Re: apache-tomcat configuration > > > hi vikramjit > thanks for the help. > > I was looking for apache with tomcat 3.2 using mo

A doubt in Http Session

2002-09-26 Thread Vijayanand
Hi all, I am facing a strange problem in my application. The problem is: Iam having an JSP page in which, iam storing a value into http session. Then iam redirecting to a servlet, using sendRedirect method. In the redirected servlet, iam trying to retrieve the value from the session. Bu

Unrolling Exceptions In a servlet takes a long time

2002-09-26 Thread Dror Matalon
When you get an exception in a JSP tag, you have quite a bit of unrolling to do. The stack trace just shows you the stack of the last exception that was thrown. If you want to know the "root cause" you need to "unroll" it. The most obvious case is what tomcat for intance does when it shows you an