Re: Servlets vs JARs (and WARs)

1999-10-12 Thread Jason Hunter
Actually, a server can support WARs without requiring the user to do any unpacking.Gael Stevens wrote: Thanks. That sounds terrific, but how does the servlet container know which to do? I.e., the resource could be something which is expected to be severed as a static file (i.e., a

Re: How to open a file using Web Address ?

1999-10-12 Thread Ivan Hajicek
Hi Try FileObject endObj = new FileObject("/PostingJob/end.html"); this "absolute path" begins in your servlet base directory. Ivan [EMAIL PROTECTED] on 12.10.99 08:32:39 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Re: How to open a file using Web Address ?

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Andras Balogh wrote: Hi, I personally like the first approach. Like this You don't have to write a lot of servlets. (One servlet instead of two). I am not a guru but i don't feel that the design should suffer from this approach. Not sure what you

Re: Servlets vs JARs (and WARs)

1999-10-12 Thread James Todd
Thanks. That sounds terrific, but how does the servlet container know which to do? I.e., the resource could be something which the jswdk/tomcat implemenation details mirror that of jdk 1.2 java.net.JarURLConnection class ... but we don't require a jdk 1.2 jre. static or dynamic requests

Re: Anyone done https inside a servlet?

1999-10-12 Thread Gargi
Hi there, I hope the following code might help you. I have retrieve data from a URL with this code. Gargi /*/ import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.net.*; public class HttpPageLoader extends

Opening a HTML from servlet

1999-10-12 Thread Hemant Gore
Hi, I have validated the user from "login.html" by checking the data in the database. Now if the user is a valid user i have to display aa ALREADY existing html page. can i do this or will i have to write the whole page in the servlet println code? Bye Hemant... begin: vcard fn:

Re: site to host servlets free of cost

1999-10-12 Thread Sunil Dua
Hi Suresh mycgiserver.com is a site which offers you free hosting of servlet. Sunil Dua venkata p suresh wrote: Is there any site which hosts servlets free of cost similar to WWW.GAMELAN.COM which hosts applets Thanking you, P.V.SURESH What are you N2? Choose from 150 free e-mail

session Managemant

1999-10-12 Thread Palanisamy Easwaran
Hi, can U suggest me a web Application server which handles a good session management under server/session cluster environment out of ur own experience? thanks , easwar.P ___ To unsubscribe, send email to [EMAIL

Connection Pool

1999-10-12 Thread A Suresh
hi, I have implemented a connectionbroker to be used in a servlet application. The problem is that even if a single user is accessing the application, i can see extra connections appearing in the SQL database client. But i have put some debug statements in my connection pool and saw that it

Re: Connection Pool

1999-10-12 Thread Nic Ferrier
A Suresh [EMAIL PROTECTED] 10/12/99 10:32:24 AM I have implemented a connection broker to be used in a servlet application. The problem is that even if a single user is accessing the application, i can see extra connections appearing in the SQL database client. But i have put some debug

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Charles Forsythe
*Approach 1: servlet has BOTH doGet and doPost. doGet serves URL requests and doPost serves button presses and such events I'd go with this approach. If you allow people to GET pages which should get POSTed to, then people can set bookmarks on POSTable pages. This, at the very least,

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Andras Balogh
Hi, Maybe i am wrong here but what i ment is the following: Using a second aproach for a (dinamic) login (or subscription) page you will need one servlet ex. ShowLoginPage servlet with doGet() and another one ex .VerifyLoginDataSubmited servlet with doPost(). Using the first

AW: installing/calling servlets?

1999-10-12 Thread Hilpert, Martin
I can't copy our mission critical servlets to a directory called "examples"! That's why I created a new one and that's where the problems started Martin -Ursprüngliche Nachricht- Von: venkata p suresh [mailto:[EMAIL PROTECTED]] Gesendet am: Dienstag, 12. Oktober 1999 08:21 An:

servlet + cookie

1999-10-12 Thread Umesh mehendale
hello all , I am trying to save cookie to browser thru servlet but its not seems to be working. What I am trying to do is , when anyone access webserver from any machine , it should check for certain cookie , if cookie exist then allow user , else make user fill up details and prepare cookie

reg: Send Redirect

1999-10-12 Thread vishwaroopa_chary
Hi All,I am using the sendRedirect method in my program. Anybody could suggest where I have to place the HTML's (i.e Default dir for HTML's) . I'm using IBM HTTP WEB SPHERE application server on WindowsNT.thanks in advance,Pavan

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Martin Kuba
Andras Balogh wrote: p.s. Any coment is wellcomed. There are two main differences between GET and POST: #1. amount of data transmited with GET is limited to 4 kB, but unlimited with POST. Some browsers have higher limit, but you cannot rely on it. #2. POST requests are never cached by

Re: Anyone done https inside a servlet?

1999-10-12 Thread Stuart Butler
--- Gargi [EMAIL PROTECTED] wrote: public void init(ServletConfig config) throws ServletException { super.init(config); System.getProperties().put( "proxySet", "true" ); System.getProperties().put( "proxyHost", "314.7.66.8" ); System.getProperties().put( "proxyPort",

Re: Anyone done https inside a servlet?

1999-10-12 Thread Kelly, Carlton G.
The HttpURLConnection does not support the HTTPS protocol (the ability to use RSA encryption algorithms requires that somebody pay RSA licensing fees.) There aren't any free (and legal) solutions. -Original Message- From: Pinghua Young [mailto:[EMAIL PROTECTED]] Sent: Monday, October

Re: servlet + cookie

1999-10-12 Thread Luc Saint-Elie
Le 12:07 12/10/99 +0100, Miles Sabin a écrit: Sounds like you're not setting the cookies Max-Age/ Expires attributes. If you don't, the default behaviour is for the user-agent to discard the cookie 'when the users session ends' which typically means when the browser is quit ... which is the

Re: servlet + cookie

1999-10-12 Thread Miles Sabin
Luc Saint-Elie wrote, But how to set the max age.. to the max age in situation one doesn't want the cookie to expire (in an intranet where the users are always the same) I'm afraid there's no way to specify that a cookie never expires ... that's true for Netscape cookies, RFC2109 cookies, and

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Andy Bailey
You don't need more then one servlet for one application. Use method HttpServlet.service() instead of doGet() or doPost(), use HttpServletRequest.getPathInfo() or existence of some parameters to distinguish what page to show. I would seriously question the idea that you never need more than

Re: About BindException bug

1999-10-12 Thread Vijaya Mahalakshmi
Yong, The bug is nothing but if try to use the same port again it gives exception. i think you follow this.. -- From: Yong Hu[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. Sent: Tuesday,

Re: Opening a HTML from servlet

1999-10-12 Thread John Murray
You could do a response.sendRedirect(String absolutePathURL). - Original Message - From: Hemant Gore [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 12, 1999 3:24 AM Subject: Opening a HTML from servlet Hi, I have validated the user from "login.html" by checking

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Martin Kuba
Andy Bailey wrote: I would seriously question the idea that you never need more than one servlet per application. You should plan on having one servlet for each task that is part of the application and if you abstract things properly you can reduce this number usually. It is also a bad idea

Problems with servlet accepting multiple gets/posts?????

1999-10-12 Thread Gerardo Macari
Hi, My servlet accepts a request via the POST method which works fine. Then I also send an encoded URL (GET) to the same servlet i.e http://localhost/servlet/myServlet?name=me, but my servlet does not receive it, it seems that it is still trying to process the first request from my post. I

OFFTOPIC - Mysterious redirection in YAHOO

1999-10-12 Thread Ilia Masliev
Mysterious redirection in YAHOO: When I try to open the Help Yahoo page - the one with the question mark in the top image - http://www.yahoo.com/r/hw, the Netscape 4.0 browser displays page http://howto.yahoo.com instead. In order to understand how this is accomplished (i.e. how the browser

problems with servlet accepting get and post requests ???

1999-10-12 Thread Gerardo Macari
Hi, My servlet accepts a request via the POST method which works fine. Then I also send an encoded URL (GET) to the same servlet i.e http://localhost/servlet/myServlet?name=me, but my servlet does not receive it, it seems that it is still trying to process the first request from my post. I

Re: Anyone done https inside a servlet?

1999-10-12 Thread Martin Kuba
"Kelly, Carlton G." wrote: The HttpURLConnection does not support the HTTPS protocol (the ability to use RSA encryption algorithms requires that somebody pay RSA licensing fees.) There aren't any free (and legal) solutions. You need two separated things: #1. implementation of SSLSocket

Any Servlet Newsgroup?

1999-10-12 Thread Ghazizadeh, Yasaman
All, The mail traffic on this DL is overwhelming. The information is very useful. Unfortunately, my mail server is overloaded! Is there a Servlet Newsgroup that I can subscribe to instead? Thank you, --Yasaman ___ To

Re: Opening a HTML from servlet

1999-10-12 Thread Abhijit Kulkarni
Can we make the changes in that html? Say I want to change the value of one of the text field.How this can be achieved? -Original Message- From: John Murray [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, October 12, 1999 6:14 PM To: [EMAIL PROTECTED] Subject: Re: Opening a HTML

AW: Any Servlet Newsgroup?

1999-10-12 Thread Hilpert, Martin
I have the same question! Dozens of emails every day ... a newsgroup would be much more convenient! Martin -Ursprüngliche Nachricht- Von: Ghazizadeh, Yasaman [mailto:[EMAIL PROTECTED]] Gesendet am: Dienstag, 12. Oktober 1999 15:26 An: [EMAIL PROTECTED] Betreff: Any Servlet Newsgroup?

Re: Opening a HTML from servlet

1999-10-12 Thread Keith Ball
Use a SERVLET that what their designed to do. Keith --- Keith Ball - Praktikant AF12 Operationelle Analysen Luftwaffe IABG MbH Einsteinstr. 20 85521 Ottobrunn Phone : 0049-89-6088-2556

Weblogic and Websphere

1999-10-12 Thread Jaman Burton
All, Has anyone out there ever had any problems getting servlets to work that use URL Rewriting with Websphere 2.02? For some reason, I can't get websphere to recognize that the servlets are trying to use URL rewriting...but the exact same pieces of code work using weblogic as the web

Re: AW: Any Servlet Newsgroup?

1999-10-12 Thread Nic Ferrier
I have the same question! Dozens of emails every day ... a newsgroup would be much more convenient! Martin Von: Ghazizadeh, Yasaman [mailto:[EMAIL PROTECTED]] Betreff: Any Servlet Newsgroup? The mail traffic on this DL is overwhelming. The information is very useful. Unfortunately, my mail

Re: AW: Any Servlet Newsgroup?

1999-10-12 Thread Sean Merritt
rtfm DIGest/NODIGest Causes the subscriber to receive one posting per digest cycle (typically daily) rather than individual messages as they are processed by LISTSERV. The MAIL/NOMAIL option controls whether messages should be delivered, and the DIGEST/INDEX/NODIGEST/NOINDEX option controls

Unsubscribe

1999-10-12 Thread Salvady, Gopal
Unsubscibe ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources:

Re: AW: Any Servlet Newsgroup?

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Hilpert, Martin wrote: I have the same question! Dozens of emails every day ... a newsgroup would be much more convenient! Well, I was going to say that creation of a servlet newsgroup was already in process, and that it should be available any day now (the voted started

Re: Unsubscribe

1999-10-12 Thread Keith Ball
hehehehhehehehehehhehehehehehehhehehehehehehhehehehehehehe, now thats funny !!! oops :) Keith Unsubscibe ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff

Re: Frames doesn't work correctly with Netscape?

1999-10-12 Thread Wuwer, Jacek M.
Guns, I think your problem is related to HTML ( + styles, some Jvascript might be involved ) not to servlets. Have you tried it with static HTML ? Jack -Original Message- From: Guns Venkateswaran [SMTP:[EMAIL PROTECTED]] Sent: Monday, October 11, 1999 18:45 To: [EMAIL PROTECTED]

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Andras Balogh wrote: Maybe i am wrong here but what i ment is the following: Using a second aproach for a (dinamic) login (or subscription) page you will need one servlet ex. ShowLoginPage servlet with doGet() and another one ex .VerifyLoginDataSubmited servlet with

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Andy Bailey wrote: You don't need more then one servlet for one application. Use method HttpServlet.service() instead of doGet() or doPost(), use HttpServletRequest.getPathInfo() or existence of some parameters to distinguish what page to show. I would seriously

Re: Compiling servlet examples

1999-10-12 Thread Shawn McKisson
Cheryl Bender wrote: I downloaded both the jsdk 2.0 and 2.1 (first I downloaded 2.1, then I saw a FAQ that said the directory that had the jsdk.jar file had to be in the CLASSPATH--I could not find any such file, so I downloaded and ran the setup for 2.0) My CLASSPATH is set as follows:

Re: Unsubscribe

1999-10-12 Thread Andrea Lardicci
"Sometimes you cannot read under your nose" Cyrano du Bergerac (Pinocchio) At 16.38 12/10/99 +0100, you wrote: hehehehhehehehehehhehehehehehehhehehehehehehhehehehehehehe, now thats funny !!! oops :) Keith Unsubscibe

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Martin Kuba wrote: Andy Bailey wrote: I would seriously question the idea that you never need more than one servlet per application. You should plan on having one servlet for each task that is part of the application and if you abstract things properly you can

Re: How to open a file using Web Address ?

1999-10-12 Thread Wuwer, Jacek M.
Whta is the FileObject ? You can use the ServletContext().getRealPath( url ) to avoid specifying the full path in your servlet. Jack -Original Message- From: Hartono (Telebot) [SMTP:[EMAIL PROTECTED]] Sent: Monday, October 11, 1999 06:30 To: [EMAIL PROTECTED] Subject: How to

Re: JVM does not die.....

1999-10-12 Thread Shawn McKisson
I had many odd behaviors when using JServ 1.0. Try upgrading and see if your situation improves. You could also write an awk script that ensures that the java process is killed when the apache server goes down. Im not sure of the exact method that apache uses to shutdown the jvm, but is it

Re: AW: Any Servlet Newsgroup?

1999-10-12 Thread Nic Ferrier
Milt Epstein [EMAIL PROTECTED] 10/12/99 3:35:05 PM On Tue, 12 Oct 1999, Hilpert, Martin wrote: I know some might disagree, but I think this is a real shame. I think it would've been a good alternative resource for people interested in servlets. This *is* a shame. Could Sun not do

laggard unix

1999-10-12 Thread Paul Szynol
hi, my unix server has suddenly gotten very slow in processing servlets. a lot of the time, i simply get an internal error message from apache. has anyone experienced this? is there a way to flush all servlets from memory? thanks very much, paul

Re: Opening a HTML from servlet

1999-10-12 Thread Shawn McKisson
Hemant Gore wrote: Hi, I have validated the user from "login.html" by checking the data in the database. Now if the user is a valid user i have to display aa ALREADY existing html page. can i do this or will i have to write the whole page in the servlet println code? Bye Hemant...

Re: reg: Send Redirect

1999-10-12 Thread Shawn McKisson
You will need to check you web server properties and determine the web root. When someone asks for http://xxx.xxx.com, documents will be served out the directory defined by the web root property. If you are using apache with WAS, then it is in your apache httpd.conf file. --shawn [EMAIL

Re: AW: Any Servlet Newsgroup?

1999-10-12 Thread Ghazizadeh, Yasaman
No need to get angry or frustrated! It was just a simple question! Thanks for your help, though! --Yasaman -Original Message- From: Nic Ferrier [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 12, 1999 10:04 AM To: [EMAIL PROTECTED] Subject: Re: AW: Any Servlet Newsgroup? I have the

Re: Single Thread

1999-10-12 Thread Craig R. McClanahan
Baris EFE wrote: on Apache Jserv if you add your servlets path to repositories like: repositories=C:\ApacheJServ\servlets you don't need to restart your webserver. This assumes that you have "autoreload.classes" set to "true" in your zone properties file. Some other servlet engines

Re: Opening a HTML from servlet

1999-10-12 Thread Steven J. Owens
Hemant writes: I have validated the user from "login.html" by checking the data in the database. Now if the user is a valid user i have to display aa ALREADY existing html page. can i do this or will i have to write the whole page in the servlet println code? 1) redirect the user

Re: Connection Pool

1999-10-12 Thread Craig R. McClanahan
Nic Ferrier wrote: A Suresh [EMAIL PROTECTED] 10/12/99 10:32:24 AM I have implemented a connection broker to be used in a servlet application. The problem is that even if a single user is accessing the application, i can see extra connections appearing in the SQL database client. But i

Re: AW: Any Servlet Newsgroup?

1999-10-12 Thread Ghazizadeh, Yasaman
Thanks Sean. So, I should type: DIGest in the subject area or DIGest [EMAIL PROTECTED] in the message area? Thanks, --Yasaman -Original Message- From: Sean Merritt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 12, 1999 10:19 AM To: [EMAIL PROTECTED] Subject: Re: AW: Any

Re: JAVA Programmers

1999-10-12 Thread Agbeja, Tolu (CRTATL)
Hi, I am looking for Java programmers with experience using Servlets. This project is for a client based in Florida and right now am trying to work out an arrangement which will allow telecommuting (this is contingent on the client accepting this arrangement) The project requires knowledge of

Re: JAVA Programmers

1999-10-12 Thread Agbeja, Tolu (CRTATL)
Hi, I am looking for Java programmers with experience using Servlets. This project is for a client based in Florida and right now am trying to work out an arrangement which will allow telecommuting (this is contingent on the client accepting this arrangement) The project requires knowledge of

Re: AW: Any Servlet Newsgroup?

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Nic Ferrier wrote: Milt Epstein [EMAIL PROTECTED] 10/12/99 3:35:05 PM [ ... ] I know some might disagree, but I think this is a real shame. I think it would've been a good alternative resource for people interested in servlets. This *is* a shame. Could Sun not do

Re: laggard unix

1999-10-12 Thread Paul Szynol
it was a memory issue; i reset apache; all's well. thanks anyway. :) best, paul -Original Message- From: Paul Szynol [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 12, 1999 11:20 AM To: [EMAIL PROTECTED] Subject: laggard unix hi, my unix server has suddenly gotten very slow in

Re: Connection Pool

1999-10-12 Thread Paul Szynol
this may be obvious, but also make sure that you are closing all statements -- stmt.close(), etc -- and thereby releasing resources back to the database. paul Nic Ferrier wrote: A Suresh [EMAIL PROTECTED] 10/12/99 10:32:24 AM I have implemented a connection broker to be used in a servlet

Re: Opening a HTML from servlet

1999-10-12 Thread Lance Lavandowska
Another option no-one has posted is the include the html file using RequestDispatcher. This several advantages: 1) does not expose direct url to html page (maintains security) 2) does not require each page to be compiled (if it were converted to .jsp) 3) is faster more scalable (as Shawn

Re: Opening a HTML from servlet

1999-10-12 Thread Steven J. Owens
I wrote: Hemant writes: I have validated the user from "login.html" by checking the data in the database. Now if the user is a valid user i have to display aa ALREADY existing html page. can i do this or will i have to write the whole page in the servlet println code? 1)

help Broken pipe exception

1999-10-12 Thread Kazys Jocionis
hello, In what circumstances this exception may occur? java.sql.SQLException: Error during query: Communication link failure: Broken pipe I found it in my servlet error log when it is quering mySQL database using mm JDBC driver. I use single connection on init(). thanks Kazys

Re: Opening a HTML from servlet

1999-10-12 Thread Chris Pratt
Take a look at WebMacro or FreeMarker. I think these will do what you want. (*Chris*) - Original Message - From: Abhijit Kulkarni [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 12, 1999 6:34 AM Subject: Re: Opening a HTML from servlet Can we make the changes in

content type to download a csv file

1999-10-12 Thread Lisa Klag
what would I set the content type to if I wanted to download a .csv file? This is related to my question from yesterday about the browser differences... Right now I am setting the content type to application/txt, which I don't even think exists (ha! that could be my problem). I've trie setting

Re: How to install servlets in JSDK/JWSDK?

1999-10-12 Thread John Considine
Per my understanding (through experience, trail and error) you must have your servlets under the WEB-INF directory and then under servlets directory. Also, you should(must) have the following files under WEB-INF directory. servlets.properties, mappings.properties, mime.properties,

Re: content type to download a csv file

1999-10-12 Thread John Murray
I have directed the server to redirect to the csv file. The browser has either prompted the user to save the file to disk or displayed it directly on screen. My users can then save an on screen csv file from the browser. - Original Message - From: Lisa Klag [EMAIL PROTECTED] To: [EMAIL

Problem with URL Forwarding using Servlets

1999-10-12 Thread Louise Caldicott
Dear All, I have written a servlet application that simply takes requests made to a web server and relays them onto another web server. I have written this application to enable access to our (IIS) Web Extensions from web servers running on non-Win32 platforms. Our Win32 specific web URLs have

Servlets not working correctly for IE5

1999-10-12 Thread Zhou, Bin, BGM
Hi List, I am not sure if this is a servlet issue or a browser issue. We are now working on a web project using Java Servlets. One of the pages is working fine on Netscape(NS) 4.04, NS 4.06, NS 4.6, Internet Explorer(IE) 4.0 sp1, IE4.0 sp2. But in IE 5, it only shows a part of the page. When

Re: [Java Apache Announce] [ANN] JetSpeed 1.0b1

1999-10-12 Thread Julian Flores
please put the JetSpeed file in ZIP format.. i can't decompress it with WinNT4.0 / WinZip7.0 Luc Saint-Elie [EMAIL PROTECTED] on 10/12/99 12:10:37 AM Please respond to "A mailing list for discussion about Sun Microsystem's Java Servlet API Technology." [EMAIL PROTECTED] To:

How to refresh servlet from applet

1999-10-12 Thread Ramesh A. Babu
Hi, I have a applet and servlet in browser. When I click applet's OK button, I want to send info from applet to servlet and also reload my servlet. When I tried, it executing the code but not refreshing. It it will be great if u tell ans. If u know anyother way or URL let me know. I

DISC: Servlet List FAQ?

1999-10-12 Thread Charles Forsythe
I'll try to keep this brief: There is frequent griping about the volume of this mailing list, particularly with respect to questions that start "someone has probably answered this already...". Nic Ferrier and others point people to the list archive, which is somewhat helpful, but how about a

Re: path and classpath in jserv.properties

1999-10-12 Thread guillaume ORIOL
thank you for the answer. i am a bit confused with the wrapper.path be simply the path to org.apache.jserv.JServ class: i wasn't able to get DB2 JDBC driver to work without modifying this variable! how do you explain that? why do we have wrapper.path and wrapper.classpath in jserv.properties

how to determine if a driver is JDBC 2.0 compliant?

1999-10-12 Thread guillaume ORIOL
Is there somebody who knows how to determine whether a JDBC driver is JDBC 1.0 or JDBC 2.0 compliant? I searched the JDK API (java.sql.DatabaseMetaData) but found nothing. The getDriverVersion method only returns the internal version of the software, not its compliance to some JDBC specs.

Scrollable resultset/JDBC 2.0

1999-10-12 Thread guillaume ORIOL
It is very useful for the user to be able to scroll forward AND BACKWARD in a list (which has been read from a SQL table). When the table is short ( 1000 rows) we can read the entire table in memory and give easily the user the opportunity to scroll. With very large tables, the problem cannot be

Re: DISC: Servlet List FAQ?

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Charles Forsythe wrote: I'll try to keep this brief: There is frequent griping about the volume of this mailing list, particularly with respect to questions that start "someone has probably answered this already...". Nic Ferrier and others point people to the list

Re: [Java Apache Announce] [ANN] JetSpeed 1.0b1

1999-10-12 Thread Julian Flores
now i find how to decompress the gz and tar form Windows NT... tnks for all.. =D Julian Flores [EMAIL PROTECTED] on 10/12/99 12:03:22 PM Please respond to "A mailing list for discussion about Sun Microsystem's Java Servlet API Technology." [EMAIL PROTECTED] To: [EMAIL

Re: [Java Apache Announce] [ANN] JetSpeed 1.0b1

1999-10-12 Thread jon *
please put the JetSpeed file in ZIP format.. i can't decompress it with WinNT4.0 / WinZip7.0 oh come on...winzip can decompress .tar.gz files. try learning how to use the software sitting on your hard disk. ;-) -jon ___

Re: DISC: Servlet List FAQ

1999-10-12 Thread Lance Lavandowska
As Milt Epstein already pointed out, this information is posted weekly (you'll find it attached). I advocated jsp-interest getting a similar posting, but it has cut the noise insignificantly. Would posting this daily to the list be more or less noise? Is that a rhetorical question? Perhaps if

Re: DISC: Servlet List FAQ

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Lance Lavandowska wrote: As Milt Epstein already pointed out, this information is posted weekly (you'll find it attached). I advocated jsp-interest getting a similar posting, but it has cut the noise insignificantly. Would posting this daily to the list be more or less

Re: Scrollable resultset/JDBC 2.0

1999-10-12 Thread Emuleomo, Olu (PME)
Talking about jdbc. (I know its OT, but pls indulge) Anybody know why createStatement() is not SYNCHRONIZED? --Olu E. -Original Message- From: guillaume ORIOL [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, October 12, 1999 2:25 PM To: [EMAIL PROTECTED] Subject: Scrollable

Re: Any Servlet Newsgroup?

1999-10-12 Thread Preston L. Bannister
The mail traffic on this DL is overwhelming. The information is very useful. Unfortunately, my mail server is overloaded! Is there a Servlet Newsgroup that I can subscribe to instead? I just went through the process needed to create the newsgroup: comp.lang.java.servlets It did not get

FW: Weblogic and Websphere

1999-10-12 Thread Jaman Burton
All, Has anyone out there ever had any problems getting servlets to work that use URL Rewriting with Websphere 2.02? For some reason, I can't get websphere to recognize that the servlets are trying to use URL rewriting...but the exact same pieces of code work using weblogic as the web

Re: JAVA Programmers

1999-10-12 Thread Antonio Villafana
Hi, I am very much interested if you can get that telecommuting thing going! *Antonio* - Original Message - From: Agbeja, Tolu (CRTATL) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 12, 1999 11:58 AM Subject: Re: JAVA Programmers Hi, I am looking for Java

Re: JAVA Programmers

1999-10-12 Thread kondam sampath
Can I have some more info Sampath From: Jay Baker [EMAIL PROTECTED] Reply-To: "A mailing list for discussion about Sun Microsystem's Java Servlet API Technology." [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: JAVA Programmers Date: Mon, 11 Oct 1999 10:19:13 -0500 Can you give

Re: Scrollable resultset/JDBC 2.0

1999-10-12 Thread Nic Ferrier
"Emuleomo, Olu (PME)" [EMAIL PROTECTED] 10/12/99 9:20:18 PM Talking about jdbc. (I know its OT, but pls indulge) Anybody know why createStatement() is not SYNCHRONIZED? This has some VERY on-topic ramifications since Servlets are the most common area of the Java platform right now where

encodeURL()

1999-10-12 Thread Matteo Manzini
Hi. I'm trying to make my servlet work using HttpServletResponse.encodeURL() for all my URL (this is due to cookie problem that some browsers can have, as all of u perfectly know...). At the moment I have some problems and two questions for the list: 1- Can I use encodeURL() with form

Re: JAVA Programmers

1999-10-12 Thread Lance Lavandowska
Can everyone please respond directly to Tolu? Thanks. Lance -Original Message- From: kondam sampath [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Tuesday, October 12, 1999 4:13 PM Subject: Re: JAVA Programmers Can I have some more info Sampath From: Jay Baker

Re: Any Servlet Newsgroup?

1999-10-12 Thread Mark McCarty
Preston, if you decide to reconsider hollar, I'll vote for a Servlet newsgroup.. Mark A McCarty "Preston L. Bannister" wrote: I just went through the process needed to create the newsgroup: comp.lang.java.servlets It did not get enough votes (only 100-odd) to pass. This was a surprise

Re: JAVA Programmers

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Lance Lavandowska wrote: Can everyone please respond directly to Tolu? Well, he can use it as a good filter (i.e. if people can't figure out how to respond privately ... :-). -Original Message- From: kondam sampath [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Carlos J. Herrera
On Tue, 12 Oct 1999, Andy Bailey and Later Milt Epstein wrote: You don't need more then one servlet for one application. It is also a bad idea to override the servlet service method as that is usually implemented by the ServletEngine vendor to route requests to the right place.

Re: Any Servlet Newsgroup?

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Mark McCarty wrote: Preston, if you decide to reconsider hollar, I'll vote for a Servlet newsgroup.. A note (I think I mentioned it in my earlier post in this thread, but just in case): By Usenet rules, a failed new newsgroup vote cannot be taken up again for six months.

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Carlos J. Herrera wrote: On Tue, 12 Oct 1999, Andy Bailey and Later Milt Epstein wrote: You don't need more then one servlet for one application. It is also a bad idea to override the servlet service method as that is usually implemented by the ServletEngine

Re: Any Servlet Newsgroup?

1999-10-12 Thread Shawn McKisson
How do I get notified of which newsgroups are up for vote? I didn't even know that this was occuring or I would have voted! --shawn Milt Epstein wrote: On Tue, 12 Oct 1999, Mark McCarty wrote: Preston, if you decide to reconsider hollar, I'll vote for a Servlet newsgroup.. A note (I

Re: DISC: Servlet List FAQ

1999-10-12 Thread James Todd
Milt Epstein wrote: Some time back this was the case. Then someone from Sun (one of the James'?) posted here that Sun had addressed that situation, and indeed, after that, the archives were working just fine. I haven't tried it for a couple of weeks, so don't know if there are recent

Re: DISC: Servlet List FAQ?

1999-10-12 Thread Charles Forsythe
Um, there already *is* such a regular posting to this list. Wow. I don't know how I managed to miss that... except possibly for the fact that I end up deleting a lot of the traffic on this list. The real trick is getting people to use those resources first. There's a list of URLs at the bottom

Re: Any Servlet Newsgroup?

1999-10-12 Thread Milt Epstein
On Tue, 12 Oct 1999, Shawn McKisson wrote: How do I get notified of which newsgroups are up for vote? I didn't even know that this was occuring or I would have voted! Well, this is all part of the standard newsgroup creation process. I don't recall the whole process, but there is a

Re: AW: Any Servlet Newsgroup?

1999-10-12 Thread Matt Tucker
Of course, ServletForum is a great place to ask servlet questions too. :) Check out http://www.servletforum.com -Matt Tucker Milt Epstein wrote: On Tue, 12 Oct 1999, Hilpert, Martin wrote: I have the same question! Dozens of emails every day ... a newsgroup would be much more

Re: DISC: Servlet List FAQ?

1999-10-12 Thread Steven J. Owens
Um, there already *is* such a regular posting to this list. Wow. I don't know how I managed to miss that... except possibly for the fact that I end up deleting a lot of the traffic on this list. The real trick is getting people to use those resources first. I think, if I ever run

Re: How to open a file using Web Address ?

1999-10-12 Thread Yong Hu
How can I to make a connection to the server and retrieve the file if the file I am trying to open is not in the same machine ? From: Andras Balogh [EMAIL PROTECTED] Reply-To: "A mailing list for discussion about Sun Microsystem's Java Servlet API Technology." [EMAIL PROTECTED] To:

  1   2   >