Re: unsubscribe

1999-06-21 Thread Anonymous
Normally, I'm annoyed by messages like this, in which the sender obviously hasn't taken trouble to read the blurb at the bottom of every JSP-INTEREST message. However, I tried twice last week to follow those directions without avail. Far as I could tell, the blasted list server just wouldn't let

How to run Servlets on IIS

1999-06-21 Thread Anonymous
Hai All, How to Run Servlets on IIS 4.0 under Windows NT 4.0. I knew if i install JSDK 2.0 or JavaWebserver1..x or 2.0 i can run Servlets but this requires another port to run. But what i want is to run servlets with in the IIS 4.0 ( By default which uses port 80 ), so that i can

How do calculate the Content_Length

1999-06-21 Thread Anonymous
Hai Everybody, I had a small problem in sending data from applet to servlet using POST method. here what i want is to send java objects ( eg: java Vector ) to the backsend servlet. iam using the HTTP POST Method, so i would i calculate the length of the Object( the data which i want to

Restrict access!!!

1999-06-21 Thread Umesh Mehendale
Hi when developing an application using servlet + jsp model . assumption : I have loads of HTML pages located at certain directory / directory structure(s). Depending on user login , I need to allow him/her to access certain directory and HTML pages. Also user should not be able to bookmark

newbie question

1999-06-21 Thread Joshua Rudin
Sorry to waste everyone's time, but I have a quick question. I've been using ASP (yeah, that microsoft stuff..) for about a year and am very comfortable with the entire model. I need to leard JSP and the whole bean interaction. What are some of the better resources (books/sites) that might be

Re: Servlet-JSP question

1999-06-21 Thread Anonymous
While it won't provide an answer, you may gain some insight by reading http://www.aptura.com/technology/jspBook_Architectures.html . I'll warn you, I haven't finished writing it yet. It is part of an effort by several people to write a "book" on JSP. If you're interested in more, check out

....\\ bug in JRun 2.3.2 (build 151)

1999-06-21 Thread Anonymous
While trying to convert our JSP .92 code, we happen to have quite a lot of error messages javax.servlet.ServletException: D:\JRun\jsm-default\services\jse\servlets\jsp\assemblee\questionorale.java:38: Invalid character in input. File fichier = new File

Bad surprise from JRun 2.3.2

1999-06-21 Thread Anonymous
As more and more web tools, JRun used to support characters with accent, which do exist in many european languages.For example, there is no more need to convert a in a eacute; in a HTML source, thanks to the iso coded alphabet. This makes a much better readable source, and is helpful to

Encoding HREF link

1999-06-21 Thread Brian Burridge
I am building a dynamic list of HREF's from my database. At times I will have links like this "JACK JILL". Obviously that isn't a valid link, but are there any servlet methods I can use to convert that automatically to a valid http url? -- Brian N. Burridge Lead Internet Analyst Cox Target

Re: Multiple sessions

1999-06-21 Thread Anonymous
Steve, We've had to deal with this problem and we do so by maintaining what we call "user session" objects. We pass a user session id around to identify the user session. The requirement was based on the fact that a single user might open multiple windows of the same browser to access the same

SSI

1999-06-21 Thread Anonymous
Hey everyone Is there a way to do a server side includes in JSP? Here is an example which is possible in ASP !--#include file="../includes/settings.asp"-- where settings.asp is a file containing global constants PS. I am not interested in SERVLET/SERVLET include THanks again Konstantin

Functions JSP

1999-06-21 Thread Anonymous
Hey all, Did anyone try to implement a function within a JSP page? Is this at all possible? Example: % openDBConnection(); % % void openDBConnection() { out.println("Not implemented"); } %

Re: Functions JSP

1999-06-21 Thread Anonymous
Hi, Functions (methods?) can be implemented within the declaration tag %! void myMethod() {} % -- Mun Wai On Mon, 21 Jun 1999, Lukin Konstantin wrote: Did anyone try to implement a function within a JSP page? === To

Re: SSI

1999-06-21 Thread Doug Turner
Isn't there a JSP include directive? -- From: Lukin Konstantin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: SSI Date: Monday, June 21, 1999 4:03 PM Hey everyone Is there a way to do a server side includes in JSP? Here is an example which is possible in ASP !--#include

Re: Car won't start after installing JSP...

1999-06-21 Thread Anonymous
Are you sure you didn't put your tools jar in the car's path? :^) Dan -- From: Taylor Gautier[SMTP:[EMAIL PROTECTED]] Reply To: Taylor Gautier Sent: Thursday, June 10, 1999 11:02 AM To: [EMAIL PROTECTED] Subject: Car won't start after installing JSP...

Re: SSI

1999-06-21 Thread Anonymous
Lukin Konstantin wrote: Hey everyone Is there a way to do a server side includes in JSP? Here is an example which is possible in ASP !--#include file="../includes/settings.asp"-- where settings.asp is a file containing global constants PS. I am not interested in SERVLET/SERVLET