Re: How to force user to login

1999-03-30 Thread Drew Cox
Hi all, I think I understand the basic mechanism you need to implement to force un-authenticated users to a login screen by checking for specific information that is stored in the session when they login successfully. My questions is, is there a method to invoke this authentication check on JSP

Accessing ISAPI Server VAriables in JSP or Servlet

1999-03-30 Thread Nadir Jaffer
Anyone know of a way to access IIS server variables through JSP. e.g. in ASP one would write Request.ServerVariables("LOGON_USER") to get the login id of the user Or can it be done some way through JRun or ServletExec. Thanx in advance, -N =

CallableStatement using SQL SERVER 6.0

1999-03-30 Thread William Reinoso Milian
Excuse me my english. Some body could tell me about how to call a stored procedure from a jsp page and pass some parameter to him. That procedure just will add a row to a database.

Re: Resources for JSP...

1999-03-30 Thread Luc Saint-Elie
Hello, Ypu will find some docs (not a lot about JSP except the FAQ) on my site at: http://www.imaginet.fr/~lse/JSS/index.htm Le 09:22 30/03/99 -0800, Nitin Patil a écrit: Hi all,   I'm a newbie for the JSP technology and would like to know more about it. I would appreciate if somebody could gi

Re: Sun JSP 0.92 and Weblogic 3.1.7

1999-03-30 Thread Jim Tsang
Weblogic 3.1.7 does not work with JSP reference implementation (0.92) due to the JSDK version difference. I had the same problem. On Tue, 30 Mar 1999, Rubens Gomes wrote: > Has anybody been successful running the latest Sun's > JSP reference implementation (0.92) with Weblogic 3.1.7? > > I am n

Re: Resources for JSP...

1999-03-30 Thread Kirkdorffer, Daniel
http://www.caucho.com/misc/jsp-faq.html or http://www.esperanto.org.nz/jsp/jspfaq.txt http://www.burridge.net/jsp/ http://www.xs4all.nl/~vincentp/gnujsp/ Dan > -- > From: Allamraju Kumarswamy[SMTP:[EMAIL PROTECTED]] > Reply To: Allamraju Kumarswamy > Sent: Tuesday, M

Re: Resources for JSP...

1999-03-30 Thread Allamraju Kumarswamy
Nitin Patil wrote: > Hi all, I'm a newbie for the JSP technology and would like to know > more about it. I would appreciate if somebody could give me a nice URL > where I can learn- more about programming using JSP- tips for a good > web-site design using JSP Something that I would really like t

Re: JSP vs. ASP

1999-03-30 Thread Evett, Charlie
More $0.02: The real problem with ASP is that the scripting languages (VB and JScript) are not object-oriented, and are not type checked at compile time. This means that you will only discover mis-matches between COM functions and ASP code when you exhaustively test each page. The lack of object

Resources for JSP...

1999-03-30 Thread Nitin Patil
Hi all,   I'm a newbie for the JSP technology and would like to know more about it. I would appreciate if somebody could give me a nice URL where I can learn - more about programming using JSP - tips for a good web-site design using JSP   Something that I would really like to know for my

Re: How to force user to login

1999-03-30 Thread Kirkdorffer, Daniel
Andre, What if your user accesses multiple applications with their one browser session, and these also have a CustomerID. I think it is a good idea to consider application space when working with session storage. At first we didn't consider doing that, but as we developed more web apps with JSP

Re: Session timeout?

1999-03-30 Thread Kirkdorffer, Daniel
Nic, In WebSphere, the seesion timeout duration is set in the session.properties files as session.invalidationtime=180 which is 30 minutes. I imagine each implementation has something similar. Dan > -- > From: Nic Wise[SMTP:[EMAIL PROTECTED]] > Reply To: Nic Wise > Se

Re: Sun JSP 0.92 and Weblogic 3.1.7

1999-03-30 Thread Christopher Cobb
The 0.92 reference implementation cannot run with any 'standard' web server since it uses a servlet API that is half way between 2.0 and 2.1. No one else supports this. You can use the stand-alone web server that comes with 0.92 to run the demos and do some experimentation. But to use JSP wi

Sun JSP 0.92 and Weblogic 3.1.7

1999-03-30 Thread Rubens Gomes
Has anybody been successful running the latest Sun's JSP reference implementation (0.92) with Weblogic 3.1.7? I am now having javax.servlet class method conflict between what weblogic is using and JSP wants to use. I suspect this is due to latest JSDK spec changes. ugh :( ==

JRun and 0.92 demos

1999-03-30 Thread Christopher Cobb
To give myself warm and fuzzies, I would like to get the 0.92 demos running under JRun. I have the preliminaries done (compiling), and the first demo (Date/Time) works. But the second demo ("Application bean with counter") gives me some errors (see below). It looks like part of my problem is

JRun and 0.92 demos

1999-03-30 Thread Christopher Cobb
To give myself warm and fuzzies, I would like to get the 0.92 demos running under JRun. I have the preliminaries done (compiling), and the first demo (Date/Time) works. But the second demo ("Application bean with counter") gives me some errors (see below). It looks like part of my problem is

Re: JSP vs. ASP

1999-03-30 Thread Michael Dinsmore
I figured I'd throw my $0.02 in since I saw some mistruth spoken about this: ASP code gets compiled by IIS and gets stored in its memory cache. I wouldn't say compiled into C++, but whatever internal mechanism the MS decided to do -- I haven't heard exactly what it is). ASP allows the use of Ac

Strange behavior with Loops in JRUN

1999-03-30 Thread Shah, Mayank (RSCH)
Platform: Jrun 2.3 on Linux. I have seen a behavior with Jrun that I'm not sure is appropriate: (Below is a java style psudocode) The observed behavior: 1) Jrun is getting the fist level properties (in the example below, it does company.getProduct(0), company.getProduct(1), company.getProduc

Re: JSP vs. ASP

1999-03-30 Thread Kurt Williams
Actually, ASP is interpreted and JSP is compiled to Java bytecode, which is interpreted/compiled. ASP is written in VB script (a derivative of Visual Basic), which is always interpreted. ASP isn't ever written in C++, though it frequently accesses C++ objects through COM. The VB script can and

Re: How to force user to login

1999-03-30 Thread Andre Richards
I did as follows: On every page which must be authenticated, I check for a user ID in the session object - if it doesn't exit, I do a redirect to a login page, passing the url the user was trying to access as a parameter. On the login page, if the user successfully logs in, I create a session for