RE: Split Thread with 2 browsers

2001-12-13 Thread Alistair Hopkins
IE specific: If you open a new window of IE from the old one (hyperlink, FILE NEW WINDOW) then it shares session cookies If you open a new IE session by command from the OS (Start menu, desktop shortcut) it doesn't share them. Q.: can you launch a new window by putting in a hyperling to (eg)

RE: Fed up to the back teeth with tomcat !!!

2001-04-12 Thread Alistair Hopkins
: Fed up to the back teeth with tomcat !!! Hi Alistair, I tried to get to the Virtuso link www.openlink.com buts its a redirect to internet.com Was your email some kind of clever spam :-) -Original Message- From: Alistair Hopkins [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001

RE: Session handling over different Tomcats

2001-04-09 Thread Alistair Hopkins
how about running a separate login java instance on one of the boxes which can be called by all servers over RMI to check login? -Original Message- From: Moin Anjum H. [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 10:22 AM To: [EMAIL PROTECTED] Subject: Re: Session handling

RE: Hide an URL

2001-04-09 Thread Alistair Hopkins
set index.html to be a frameset with a single frame which loads your previous index.html as the default. But then you can't mess with the title. Alistair -Original Message- From: Martin Mauri [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 3:22 PM To: [EMAIL PROTECTED] Subject:

RE: Multiple files upload

2001-03-29 Thread Alistair Hopkins
I use the input type INPUT TYPE="file" NAME="file"/ along with a hacked about version of the O'Reilly class to let me set FileFilters to control the file types people want to upload and it works fine for multiple files -Original Message- From:

RE: Compressing Tomcat output.

2001-03-28 Thread Alistair Hopkins
didn't try it). I try to write a request Interceptor for this. We can't migrate to Tomcat 4.0 as long as it is beta. With valves - new features of 4.0 version, dynamic compressing of some contents should be easier. Thanks, Stanisz -Original Message- From: Alistair Hopkins [mailto:[EMAIL

RE: Compressing Tomcat output.

2001-03-27 Thread Alistair Hopkins
We have a conditional compression setup: if some pages are small, it is better not to compress them as the time the browser takes to decompress makes the site slower on aggregate, esp with netscape. The settings to control whether we zip and the threshold at which to zip can then be adjusted for

RE: IE caching again (was: expire_

2001-03-19 Thread Alistair Hopkins
e same previous page where I was before. I used IE, in netscape it works correctly. Grtz Pieter -Original Message- From: Alistair Hopkins [mailto:[EMAIL PROTECTED]] Sent: vrijdag 16 maart 2001 9:58 To: [EMAIL PROTECTED] Subject: RE: expire response.setHeader("Cache-C

RE: expire

2001-03-16 Thread Alistair Hopkins
response.setHeader("Cache-Control","no-cache"); response.setHeader("Pragma","no-cache"); response.setHeader("Expires","Tue, 01 Jan 1980 1:00:00 GMT"); covers various browsers and os's and the like, but it still seems to get cached, particularly in

RE: expire

2001-03-16 Thread Alistair Hopkins
]' Subject: RE: expire I tried, but it doesn't work. If I push the back button in my browser, the page isn't expired or correctly resfreshed. So I see the same previous page where I was before. I used IE, in netscape it works correctly. Grtz Pieter -Original Message- From: Alistair Hopkins

RE: Restricting access to localhost for ajp-port 8007

2001-03-14 Thread Alistair Hopkins
Or, on Linux, include it in your IPCHAINS rules -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 11:43 AM To: [EMAIL PROTECTED] Subject: Re: Restricting access to localhost for ajp-port 8007 [EMAIL PROTECTED] (Stefan Busse) writes:

RE: SSL and US encryption law

2001-03-12 Thread Alistair Hopkins
The other source of potential confusion is over patents and RSA authentication: this is a totally separate issue. I believe RSA (the company) have voluntarily relaxed their US patent on RSA (the algwhatever) a few months earlier than they had to. This is what cause those weird non-commuting

RE: Logout of telnet session - tomcat stops

2001-03-12 Thread Alistair Hopkins
nohup ./tomcat.sh start;tail -f nohup.out -Original Message- From: Gary Lawson [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 11:42 AM To: [EMAIL PROTECTED] Subject: Logout of telnet session - tomcat stops Hello I want to be able to control tomcat on a remote (Solaris)

RE: problems with conf

2001-03-12 Thread Alistair Hopkins
http://www.textpad.com does unix text file formats -Original Message- From: Robert Keddie [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 1:20 PM To: [EMAIL PROTECTED] Subject: Re: problems with conf wordpad Robert Keddie web development Marion County, FL [EMAIL PROTECTED]

RE: Encrypting password

2001-03-12 Thread Alistair Hopkins
if the app is accessed through a single URL and loadbalanced / proxied, you still only need the one SSL cert: it's the URL, not the IP address, that counts. -Original Message- From: Sam Newman [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 3:39 PM To: [EMAIL PROTECTED] Subject:

RE: Form-Based Auth and tracking Login Attempts

2001-03-07 Thread Alistair Hopkins
Why not implement a unix-style login which gets slower after every duff attempt? -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 1:10 PM To: [EMAIL PROTECTED] Subject: RE: Form-Based Auth and tracking Login Attempts One

RE: Help:What type of a configuration Tomcat is more preferable to industrial use

2001-02-22 Thread Alistair Hopkins
1/ Apache is faster better when serving static content such as images 2/ You get more error handling ability with apache (ie, when tomcat goes down for releases, etc, Apache gets a 500 error and can display a polite notice rather than nasty error pages) 3/ You get all the other stuff

RE: HttpSession across virtual hosts

2001-02-08 Thread Alistair Hopkins
The http // https comparison doesn't work as cookies are sent or not depending on the host, not on the protocol. So if I have a valid session_id in a cookie in http, that will still be sent when I switch to https. So I can either have a common pool of current cookies if my https server is

RE: ISP with tomcat

2001-02-07 Thread Alistair Hopkins
www.mycgiserver.com does, I think... -Original Message- From: Johnathan Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 2:56 PM To: [EMAIL PROTECTED] Subject: ISP with tomcat Does any one know a ISP with tomcat on it?? = If your into Body For Life, check out

RE: Logging errors on Tomcat Startup

2001-02-05 Thread Alistair Hopkins
Use tomcat run instead. That way, it will execute in your local window instead of spaawning a new one, and you will see the messages in your window after java exits. -Original Message-From: Xavier [mailto:[EMAIL PROTECTED]]Sent: Monday, February 05, 2001 11:28 AMTo:

RE: performance

2001-02-02 Thread Alistair Hopkins
Slightly off topic, but I have been testing various components, among them XSL processors. I found that the ASF processor (Xalan) was not the fastest, Saxon being about 30% faster, but it was the most robust: ie, it continued to result in no error at any load, whereas Saxon frequently caused

RE: EmbededTomcat and RMI

2001-01-10 Thread Alistair Hopkins
This is why I didn't use EJB, but slogged out SQL the hard way for my current web project. It seemed a crazy bit of wastefulness, like buying a 4wd to go shopping in London. If you could have the persistence concurrency of EJB with integrated Tomcat without the overhead of RMI, I'd definitely

RE: ?? Hardware Recommendations + Database replication, any ideas ??

2001-01-10 Thread Alistair Hopkins
Has anybody written a failsafe/load balancing jdbc driver? It should be possible to have an implementation of a jdbc driver which is configured to load 1 other jdbc drivers with connections to 1 databases, and to call them in order of preference (or in rotation for load balancing) for selects

RE: Sorry--Out of topic question For Html Gurus

2001-01-10 Thread Alistair Hopkins
The final option is to leave the menus visible all the time, so the punters can find them, and to use hyperlinks, so the users get them quickly. Old fashioned, I know. -Original Message- From: RK [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2001 4:06 PM To: [EMAIL PROTECTED];

RE: Setting properties outside of the WAR

2001-01-04 Thread Alistair Hopkins
How many properties do you want to set? i avoid the problem by one of 2 methods: i access my test db from test by port forwarding from 127.0.0.1. You could make it standard that the db should always be on a local IP/arbitrary port and leave it to the administrators to forward packets as they

RE: creation of application wide objects

2000-12-19 Thread Alistair Hopkins
I also have lots of this sort of nonsense. My planned solution is to have only one servlet. This will act as a broker to load 'logic modules', which are invoked thru' the url with xtra path info: http://myServer/myServlet/myModule?yada=yadafoo=bar This has lots of potential advantages as all

RE: RES: TomCat into NT environment

2000-12-19 Thread Alistair Hopkins
Another good reason for using apache + tomcat not tomcat standalone is that you can show a polite static apology to users during maintenance/fubar time on tomcat, rather than a 404. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Andy Sent: Tuesday,

RE: creation of application wide objects

2000-12-19 Thread Alistair Hopkins
, December 19, 2000 1:56 PM To: [EMAIL PROTECTED] Subject: RE: creation of application wide objects On Tue, 19 Dec 2000, Alistair Hopkins wrote: I also have lots of this sort of nonsense. My planned solution is to have only one servlet. This will act as a broker to load 'logic modules', which

RE: reloading..

2000-11-27 Thread Alistair Hopkins
give up, restart tomcat. i found that to be the only sureproof way :-( -Original Message- From: Endre Stølsvik [mailto:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 4:49 PM To: [EMAIL PROTECTED] Subject: reloading.. I'm going a bit crazy soon, so any help here would be much

RE: tomcat 3.2b5 - worker not found?

2000-11-15 Thread Alistair Hopkins
I posted earlier today [ApJservMount and VirtualHost] with exactly the same problem. And yes, I have https enabled in apache (mod_ssl). Didn't think it was relevant... I'll try tomorrow and see if I can cure it by removing HTTPS. Alistair. -Original Message- From: Day, Evan

mod_jk help

2000-11-14 Thread Alistair Hopkins
Title: I'm having some trouble getting apache to find a worker.I have the connector in server.xml, and can see that port 8009 is open using netstat:tcp 0 0 *:8009 *:* LISTENI have workers.properties