Re: After 1st installation of JDBCRealm?

2005-09-04 Thread Mark Thomas
> Can JDBCRealm support a user has more than 1 roles? Yes. > Can the SecurityManager support controlling path of Struts such as > /fooApp/fooPath.do? >>Yes you can but this is not at all related to application users/roles. >>See >>http://java.sun.com/j2se/1.4.2/docs/guide/security/smPortGuide.ht

Re: Why does tomcat redirect to welcome files

2005-09-04 Thread Mark Thomas
Jim Kennedy wrote: I have setup Tomcat to use index.html as the only welcome file. I noticed that the engine redirects to index.html. I'm wondering why that is the case. I would prefer Status: HTTP/1.1 200 OK Not: Status: HTTP/1.1 302 Moved Temporarily The container may send the request

Re: After 1st installation of JDBCRealm?

2005-09-04 Thread Mark Thomas
梁炳場 wrote: > Thank you Mark, > > How about security manager? > > Can I use policy file under $CATALINA_HOME/conf/catalina.policy file > with JDBCRealm? Yes you can but this is not at all related to application users/roles. See http://java.sun.com/j2se/1.4.2/docs/guide/securit

Re: Manager error 'FAIL - Invalid context path null was specified'

2005-09-04 Thread Mark Thomas
need to read this page again and look more closely at the examples. For a reload the example is: http://localhost:8080/manager/reload?path=/examples so you need http://localhost:8080/manager/reload?path=/xtb Mark - To

Re: After 1st installation of JDBCRealm?

2005-09-03 Thread Mark Thomas
梁炳場 wrote: I just install JDBCRealm of Tomcat 5.5 It works. Very simple to configure. But I have a few questions to ask. 1. How can users change password? They can't without you writing some custom code. And if password is encrypted, how to manage password? eg, how to create the 1st

Re: Tomcat imbedded open source componets ??

2005-09-03 Thread Mark Thomas
and all sub-components is compatible with distribution under this licence. If the Apache 2 licence is acceptable then you should be fine. Of course if the lawyers want more... Mark - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Shared object between Tomcat and external program?

2005-09-03 Thread Mark Thomas
Look at JMS. Should do exactly what you want. Mark wolverine my wrote: I'm running Tomcat 5.5. I want to create a servlet to accept a HTTP request. The servlet creates an object based on the request parameters and forward the object (using Queue) to another standalone Java process started

[OT Friday] Parse HTML file to underlying text

2005-09-03 Thread Mark Benussi
I know I missed the Friday deadline but... Has anyone any recommendations for parsing html. I use Lucene and the example has its own HTML parser but I was wondering if anyone has used an existing project or whether there is some built in functionality in an Apache lib to convert Hello World

[ANN] Servlet and JSP APIs have moved to subversion

2005-09-02 Thread Mark Thomas
move next (phase 4), followed by TC5, Connectors and Jasper2 (phase 5). A more detailed schedule, particularly for phase 5 since this is the focus of development, will be posted on the tomcat-dev list nearer the time. Mark

Re: Waste of our bandwidth

2005-09-02 Thread Mark Thomas
Brian Cook wrote: I do not know if it is an admin but the contact for the Tomcat list is : [EMAIL PROTECTED] No, it isn't. The correct addresses are tomcat-user-owner@ or tomcat-dev-owner@ Mark - To unsubscribe, e

Re: Archive search is corrupted?

2005-09-01 Thread Mark Thomas
read http://jakarta.apache.org/site/mail.html ? It has links to some, but by no means all, archives. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to remove "charset" from tomcat response?

2005-08-30 Thread Mark Thomas
I have header Content-Type: text/xml;charset=ISO-8859-1 Is it possible to avoid "charset=..." clause? Tomcat 5.5.9 on Windows. If you use JSPs, there will always be a charset as per section JSP.4.2 of the JSP 2.0 spec. Mark

RE: can i use javax.management.timer.Timer?

