Oracle Application Server

1999-04-02 Thread Vincent Roderick
Hello all, Has anyone out there dabbled with Oracle Application Server, in particular the JAVA cartridge? Can you discuss your experience and the pros and cons, related to JSP? How is JSP better or worse at delivering dynamic content? What have you heard about the JAVA cartridge? Is it reliabl

Please add servlet.jar to FAQ

1999-05-24 Thread Vincent Roderick
Hello all, Maybe I'm missing something in the sun instructions, but could you please add to the FAQ that you need to add :\servlet.jar to your classpath if you want to import javax.servlet.*. Sun's install instructions are pathetic !! Thanks, Rick ==

Re: default.cfg

1999-06-01 Thread Vincent Roderick
Go to http://www.esperanto.org.nz/jspbook/ and read jspbook.pdf. It has a tutorial... Rick > -Original Message- > From: Daniel Zamora [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, June 01, 1999 11:21 AM > To: [EMAIL PROTECTED] > Subject: default.cfg > > Hello, > > I don't know how t

No Subject

1999-06-03 Thread Vincent Roderick
Mustafa, Please only send one email with all of your questions as a courtesy to others that have to sort through a large amount of emails. Also, please use the subject field to give a clue of what your question/questions are about. Thanks for your cooperation. Rick > -Original Message

Re: Model II Problem

1999-06-03 Thread Vincent Roderick
Enrico, I believe a 404 error is the web server telling you that it can't find the file you are looking for. You simply need to give it the correct URL...as in with the JSP 1.0 download http://:8080/examples/jsp//.htmlDid you try this? > -Original Message- > From: /servlet-interest

Re: sessions tracking, secure sockets?

1999-06-04 Thread Vincent Roderick
Mustafa, 1) Why can't you redirect to a URL or jsp that is on a secure socket? I don't see this as a big deal as long as your web server supports jsp and secured sockets...(but I haven't tried it) 2) You can do this by handing out a session id from a database and using hidden fields in the dyn

Re: JavaServer Pages 1.0 Public Release

1999-06-07 Thread Vincent Roderick
Connie, I'm hoping that you can forward this email to the appropriate people. If you are on this mailing list, I'm sure you have a pretty good idea where the install instructions have gone wrong and where things can be improved. This really is in Sun's best interest to improve the JSP site, as

FAQ, q13 DBConnectionPool

1999-06-07 Thread Vincent Roderick
Hello all, I'm trying to get the connection pool example to work from the FAQ using the JSP 1.0 spec with the JWS that comes with it. This references the following URL http://webdevelopersjournal.com/columns/connection_pool.html The compilation error I'm getting from dbconn.jsp (shown belo

Re: not html

1999-06-07 Thread Vincent Roderick
What version of the implementation are you running, what platform, and what JDK version do you have? > -Original Message- > From: olivier gerbehaye [SMTP:[EMAIL PROTECTED]] > Sent: Monday, June 07, 1999 2:27 PM > To: [EMAIL PROTECTED] > Subject: not html > > Hi everybody > > I use

Re: deleting cookies

1999-06-07 Thread Vincent Roderick
David, The FAQ says this...but I haven't tried it yetHope this helps 39) How do I delete a cookie with JSP? TOC From: Chris Fesler <[EMAIL PROTECTED]> A little more experimentation, and I came up with a method to delete cookies. Say that I have a cookie called "foo," tha

Re: How do you send them back to where they came from?

1999-06-09 Thread Vincent Roderick
Reza, I'm not sure if this is what you're looking for, but there is an example (numguess) that comes with the JSP 1.0 reference implementation and uses the same JSP file for the request and response. Otherwise, what's wrong with using parameters as in the login page example in the FAQ? Hope th