Re: Please help. Going Nuts.

2001-03-01 Thread Bill_Fellows/MO/americancentury
"mikhail malamud" <[EMAIL PROTECTED]> on 03/01/2001 11:20:31 AM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: Bill Fellows/MO/americancentury) Subject: Please help. Going Nuts. >Here is the setup I have. >Tomcat 3.2.1 with mod_jk >Apache 1.3.17. DocRoot /usr

Re: formbased authentication: logout ?

2001-02-21 Thread Bill_Fellows/MO/americancentury
I'm sure others are more knowledgeable, but from what I've been able to observe (snoop servlet is wonderful), a session must have been created before authentication. I'm basing all of my stuff off of my b*stardization of SimpleRealm, BTW. Session name is JSESSIONID. A principal user is define

RE: building mod_jk.so for Solaris

2001-02-19 Thread Bill_Fellows/MO/americancentury
Even better, I emailed [EMAIL PROTECTED] as instructed in their insipid reply and got a reply that mailman does not exist. Intelligent message. /bill [EMAIL PROTECTED] (Mail Delivery System) on 02/19/2001 10:53:16 AM To: Bill Fellows/MO/americancentury@americancentury cc: Subject: Und

Re: Form based authentication

2001-02-08 Thread Bill_Fellows/MO/americancentury
I've run into the same problem. I created an industrial strength bandaid for this problem by writing a simple servlet, mapped to /null, that redirects them where I want to go (which is defined in the web.xml). I've been too lazy to investigate what is actually throwing this so if anyone has an

tomcat & CSS

2001-02-08 Thread Bill_Fellows/MO/americancentury
I think I answered my own question (partially).. The /css folder is in a secure branch. For whatever reason, my index.jsp page doesn't complain when it comes up about not being able to see that resource but when it leaves, it then accesses it. Or something like that. At any rate, problem solv

Tomcat & CSS

2001-02-08 Thread Bill_Fellows/MO/americancentury
Hello all, My cube is gettin' a wee bit messy from all of the pulled out hair so if y'all could save me the effort of cleaning up any additional hairs, I'd appreciate it. Tomcat 3.2.1(mostly - rolled my own security realm into it) JDK 1.3 I have a web page, two in fact. ;) on an intranet site.

RE: Newbie needs help ASAP! - HelloWorldServlet

2001-02-07 Thread Bill_Fellows/MO/americancentury
import java.io.PrintWriter; import java.io.IOException; import javax.servlet.*; import javax.servlet.http.*; /** * This should correctly implement a Hello Wold Servlet */ public class HelloWorldServlet extends HttpServlet { public void init(ServletConfig config) throws ServletException

Re: Installing Tomcat windows 98

2001-02-07 Thread Bill_Fellows/MO/americancentury
Wir sprechen Englisch bitte. (We speak English please) Ausweitung der kapazitaet der Speicherplatz. rechtklinke MSDOS, das Eigentum, speicherplatzetikett , anfangswert circa 3072 (Increase in capacity the memory. Right click MSDOS, in properties, Memory tab, initial value approximately 3072)

IP & hostname questions

2001-02-02 Thread Bill_Fellows/MO/americancentury
Hello, I was wondering, how _does_ Tomcat figure out what my IP address is? What if I have two network cards and two IP address? Does Tomcat take both? I've been looking through the source (3.2.1) and I've found some places where I think it could be acquiring it, but I'm not quite sure what t

Re: Problems with <%=request.getRemoteHost()%>

2001-02-01 Thread Bill_Fellows/MO/americancentury
Buenos dias, What OS are you using? Does the rest of your JSP work fine if you comment out the offending part? What are you trying to do with it? As a long shot, what is sitting in your address bar? Are you connected to a network? I could very well be talking out of my *ss here, but if you'r

Re: problems with servlet init parameters tomcat 3.2.1

2001-02-01 Thread Bill_Fellows/MO/americancentury
Shouldn't web.xml be in the WEB-INF directory and not below it? [EMAIL PROTECTED] (Karina Anderson) on 02/01/2001 04:00:26 PM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] (Karina Anderson) cc:(bcc: Bill Fellows/MO/americancentury) Subject: problems

Re: Tomcat and win98 more...

2001-01-30 Thread Bill_Fellows/MO/americancentury
Looks like you got a winner where it says FATAL and then "Address in use" Something (Tomcat, IIS, PWS, WebSphere, YourServerHere) is running on whatever port you have specified for tomcat to start on. Make sure you don't have an instance of tomcat already running or something exceedingly sil

Re: I don't want cached pages

2001-01-19 Thread Bill_Fellows/MO/americancentury
I'd do something insane like.. Not guaranteed to work for every browser and I can't remember what the other thing you can set is, but if you did a search for the above tag in the search engine of your choice I'm sure you'll be able to find more info. /bill Please respond to [EMAIL PROTECT

Re: Problem with getHeader("Referer")

2001-01-18 Thread Bill_Fellows/MO/americancentury
If they're not large, I'd like to see what the code is (sending and receiving pages.) If they're big, don't clutter the group but send 'em my way. [EMAIL PROTECTED] Dan Eppinghoff <[EMAIL PROTECTED]> on 01/18/2001 07:30:15 AM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: Problem with getHeader("Referer")

2001-01-17 Thread Bill_Fellows/MO/americancentury
Are you direct dialing the page or are you clicking a link to see it? i.e. {page1} ... foo ... {page2} ... <% if (request.getHeader("referer") != null) out.println(request.getHeader("referer")); else out.println("Referer == null Dig-it!"); %> ... Going from page1 to page2 should result

session between tomcat and IIS

2001-01-17 Thread Bill_Fellows/MO/americancentury
Hello, I'm in a bit of a peckerwood situation here. Tomcat 3.2.1 & Apache is the preferred apps but I have been told to integrate with an IIS machine. Ok, so my problem is that we create a session w/Tomcat and pass along some credentials in the session object. Everything is well and good exce

Re: JSP errors

2001-01-08 Thread Bill_Fellows/MO/americancentury
It sounds like your servlet.jar is not 2.2. Look in /lib/ for your servlet.jar (or wherever it's in your classpath) See what's sittin' inside. If it's 2.2, the interface HttpSession in javax.servlet.http should have a method getAttribute(java.lang.String name) and getValue should be deprecat

Re: why must I add the port number

2001-01-04 Thread Bill_Fellows/MO/americancentury
Standard http port is 80 Browsers expect to get a response from that port unless explicitly told otherwise. Edit /conf/server.xml to make it "normal." /bill "Birte Glimm" <[EMAIL PROTECTED]> on 01/04/2001 08:49:23 AM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:

Re: How do I determine the admin userid and password?

2001-01-03 Thread Bill_Fellows/MO/americancentury
Try this, In /conf/server.xml /bill "Ravi Sundaar" <[EMAIL PROTECTED]> on 01/03/2001 05:17:28 PM Please respond to [EMAIL PROTECTED]; Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: Bill Fellows/MO/americancentury) Subject: How do I determine the admin

Re: Logfile root-directory-setting

2001-01-02 Thread Bill_Fellows/MO/americancentury
Actually, it doesn't create it only in the /bin directory - it will create the file relative to wherever you start tomcat (e.g. $/etc /jakarta/jakarta-tomcat-3.2.1/bin/tomcat start would cause it to create your output file in the /etc directory) At least, this has been my findings. What I'm do