2005-08-30 Thread Mark Benussi
Am I allowed to ask what it is and how it differs from java.util.Timer? Just like to educate myself from time to time... -Original Message- From: Guy Katz [mailto:[EMAIL PROTECTED] Sent: 30 August 2005 12:12 To: Tomcat Users List Subject: RE: can i use javax.management.timer.Timer? yes y

Re: Viewing PDF in Internet Explorer

2005-08-26 Thread Mark Sutton
could always try 5.X? Mark Sutton Client Services IT Development Fimat International Banque SA (UK Branch) SG House 41 Tower Hill London EC3N 4SG Tel: +44 20 7676 8311 e-mail:[EMAIL PROTECTED

Re: Viewing PDF in Internet Explorer

2005-08-26 Thread Mark Sutton
could always try 5.X? Mark Sutton Client Services IT Development Fimat International Banque SA (UK Branch) SG House 41 Tower Hill London EC3N 4SG Tel: +44 20 7676 8311 e-mail:[EMAIL PROTECTED

Re: Single copy of Tomcat shared amongst multiple users

2005-08-25 Thread Mark Thomas
ints to their own copy of the following directories: /conf /logs /shared /webapps /work /temp Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Malformed URL Exception: unknown protocol: c

2005-08-25 Thread Mark Thomas
I assume becuase the url you pass it starts c:\ as that is the start of the XML_WORK_PATH. You need to prefix it with file:/// (or however many slashes you need to get this to work in windows). Mark Franklin Phan wrote: I use Windows XP Pro. My JAVA_HOME environment variable points to c

Re: 10 connection limit with IIS and JK/ISAPI 1.2.14

2005-08-25 Thread Mark Thomas
src="http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html";> Cachesize defines the number of connections made to the AJP backend that are maintained as a connection pool. It will limit the number of those connection that each web server child process can made. Cachesize property

Re: Integrating two applications

2005-08-25 Thread Mark Thomas
lcome. Venki 1. Reading your post, you haven't actually asked a question - but you did say ideas were welcome so here are mine ;) 2. This has what to do with Tomcat? 3. Reading http://jakarta.apache.org/site/mail.html before posting is a good idea, particularly the bit about "smart que

Re: Passing parameter upon login using j_security_check

2005-08-25 Thread Mark Thomas
Mark Goking wrote: There was someone who posted 2 yrs ago about a fix for this. But it involved modifying the source code of SavedRequest.class in the catalina.jar Here is the url of that post http://sourceforge.net/tracker/?group_id=59484&atid=491164&func=detail&a id=766413 I we

Re: sharing directory between web application

2005-08-25 Thread Mark Thomas
Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Passing parameter upon login using j_security_check

2005-08-24 Thread Mark Goking
There was someone who posted 2 yrs ago about a fix for this. But it involved modifying the source code of SavedRequest.class in the catalina.jar Here is the url of that post http://sourceforge.net/tracker/?group_id=59484&atid=491164&func=detail&a id=766413 I went to tomcat site but I couldn't

Using securityfilter in jboss/tomcat

2005-08-23 Thread Mark Goking
Hi, Ive successfully used securityfilter with jboss/tomcat. But the problem is, securityfilter has a securityfilter-config.xml and within this is required a tag for db authentication. If I don't use securityfilter, I can just add this line mark-login (which is configured in the server/cs

Re: Override WAR file security settings.

2005-08-23 Thread Mark Thomas
I can confirm that you can't override these web.xml settings in server.xml It should be simple enough in Ant to generate two .war files that only differ by the web.xml file Mark Jim Henderson wrote: By the lack of response to my question, I take it that it is not possible to overrid

RE: Securityfilter for authentication

2005-08-23 Thread Mark Goking
I have the security filter .jar in my /lib directory but not the /lib directory of the webapp. But the server's /lib. -Original Message- From: Andrew Stepanenko [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 23, 2005 8:21 PM To: Mark Goking Subject: Re: Securityfilte

Securityfilter for authentication

2005-08-23 Thread Mark Goking
Has anyone here used securityfilter for authetntication? The samples doesn't have any database realm example. If anyone got this working using db for authetnication pls let me know, I would like to ask some questions thanks - To

Re: WebDav on Port 80

2005-08-22 Thread Mark Thomas
George Francis wrote: Thanks - thats exactly my experience also; Does anyone here know why port 80 doesnt work? See http://issues.apache.org/bugzilla/show_bug.cgi?id=36303 Mark - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: tomcat 5.5.9 not recompiling JSPs

2005-08-22 Thread Mark Hagger
Although to be honest I suspect that the best solution for production boxes is to pre-compile all jsps into the war file anyway. Mark On Mon, 2005-08-22 at 14:24 +0200, Michal Kwiatek wrote: > I've just noticed that on tomcat 5.5.9 JSPs unpacked by tomcat from a > deployed wa

RE: Java 1.4.2_08 and up breaks Jstl

2005-08-22 Thread Mark Goking
As what allistair mentioned, please check if the object person is null, if it's not, then test if person.language is null. -Original Message- From: Christoph Kutzinski [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 5:27 PM To: Tomcat Users List Subject: Re: Java 1.4.2_08 and

Anyone familiar where SavedRequest class can be found?

2005-08-21 Thread Mark Goking
Anyone know which jar file this belongs? I found this article, and this could be the solution to retaining request parameters after logging in http://sourceforge.net/tracker/?group_id=59484&atid=491164&func=detail&a id=766413 -

Re: تم استلام الرساله DISABLE YOUR AUTO REPLY

2005-08-21 Thread Mark Thomas
kick them off the list. Give me 5 minutes and they'll be gone. Mark [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Passing parameter upon login using j_security_check

2005-08-21 Thread Mark Goking
st 21, 2005 9:20 PM To: Tomcat Users List Subject: Re: Passing parameter upon login using j_security_check --- Mark Goking <[EMAIL PROTECTED]> wrote: > > > Is it possible to pass a parameter upon login using > j_security_check and > passing that parameter

Passing parameter upon login using j_security_check

2005-08-21 Thread Mark Goking
Is it possible to pass a parameter upon login using j_security_check and passing that parameter to index.jsp? thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Securing Tomcat Context Descriptor

2005-08-20 Thread Mark Thomas
the appropriate course of action to take unless your security environment is very unusual. Mark Brett Parsons wrote: Hi All, There is a requirement on the server that we have Tomcat 5.0.28 deployed that no username/password information can be stored in plaintext (in the open). Like many people

Re: refusing low-grade SSL connections

2005-08-20 Thread Mark Thomas
Set the ciphers attribute on the connector. See http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/http.html Mark Paul Singleton wrote: According to the OWASP Web Application Penetration Checklist (available from www.owasp.org), a secure application server should: * Ensure that

Re: Http-status 500 error in Tomcat 4.1

2005-08-18 Thread Mark Thomas
Just guessing, but are your servlets in a package? Packageless classes do not work. See http://jakarta.apache.org/tomcat/faq/classnotfound.html Mark subi wrote: Hello All, I am using Tomcat 4.1. I just started working in it, so this asking may be childish, if so, pls don't mista

Re: "Thread-47" java.lang.NullPointerException

2005-08-18 Thread Mark Thomas
using it. Also, if you look at the stack trace, it is all from the sun.plugin.util.GrayBoxPanel class which is not a Tomcat class. Mark [EMAIL PROTECTED] wrote: hi , I click and browse through some of the features accessing applets in the application, quite often I get the following "

Re: Enabling CGI/Perl in Tomcat 5.5.9

2005-08-17 Thread Mark Thomas
your application is structured. Extension mapping will look something like: cgi *.cgi Mark A Madhusudan-A5324C wrote: Hi, I am facing some problems with enabling CGI in Tomcat 5.5.9. I followed the instructions given in the Manual, and renamed the servlets-cgi.rename

Re: What to do if you receive a 554 delivery error when posting

2005-08-17 Thread Mark Thomas
All, I believe I have tracked down and fixed the root cause of this issue. If anyone is still receiving these messages or starts to receive them in the future please forward them as per below. Mark Mark Thomas wrote: If you receive a 554 delivery failure message please forward the message

Re: org.apache.catalina.valves.RemoteHostValve issue

2005-08-17 Thread Mark Thomas
escaped if you want to match a single . character in your input. The regexp docs are the place to read up on this. The following should work but I haven't tried it. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: howto configure JAAS+SSO

2005-08-16 Thread Mark Benussi
ak [mailto:[EMAIL PROTECTED] Sent: 16 August 2005 17:44 To: Tomcat Users List Subject: Re: howto configure JAAS+SSO From: "Mark Benussi" <[EMAIL PROTECTED]> > However I can tell you about JAAS in Tomcat. In 5 certainly there are > issues. Essentially when you call the

RE: howto configure JAAS+SSO [Apologies code attached]

2005-08-16 Thread Mark Benussi
1.Filter to go in web.xml /** * [EMAIL PROTECTED] javax.servlet.Filter Filter} to overide the HttpServletRequest and * overide isUserInRole() using the * [EMAIL PROTECTED] com.ibt.framework.security.tomcat.HttpServletRequestWrapper HttpServletRequestWrapper} * * @author Mark Benussi

RE: howto configure JAAS+SSO

2005-08-16 Thread Mark Benussi
Hi Edmund. I am sorry but I don't know much about SSO. However I can tell you about JAAS in Tomcat. In 5 certainly there are issues. Essentially when you call the LoginModule to invoke your JAAS config it works but it does not authenticate the proper session Subject. What you end up doing (Or wha

Re: serving japanese file problem

2005-08-16 Thread Mark Thomas
You need to change your connector element(s) in server.xml Mark Arun Prasad R wrote: > thanks Mark,Hiroshi > > but how do i specify this in tomcat configuration. in which config file i > need to change. what are the changes to be done to achive this. > pls help. im newbie >

How to autologin in j_security_check

2005-08-15 Thread Mark Goking
Hi Havent found any close links in google so my last resort would be here.. Has anyone tried autologin using j_security_check? This is the scenario. I wish to pop open a window with the login page. However I want to autologin the account opening the window. I used response.sendRedirect('https://

[ANN] Watchdog has moved to Subversion

2005-08-14 Thread Mark Thomas
31/12/2005. Therefore, the current plan is that the remainder of the Tomcat modules will be moving to SVN some time between now and the end of the year. Regular updates will be posted to the dev list and announcements made on both lists as each migration goes live.

Re: Tomcat and the HttpServletRequest Object

2005-08-13 Thread Mark Thomas
release. If the spec mandates this change then I'll be first in line to implement it. Until that time there are enough things that need doing to keep me and the other committers busy at the moment. Other committers may well have differing views b

Re: serving japanese file problem

2005-08-12 Thread Mark Thomas
> %E3%82%A6%E3%82%A7%E3%83%96.jpg as ウェブ.jpg You should set the URIEncoding paramter of the connector to UTF-8. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: ssl/tls - INTEGRAL/CONFIDENTIAL - question

2005-08-12 Thread Mark Thomas
ation. Can anyone tell me/help me why I also get encryption in these cases? As far as I recall, the JSSE implementation has an order of preference for the ciphers and NULL_SHA is very likely to be below the others. Mark ---

Re: Does Tomcat 5 support mod_JK?

2005-08-12 Thread Mark Thomas
Try reading: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/ajp.html for the Tomcat end and http://jakarta.apache.org/tomcat/connectors-doc/config/apache.html for the Apache httpd end. Mark g1 Sunkersett wrote: Hi, I am trying load balancing with Tomcat 5, fornted with Apache&#

Re: Test Post

2005-08-11 Thread Mark Thomas
Dave Morrow wrote: I am receiving some NDR's when sending to this list. This shouldn't happen. Please forward the NDR including all the headers to [EMAIL PROTECTED] ir directly to [EMAIL PROTECTED] and I will investigate futher. Tha

Re: sessions dropping with mod_ssl, mod_jk, mod_rewrite rules

2005-08-10 Thread Mark Thomas
. Does Tomcat 5.5.x still enforce this rule? This rule is still enforced and I am aware of no plans to change it. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Clustering and controlling session manager

2005-08-10 Thread Mark Hagger
y for that manager. Am I missing something? Regards, Mark This email has been scanned for all known viruses by the MessageLabs SkyScan service. - To un

Last question on JAAS I promise

2005-08-09 Thread Mark Benussi
OK I got JAAS working with form authentication. That worked a treat (After a bit of head banging). I then moved to invoking the login from Struts (Or a Servlet for Tomcat users who don't use Struts) The code still gets invoked correctly. IBTJAASCallbackHandler callbackHandler = new IBTJAASCallba

My first JAAS implementation. A few questions.

2005-08-08 Thread Mark Benussi
I am implementing my first JAAS implementation and have some problems/questions. Firstly my commit method of my LoginModule does the following (User and Role both implement Principal) // Create a new User Principal with the user name retrieved from the NameCallback User user = new User(username);

What to do if you receive a 554 delivery error when posting

2005-08-06 Thread Mark Thomas
are particularly important. http://www1.physics.ox.ac.uk/help/spam.html contains information on how to make sure the mail you send me includes the headers. Although this page refers to spam messages I should stress that I do not believe the 554 messages are spam. Regards, Mark (one of) [EMAIL

Re: Tomcat Install from Source File.zip is bad

2005-08-05 Thread Mark Leone
Thanks, that solved it. -Mark Spors, Jeffrey R wrote: I believe the problem is that the mirror the ant script defaults to does not have all the correct files for some reason. This is just my assumption. I solved this problem by changing the Sourceforge location in jakarta-tomcat-5.5.9-src

Re: Tomcat Install from Source File.zip is bad

2005-08-05 Thread Mark Leone
thing here, or is it just hit or miss whether the files in the cvs repository are actually what the ant script is expecting? -Mark Mark Leone wrote: More info on this: The ant command that downloads the file that can't be unzipped is There's no value defined fo

Re: Tomcat Install from Source File.zip is bad

2005-08-05 Thread Mark Leone
s downloaded in the build script, so I'm sure it's just my ignorance of how the ant script gets the files form CVS. Can someone please enlighten me as to how I can determine the source of this file that's failing to be unzipped, and what might be causing that? -Mark Mark Leone

Tomcat Install from Source File.zip is bad

2005-08-05 Thread Mark Leone
proper copy of this file? BTW I'm using ant 1.6.5. -Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: user logins and the back button

2005-08-03 Thread Mark
I figured it out. 2 seconds in google answered my question. Thank you. On 8/3/05, Mark <[EMAIL PROTECTED]> wrote: > how do you specify either form or http authentication? > > > On 8/3/05, Ronald Klop <[EMAIL PROTECTED]> wrote: > > Do you use form-authent

Re: user logins and the back button

2005-08-03 Thread Mark
how do you specify either form or http authentication? On 8/3/05, Ronald Klop <[EMAIL PROTECTED]> wrote: > Do you use form-authentication or http-authentication? > > If the authentication is with a form the forward button wil show you the form > in step 5. > > Ronald. > > On Wed Aug 03 15:56:

user logins and the back button

2005-08-03 Thread Mark
I have the following scenario that I am testing. 1. Go to www.yahoo.com(or wherever) 2. Type in URL of Servlet1 and log in using username/password 3. Once username/password is authenticated, get forwarded to Servlet2 4. Click browser back button all the way to www.yahoo.com 5. Click browser forwar

can I put JDBC connection information in the webapps web.xml file?

2005-08-02 Thread Mark
I want to know if it is possible to place the JDBC resource information in the web.xml file in my context's WEB-INF directory? If this is possible, what is the syntax? Thank you. - To unsubscribe, e-mail: [EMAIL PROTECTED] For a

Re: W3C log format in Tomcat 4?

2005-08-01 Thread Mark Thomas
Jason, See http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/valve.html You want the AccessLogValve Mark Jason wrote: I'm new to Tomcat 4 and am trying to figure out how to configure my logs so that Deepmetrix's LiveStats 7 can import them. Does Tomcat 4 support logging

Re: Having problem posting to the group

2005-08-01 Thread Mark Thomas
See: http://marc.theaimsgroup.com/?l=tomcat-user&m=111895333829546&w=2 There has been no progress since my original message. Mark [EMAIL PROTECTED] Ikonne, Ike wrote: Hi all, Could anyone explain to me why I can't post to [EMAIL PROTECTED] I get the following error message

Redirect HTTP to HTTPS

2005-08-01 Thread Faine, Mark
, -Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Trouble Starting Tomcat

2005-07-29 Thread Mark McKay
th resource Jul 29, 2005 8:47:43 PM org.apache.catalina.startup.Catalina start INFO: Server startup in 48573 ms. Any ideas what's wrong? Mark McKay - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: accessing global Environment values?

2005-07-28 Thread Mark Thomas
GlobalNamingResources's Environment variables into webapps? You could start by reading the documentation for JNDI resources. http://jakarta.apache.org/tomcat/tomcat-5.5-doc/jndi-resources-howto.html Mark - To unsubscribe, e-mail: [

RE: Placing a LifecycleListener in my server.xml

2005-07-27 Thread Mark Benussi
that may be configured from this element. Attribute names are matched to corresponding JavaBean property names using the standard property method naming patterns. Mark Benussi wrote: > Thanks Darryl but I need to implement a LifecycleListener. You have > implemented a Servle

Re: Placing a LifecycleListener in my server.xml

2005-07-27 Thread Mark Benussi
Message Follows From: "Darryl L. Miles" <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List" To: Tomcat Users List Subject: Re: Placing a LifecycleListener in my server.xml Date: Wed, 27 Jul 2005 11:47:17 +0100 Mark Benussi wrote: Anyone have any ideas where on earth I pu

Placing a LifecycleListener in my server.xml

2005-07-27 Thread Mark Benussi
Anyone have any ideas where on earth I put my class that implements the LifecycleListener (In a jar in my WEB-INF/lib) as I don't seem to have a context in my server.xml.

Re: How to configure tomcat default character encoding ?

2005-07-26 Thread Mark Thomas
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/http.html You should read the documentation for the URIEncoding and useBodyEncodingForURI options. Mark Dongsheng Song wrote: I user Tomcat 5.0.28, the browser send server UTF-8 query string like: QueryString: id=12&code=13&nam

Re: how to contribute to Admin ApplicationResources_ko.properties, Korean version

2005-07-25 Thread Mark Thomas
hat. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Internet Explorer and Content-Type

2005-07-25 Thread Mark
e servlet output stream > // > byte[] buff = new byte[1024]; > int bytesRead; > while (-1 != (bytesRead = input.read(buff, 0, buff.length))) { > output.write(buff, 0, bytesRead); > } > > > The only difference I can see is how I use lowercase but I don't see why > tha

Internet Explorer and Content-Type

2005-07-25 Thread Mark
I have a servlet that generates data that I want to write to the client's browser. This data is just ASCII text. The problem that I am running into is that Internet Explorer's "Save As" window defaults the filename to the name of my servlet. Firefox/Netscape will save the file as the filename th

tomcat port listening configuration

2005-07-25 Thread Mark
I am trying to configure tomcat to listen on the same port, but different IP's. Is this possible using Tomcat? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: how to get the original requestURI after jsp:forward()

2005-07-24 Thread Mark Thomas
You need to read SRV.8.4 of the servlet specification. Mark Marten Lehmann wrote: Hello, I have a forward to a jsp-file. This jsp-file needs to know which URI was requested in the initial request. Currently, I can only see the requestURI of the forwarded jsp-file. Any ideas? Regards

domain missing from html:rewrite html:link etc

2005-07-24 Thread Mark Benussi
New one www.goodcookshop.com Appreciate your time on this one as I didn't have any joy with google. Cheers, Mark -

Re: Request parameter data not being recognised as UTF-8

2005-07-21 Thread Mark Thomas
test JSP and once this works, see how your app is different. <%@ page contentType="text/html; charset=UTF-8" %> Encoding fun Data posted to this form was: <% request.setCharacterEncodi

how to update web.xml when using WAR file

2005-07-18 Thread Mark
I am following the instructions for configuring a DataSource so that I can use a MySQL databasae with my servlets. The instructions I am using can be found at: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/jndi-datasource-examples-howto.html According to the instructions, I must update the web.

Re: Tomcat SSL Cipher Configuration

2005-07-18 Thread Mark Thomas
her Suites". Also, I am pretty sure they need to be comma separated. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

apache jk_mod connecor to tomcat; threads not being released

2005-07-18 Thread Mark Barnes
race level logging but found nothing useful in the JK log file. Has anyone encountered this before and I am just being a bit dense and missing something ? Please get back to me if you need more details. Very grateful for any assistance - some version numbers and worked property values below. C

Re: tomcat 4.1.31 page include encoding

2005-07-17 Thread Mark Thomas
This looks like bug 25899 (http://issues.apache.org/bugzilla/show_bug.cgi?id=25899) which has been fixed in CVS and will be included in the next 4.1.x release. Note that whilst I envisage that there will be a 4.1.32 release at some point, I have date in mind at present. Mark 李彦东 wrote: >

Re: Tomcat 4.x security issue in protected environment

2005-07-17 Thread Mark Thomas
t place to raise potential security issues. Mark Rashma N wrote: Hi, We are using Tomcat 4.0.4 in our product. We have a daemon which is a wrapper around the tomcat. We are facing one security issue with the Tomcat. If we send a HTTP packet with a long string in the Host field, it closes th

Re: ssiservlet ioexception include directive error

2005-07-17 Thread Mark Thomas
nt it shouldn't be too hard to narrow this down to generate the test app. Once you have the test app, create a bugzilla item and attach your test case. Mark Matthew Ma wrote: Hello, I'm using Tomat in a jboss distribution and while all of my include files are working just fine,

Re: Where is default logon.jsp for Tomcat Admin webapp?

2005-07-17 Thread Mark Thomas
CATALINA_BASE\server\webapps\admin\login.jsp ohaya wrote: Hi, When connecting to the Tomcat Admin webapp, a forms-based login page appears. The web.xml for "admin" has a login-config section that indicates that the login page is "/login.jsp". However, I've looked all over my hard drive, and e

Re: Tomcat security realms question

2005-07-17 Thread Mark Thomas
an attacker has physical access to a machine it is game over - they have won. Your security team knows the threat model for you situation far better than I do but it sounds to me like they are trying too hard in one area and have missed a bunch of other threats. Mark Akoulov, Alexandre [IT] wr

Re: Making my servlet the default instead of what's in ROOT

2005-07-17 Thread Mark Thomas
Tomcat version? Mark Chris Abajian wrote: More clues: We got it to work if you put in the top-level server.xml file. It does NOT work if you put this context fragment in $CATALINA_HOME/conf/Catalina/localhost the documentation on auto-deployment is frustrating in a couple of points. My

Re: CLIENT-CERT / Error : null cert chain

2005-07-17 Thread Mark Thomas
this: ... ... HTH Mark Pascal Chanteux wrote: Hi , I want to configure Tomcat/4.1.27 in order to use the client certificate authentication. I first set up the SSL connector following the How-To. So now my site runs under SSL without any problem. Next,I build the client certificate with

Re: robots.txt

2005-07-14 Thread Mark Benussi
With follow = false or something cant remember the exact syntax Original Message Follows From: Tim Funk <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List" To: Tomcat Users List Subject: Re: robots.txt Date: Thu, 14 Jul 2005 14:14:32 -0400 Place a robots meta tag in the head tag of your

Re: Automatic Realm login?

2005-07-13 Thread Mark Winslow
ra rather than > username > and password so that they can come to know that the > persons have comed from the login screen > > But I can't figure out the way out > > As I have done much part of the work in Tomcat 5.5.2 > and am stuck up > > Bye for now > > C

[OT] Name On The Net in the UK

2005-07-09 Thread Mark Benussi
this topic but I will not be answering it, as I don't want to have to type answers to individuals. Regards, Mark Benussi

Re: SSLCipherSuite and Tomcat 5.5.9

2005-07-08 Thread Mark Thomas
Mandar Vaidya wrote: Thank you Mark...under connector section, I've included ciphers="ALL:!ADH:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM" Will this work ? I don't think so. The ciphers need to be named as per the cipher suites in JSSE. See http://java.sun.com/j

Re: SSLCipherSuite and Tomcat 5.5.9

2005-07-08 Thread Mark Thomas
Mandar Vaidya wrote: Is there any way to define SSLCipherSuite under Tomcat 5.5.9 ( without Apache ) ? See http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/http.html You want the ciphers attribute. Mark - To

Re: Tomcat 4.1.37 and 5.0.2?? differences

2005-07-08 Thread Mark Benussi
005 08:46:57 -0400 > From: "Peter Crowther" <[EMAIL PROTECTED]> > > From: Mark Benussi [mailto:[EMAIL PROTECTED] > > Subject: Tomcat 4.1.37 and 5.0.2?? differences > > Are Servlet filters supported > > Yes, on both, I believe. Additionall

RE: Tomcat 4.1.37 and 5.0.2?? differences

2005-07-08 Thread Mark Benussi
Date: Fri, 8 Jul 2005 12:54:06 +0100 > From: Mark Benussi [mailto:[EMAIL PROTECTED] > Subject: Tomcat 4.1.37 and 5.0.2?? differences > > > I am having to change my ISP and was wondering what the main > differences were with these two servers. http://jakarta.apache.org/tomcat/ind

Tomcat 4.1.37 and 5.0.2?? differences

2005-07-08 Thread Mark Benussi
I am having to change my ISP and was wondering what the main differences were with these two servers. Are Servlet filters supported and more importantly what J2EE does it typically run on? TIA to the legend list that is making my nightmare week a bit better.

Re: [OT] Recommend a UK Tomcat host

2005-07-08 Thread Mark Benussi
internet.com/products.html -Original Message- From: Mark Benussi [mailto:[EMAIL PROTECTED] Sent: 08 July 2005 09:45 To: 'Tomcat Users List' Cc: 'Struts Users Mailing List' Subject: [OT] Recommend a UK Tomcat host Apologies for the repost to the Tomcat list but I

RE: [OT] Recommend a UK Tomcat host

2005-07-08 Thread Mark Benussi
host http://www.mycgiserver.com/ -Original Message----- From: Mark Benussi [mailto:[EMAIL PROTECTED] Sent: 08 July 2005 09:45 To: 'Tomcat Users List' Cc: 'Struts Users Mailing List' Subject: [OT] Recommend a UK Tomcat host Apologies for the repost to the Tomcat list but I am g

<    1   2   3   4   5   6   7   8   9   10   >