Return-Path: Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 92745 invoked from network); 7 Dec 2000 01:14:30 -0000 Received: from mail4.registeredsite.com (HELO localhost.localdomain) (root@209.35.159.16) by locus.apache.org with SMTP; 7 Dec 2000 01:14:30 -0000 Received: from mail.fitzpatrick.cc (mail.fitzpatrick.cc [216.247.102.238]) by localhost.localdomain (8.9.3/8.9.3) with ESMTP id UAA16884; Wed, 6 Dec 2000 20:08:51 -0500 Received: from cartman [24.13.242.72] by mail.fitzpatrick.cc (SMTPD32-6.00) id A4531B6004A; Wed, 06 Dec 2000 20:13:55 -0500 From: "CPC Livelink Admin" To: , Subject: RE: posting to servlets from a url Date: Wed, 6 Dec 2000 20:16:07 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal In-Reply-To: <003501c05fd0$7b8e3f10$2e7513d1@JDELAGARZA> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N You could implement a simple locking mechanism. When you are about to access one of your classes, set a session or request scoped bean or session variable, and then in your servlets, check for that object, and then remove it. -----Original Message----- From: John de la Garza [mailto:jdelagarza@designinsites.com] Sent: Wednesday, December 06, 2000 05:04 PM To: Tomcat-Users (E-mail) Subject: posting to servlets from a url Is there some way I can make my server not allow users to type in URL's directly to servlets in the WEB-INF/classes directory? I only want these servlets to be accessed by my own jsp pages on my server.