Re: jsvc + Tomcat vs Apache + Tomcat

2006-09-11 Thread Hassan Schroeder
... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: problem with tomcat JDBC realm , i can not login and all configuration are correct

2006-09-09 Thread Hassan Schroeder
VARCHAR2(32 CHAR), USERNAME VARCHAR2(32 CHAR), ... And have you looked at your logs? HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe

Re: multiple virtual hosts and ssl certificates

2006-08-25 Thread Hassan Schroeder
per IP (or IP/port) that you want to secure. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: multiple virtual hosts and ssl certificates

2006-08-25 Thread Hassan Schroeder
On 8/25/06, Paul Singleton [EMAIL PROTECTED] wrote: In 5.5.9 you can put all your certificates in one keystore ... I suggest you don't proliferate keystores unless you really have to... Why? It seems far more manageable to me having them separate... -- Hassan Schroeder

Re: one docbase, many paths

2006-08-22 Thread Hassan Schroeder
On 8/22/06, Kallin Nagelberg [EMAIL PROTECTED] wrote: What is the best way to setup multiple paths all pointing to the same docbase? Have only one Context and use a Filter to forward from the fake paths? :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: Creating /WEB-INF folders for virtualhosts

2006-08-21 Thread Hassan Schroeder
on changing your car's timing belt do assume a certainly familiarity with hand tools and internal combustion engines... FWIW! -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: two application on different port with restriction

2006-08-21 Thread Hassan Schroeder
for processing incoming requests. Hence you could easily configure two Services, each with a connector for one of your target ports. Alternatively, you could use Filters to prevent each app running on an unauthorized port. FWIW! -- Hassan Schroeder [EMAIL PROTECTED

Re: Dynamically Determining the Web App

2006-08-09 Thread Hassan Schroeder
it, eh? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Taglibs ; error in a JSP using expression langluage

2006-08-08 Thread Hassan Schroeder
} Try: c:forEach begin=0 end=${MAX-1} step=1 var=ind (assuming MAX is actually set somewhere to an integer value...) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: Classpath problem

2006-08-06 Thread Hassan Schroeder
On 8/6/06, Julien vander Straeten [EMAIL PROTECTED] wrote: Could someone tell me what command I have to type to make this thing work? http://catb.org/~esr/faqs/smart-questions.html :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: Two Virtual Hosts

2006-08-06 Thread Hassan Schroeder
On 8/6/06, Li [EMAIL PROTECTED] wrote: The JDBCRealm I defined for deployed one is in server.xml, any idea? Yes -- read the Fine Manual: http://tomcat.apache.org/tomcat-5.5-doc/config/realm.html :: which directly addresses your issue :-) -- Hassan Schroeder [EMAIL

Re: Pointing domain to your application

2006-08-03 Thread Hassan Schroeder
, each having its own ROOT context. So simple, no mod_rewrite nonsense required... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

Re: Pointing domain to your application

2006-08-03 Thread Hassan Schroeder
? How do I point each IP to my application? Do you need Apache httpd for some reason? Supporting PHP or some other non-Java app? If not, forget it and mod_jk. Each individual app (Context) is contained within the appropriate Host element. That's it. -- Hassan Schroeder

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Hassan Schroeder
are as follows: Context path=/mobiledoc docBase=mobiledoc And you could certainly specify an absolute path for your docBase, if you're in a hurry :-) FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To start

Re: Someone Please: Why Is Tomcat Looking In The Wrong Directory?

2006-08-01 Thread Hassan Schroeder
On 8/1/06, Robinson, Eric [EMAIL PROTECTED] wrote: I deleted the first one. It was a legacy of when the application used to be in that path. Same result. And restarted Tomcat? What is your instance of Tomcat's relevant appBase pointing to? -- Hassan Schroeder [EMAIL

Re: Can GlobalNamingResources be accessed without a ResourceLink

2006-07-31 Thread Hassan Schroeder
application, so I can deploy new applications that access these resources without having to modify my server configuration. So don't put your Context elements in server.xml -- put them in your new webapp's META-INF/context.xml, where they should be anyway :-) -- Hassan Schroeder

Re: [OT?] is there a way to map an application URL on tomcat like: http://a.com/app1 to http://app1.a.com/

2006-07-28 Thread Hassan Schroeder
of webapps. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT?] is there a way to map an application URL on tomcat like: http://a.com/app1 to http://app1.a.com/

2006-07-28 Thread Hassan Schroeder
://tomcat.apache.org/tomcat-5.5-doc/config/host.html -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [OT?] is there a way to map an application URL on tomcat like: http://a.com/app1 to http://app1.a.com/

2006-07-27 Thread Hassan Schroeder
. This is called a virtual host; it requires DNS entries to point that URL to your server, that's all. Setting up virtual hosting in Tomcat is documented. :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Hassan Schroeder
On 7/26/06, Ian Caswell [EMAIL PROTECTED] wrote: , but i don't know how to verify it's loaded. Is there a way for apache to show loaded modules? $APACHE_HOME/bin/apachectl -M -- Hassan Schroeder [EMAIL PROTECTED

Re: Possible to send 503 status over JK?

2006-07-25 Thread Hassan Schroeder
status 503 header. So there wouldn't seem to be a problem, eh? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Possible to send 503 status over JK?

2006-07-25 Thread Hassan Schroeder
running? that quick test was on 5.5.17 standalone just to confirm the correct http header was being sent. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: Xorg vs XFree86

2006-07-24 Thread Hassan Schroeder
On 7/24/06, Richard Ehrlich [EMAIL PROTECTED] wrote: I want to install tomcat 5.5. I see references in the requirements to XF86 and its fonts. ?? where? -- Hassan Schroeder [EMAIL PROTECTED

Re: Xorg vs XFree86

2006-07-24 Thread Hassan Schroeder
On 7/24/06, Richard Ehrlich [EMAIL PROTECTED] wrote: Will Tomcat 5.5/freeBSD 6.1 work well with X11/Xorg? It would take less time to try it than to ask :-) And I can't imagine what fonts have to do with server software... -- Hassan Schroeder [EMAIL PROTECTED

Re: Where is my Tomcat

2006-07-24 Thread Hassan Schroeder
to uninstall all this stuff and install the JDK and Tomcat from tar files... Good luck, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

Re: Custom Error page when Tomcat is down?

2006-07-24 Thread Hassan Schroeder
On 7/24/06, Eric B. [EMAIL PROTECTED] wrote: Is there any way I can customize that error page to say/show something different? See the Apache doc for ErrorDocument -- Hassan Schroeder [EMAIL PROTECTED

Re: Xorg vs XFree86

2006-07-24 Thread Hassan Schroeder
On 7/24/06, Ronald Klop [EMAIL PROTECTED] wrote: ...port/package stilll has the dependency for xorg-client-libs. See /usr/ports/www/tomcat55. So are you saying this port/package thing introduces a dependency not found in a normal install? -- Hassan Schroeder [EMAIL

Re: Custom Error page when Tomcat is down?

2006-07-24 Thread Hassan Schroeder
On 7/24/06, Eric B. [EMAIL PROTECTED] wrote: Thanks for the pointer, but the problem that I see is that Apache is returning the status code 200 to the browser. If Apache is generating an internal server error as you indicated, it should be returning a 5xx status, I'd think. -- Hassan

Re: Custom Error page when Tomcat is down?

2006-07-24 Thread Hassan Schroeder
Apache 2.0.52, put a text-string ErrorDocument 500 Stimpy, you eediot into httpd.conf, forced a server error with a CGI script, and got my test string returned with status 500. So I would try to get that configured properly first, outside of your mod_jk stuff, and go on from there. -- Hassan

Re: Tomcat Memory Status?

2006-07-22 Thread Hassan Schroeder
the server and not even running my application. Sure you can. :-) The default JVM size of 64Mb is ridiculously small. Bump it up to ~256Mb at least... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic

Re: Tomcat Memory Status?

2006-07-22 Thread Hassan Schroeder
script -- starts with: Free memory: 1.40 MB Total memory: 4.93 MB Max memory: 63.56 MB I doubt anyone will get much of an application to run in that available free space. Hence my suggestion that the 64Mb default is pretty useless :-) YMMV, -- Hassan Schroeder [EMAIL

Re: The requested resource is not available

2006-07-19 Thread Hassan Schroeder
that there aren't other errors keeping your context from starting. Then add back your servlet's url-mapping and watch your logs :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: automatic rederict to website

2006-07-18 Thread Hassan Schroeder
. Reading the Fine Manual will help a lot, too, if that's not sufficiently clear... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: URL Redirection in tomcat

2006-07-10 Thread Hassan Schroeder
tomcat itself ? If so what should I do to achieve this ? You certainly don't need apache, but you do need to read the servlet spec about welcome files and forwarding. :-) Also, if the originating URL is the root of your site, where is the value username coming from?? -- Hassan Schroeder

Re: cluster manual

2006-07-05 Thread Hassan Schroeder
minutes, no problems encountered. or any other documentation/info for clustering 2 tomcat servers? What I want is 2 servers with tomcat installed to be clustered for failover and loadbalancing. So have you tried following the directions? If so, what didn't work? -- Hassan Schroeder

Re: Serving CSS files from a certain URL

2006-07-05 Thread Hassan Schroeder
just did that mirrors your described files. So *exactly* how is this not working for you? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e

Re: cluster manual

2006-07-05 Thread Hassan Schroeder
in server.xml are all you really need... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Tomcat compiles JSP on every request! Why?

2006-07-05 Thread Hassan Schroeder
of those would do it :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Serving CSS files from a certain URL

2006-07-05 Thread Hassan Schroeder
? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Serving CSS files from a certain URL

2006-07-05 Thread Hassan Schroeder
. :-) In any case, if I *had* to solve this problem, I'd use the relative links that work for your 'static' situation, and then either 1) serve all *.css files with a servlet that fixes the paths or 2) rewrite the css file paths with a Filter HTH, -- Hassan Schroeder

Re: Serving CSS files from a certain URL

2006-07-05 Thread Hassan Schroeder
and save the string processing. TMTOWTDI. :-) HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Tomcat compiles JSP on every request! Why?

2006-07-05 Thread Hassan Schroeder
that if you drop a changed JSP on the server, it's in the future for 15 minutes, eh? At least as far as that server's concerned :-) Set up NTPD on that server today... -- Hassan Schroeder [EMAIL PROTECTED

Re: JDBC Realm for several webapp

2006-07-04 Thread Hassan Schroeder
:-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JDBC Realm for several webapp

2006-07-03 Thread Hassan Schroeder
files and what should i have in server.xml :-( a nd where should i put this {context}.xml file? Where are you defining your contexts now?? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e

Re: OS X Server - Enable Tomcat for JSPs only

2006-07-03 Thread Hassan Schroeder
work... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Serving CSS files from a certain URL

2006-07-03 Thread Hassan Schroeder
files. So what's the problem? You map your servlet to *.jsp, and everything else goes to the DefaultServlet. Right? How is this not working? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic

Re: JDBC Realm for several webapp

2006-06-30 Thread Hassan Schroeder
server.xml and {context}.xml files -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Serving files to Windows Media Player -- ClientAbortException: java.net.SocketException: Broken pipe (or) Connection reset

2006-06-30 Thread Hassan Schroeder
% of the requests. You're sending Flash files to Windows Media Player?? I can imagine that resulting in a closed connection :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: cgi-bin doesn't seem to work

2006-06-29 Thread Hassan Schroeder
it? Wouldn't that wipe out your configuration changes? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: How to suppress implicit conversions when spliiting up the query string into parameters

2006-06-29 Thread Hassan Schroeder
. Obviously it's interpreted as ISO8859-1 snip/ http://tomcat.apache.org/tomcat-5.5-doc/config/http.html URIEncoding This specifies the character encoding used to decode the URI bytes, after %xx decoding the URL. If not specified, ISO-8859-1 will be used. HTH! -- Hassan Schroeder

Re: cgi-bin doesn't seem to work

2006-06-29 Thread Hassan Schroeder
to access your example cgi? Exactly what kind of file is your example? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Setting up SSL on Tomcat 5.5.17 - no response from Tomcat

2006-06-28 Thread Hassan Schroeder
On 6/28/06, Erik Matthew Brakke [EMAIL PROTECTED] wrote: keystoreFile=C:\Documents and Settings\Administrator\.keystore It's highly advisable to avoid paths with spaces in them for anything related to Tomcat, Java, etc. FWIW! -- Hassan Schroeder [EMAIL PROTECTED

Re: Why has Tomcat Undeployed my Applications?

2006-06-20 Thread Hassan Schroeder
-5.5-doc/config/context.html -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: servlet as an index page ?

2006-06-19 Thread Hassan Schroeder
On 6/19/06, Leonel [EMAIL PROTECTED] wrote: I'm trying to make a Servlet act as a Index page Suggestion: *read* the 2.4 Servlet Spec :-) If you're not running a 2.4 webapp, forward from the welcome-file of your choice... HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: Problem with tag library calling

2006-06-14 Thread Hassan Schroeder
On 6/12/06, Alex Turner [EMAIL PROTECTED] wrote: I have the following lines in my source file: %@ taglib prefix=mp uri=com.mintpixels.web.helper % Has this ever worked? Because that uri above doesn't look much like a URI to me :-)(nor does it match any examples in JSP.7.3)... -- Hassan

Re: how to install php on tomcat?

2006-06-09 Thread Hassan Schroeder
:-) The PHP4 servlet worked, but wasn't all that stable, in my limited experience. And when it crashed it took the whole JVM with it, so I didn't think it suitable for production. YMMV. HTH! -- Hassan Schroeder [EMAIL PROTECTED

Re: how to install php on tomcat?

2006-06-09 Thread Hassan Schroeder
operating environment. IMHO :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Re: [help] blank index.jsp on Tomcat 5.5.9

2006-05-28 Thread Hassan Schroeder
? If so, send it to me offlist and I'll try it on an existing working install. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: Re: [help] blank index.jsp on Tomcat 5.5.9

2006-05-26 Thread Hassan Schroeder
On 5/26/06, Garner Shawn [EMAIL PROTECTED] wrote: I thought the welcome page had to be a .jsp or .html according to the servlet spec? ? Where do you see that in the spec? -- Hassan Schroeder [EMAIL PROTECTED

Re: More (Unending) Resource Not Found/ Directory Problems

2006-05-25 Thread Hassan Schroeder
against the doc*. It'll save you a lot of unneccessary frustration. Really. :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: More (Unending) Resource Not Found/ Directory Problems

2006-05-25 Thread Hassan Schroeder
when you start up Tomcat now? There should be some reference to why /smsinfo isn't found, or isn't starting. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: Running Tomcat with different JDKs under SuSE-SE-9.0

2006-05-24 Thread Hassan Schroeder
On 5/24/06, Markus Ludwig Grandpre [EMAIL PROTECTED] wrote: I'd like to run jakarta-tomcat-5.0.19 with two different JDKs: on a SuSE-SE-9.0 system. I'd be glad to receive any help from you. And the problem is? -- Hassan Schroeder [EMAIL PROTECTED

Re: Directory Structure and Can't Find Resources in Tomcat

2006-05-21 Thread Hassan Schroeder
-- is this your ROOT context? If not -- if it's smsinfo -- then of course the above path has to reflect that, e.g. form name=loginForm method=post action=/smsinfo/login The url-mapping in web.xml is relative to the context; HTML href or form action attributes are relative to the server. HTH, -- Hassan

Re: Problem with Tomcat Unexpectedly Shutting Down

2006-05-21 Thread Hassan Schroeder
of memory use leading up to the end, which might offer some clues. You could also use the Tomcat manager interface to grab status from the system periodically for post-crash analysis. HTH! -- Hassan Schroeder [EMAIL PROTECTED

Re: Directory Structure and Can't Find Resources in Tomcat

2006-05-21 Thread Hassan Schroeder
this (*must* run PHP, FastCGI for Rails, or some such)? If not, I'd say don't do it :-) And if you must, get a second IP and run Apache httpd separately on that. The list archives are full of discussion on this -- that may help you decide. Regardless, good luck, -- Hassan Schroeder

Re: Directory Structure and Can't Find Resources in Tomcat

2006-05-21 Thread Hassan Schroeder
applications. Keeping them totally separate from your Tomcat installation seems a lot easier (more maintainable) to me. YMMV. :-) HTH! -- Hassan Schroeder [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL

Re: Directory Structure and Can't Find Resources in Tomcat

2006-05-20 Thread Hassan Schroeder
-namelogin/servlet-name servlet-classUserConfig.login/servlet-class /servlet servlet-mapping servlet-namelogin/servlet-name url-pattern/login/url-pattern /servlet-mapping Note: NO /servlet in there -- read the Tomcat doc or google for Tomcat invoker servlet to understand why... HTH, -- Hassan

Re: error page

2006-05-20 Thread Hassan Schroeder
correct to me -- that's the error code. Are you saying that your JSP2 error page doesn't generate any visible output? Is it possible you're using MS IE and your page's output falls below the show friendly (sic) messages threshold? -- Hassan Schroeder [EMAIL PROTECTED

Re: Re: error page

2006-05-20 Thread Hassan Schroeder
-- but you should test using some other browser (Firefox, Opera, whatever). -- Hassan Schroeder [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Virtual Host problem with classpath

2006-05-19 Thread Hassan Schroeder
/index.jsp ... Try that and see if your classpath issues disappear. And for troubleshooting at least, it may help to use absolute paths in your configs to avoid confusion... HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: Posting questions to the list

2006-05-19 Thread Hassan Schroeder
On 5/19/06, keyur sheth [EMAIL PROTECTED] wrote: So can you tell me the reason why I am unable to do that. No. :-) Certainly not without seeing the relevant part of your server.xml and the relevant parts of your server logs. P.S. Using a real subject line would be a good idea... -- Hassan

Re: Posting questions to the list

2006-05-19 Thread Hassan Schroeder
is: what do your logs say? -- Hassan Schroeder [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Posting questions to the list

2006-05-19 Thread Hassan Schroeder
On 5/19/06, keyur sheth [EMAIL PROTECTED] wrote: But I don't know what should see in the log directory and which file specifically. There shouldn't be that many to choose from, but in any case, the one with errors in it :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: Newbie: Help on directory structure

2006-05-18 Thread Hassan Schroeder
. servlet servlet-nameLoginServlet/servlet-name servlet-classUserConfig.login/servlet-class /servlet servlet-mapping servlet-nameLoginServlet/servlet-name url-pattern/login/url-pattern /servlet-mapping HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: Newbie: Help on directory structure

2006-05-18 Thread Hassan Schroeder
site (in conjunction with the Servlet spec) :-) FWIW! -- Hassan Schroeder [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat 5.5 Upgrade Problems

2006-05-14 Thread Hassan Schroeder
of a test case? -- Hassan Schroeder [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: URL with WWW problem

2006-05-09 Thread Hassan Schroeder
On 5/9/06, Scott Purcell [EMAIL PROTECTED] wrote: I know someone yesterday mentioned filters, but I could not find any examples of this type via a heavy google search. http://tuckey.org/urlrewrite/ -- Hassan Schroeder [EMAIL PROTECTED

Re: Site Configuration on 5.5.15 Pt 2

2006-05-08 Thread Hassan Schroeder
to redirect to the preferred hostname. You can also use it to redirect traffic that doesn't need to be SSL to the corresponding http:// url... FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To unsubscribe, e

Re: Intalling two SSL certificates

2006-05-04 Thread Hassan Schroeder
to install both cerfiticates using the same keysotre and different aliases, but it does not work. Should I use different keystores...? Yes, create a Connector element for each IP address, a keystore for each Connector, and set the keystoreFile attributes accordingly. HTH, -- Hassan Schroeder

Re: Relative Link Question

2006-04-19 Thread Hassan Schroeder
' and 'hobbes'. Create separate directories like /webapps/calvin /webapps/hobbes In your Host elements specify one of those as the appBase for that host. Put your default webapp for each one in /webapps/calvin/ROOT /webapps/hobbes/ROOT Done. -- Hassan Schroeder [EMAIL

Re: Relative Link Question

2006-04-17 Thread Hassan Schroeder
On 4/17/06, biai [EMAIL PROTECTED] wrote: I have 3 virtual hosts on the server, so I cannot atribute ROOT to all of them. Of course you can; just use a different appBase for each host. HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: Relative Link Question

2006-04-17 Thread Hassan Schroeder
of $CATALINA_HOME -- it makes it a lot easier to upgrade, back up, etc. FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: compression filter

2006-04-12 Thread Hassan Schroeder
On 4/12/06, Martin Gainty [EMAIL PROTECTED] wrote: Any clues where to acquire jar for compressionFilter ??? source and compiled files are in the servlets-examples webapp... HTH! -- Hassan Schroeder [EMAIL PROTECTED

Re: RES: question regarding alias for context

2006-03-23 Thread Hassan Schroeder
On 3/23/06, Alan Honczar [EMAIL PROTECTED] wrote: I think that it will be the way, because mod_rewrite is available for Apache2 and latest... mod_rewrite is available from Apache 1.2 on, actually http://httpd.apache.org/docs/1.3/mod/index.html -- Hassan Schroeder

Re: Update: Robots cannot read JSP?

2006-02-17 Thread Hassan Schroeder
://www.theuniquepear.com/welcome.do' which you could map as the welcome file. No redirects required. If, for some reason, you still can't or won't do this, configure your contexts as crossContext=true and *forward* -- not redirect -- from your welcome file to the Struts controller. HTH! -- Hassan Schroeder

Re: Absolute Guide for config of JDBC Connection Pool ?

2006-01-20 Thread Hassan Schroeder
I'll fix the broken configuration after I have it running? Maybe not the ideal approach. :-) FWIW! -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com dream. code

Re: Configuration Question

2006-01-04 Thread Hassan Schroeder
ideas to redirect the bad url to the good one? My configuration is the opposite -- the cert is for example.com, not www.example.com. But I use a Filter to redirect any requests for the wrong address to the preferred one. HTH! -- Hassan Schroeder - [EMAIL PROTECTED

Re: Help me to run tomcat in cygwin.

2005-12-30 Thread Hassan Schroeder
Andrew.du wrote: How to? Just Do It :-) Seriously, what's the question? Set CATALINA_HOME, JAVA_HOME, use $CATALINA_HOME/bin/catalina.sh instead of catalina.bat. That should be all it takes... -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408

Re: bug in manager port?

2005-12-21 Thread Hassan Schroeder
in some place? Nope. The manager works fine on port 80 (or for that matter any other port I've ever tried) :-) Something else in your configuration is causing your problem. -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http

Re: URL rewriting best practice?

2005-12-15 Thread Hassan Schroeder
Bruno Georges wrote: you can write a servlet filter for this. ... or use an existing one: http://tuckey.org/urlrewrite/ FWIW! -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com

Re: MultipartRequest problem

2005-12-15 Thread Hassan Schroeder
'MultipartRequest' -- first hit :-) -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com dream. code. - To unsubscribe, e

Re: setup for web designers?

2005-12-13 Thread Hassan Schroeder
to the browser. Either Read The Fine Manual :-) http://tomcat.apache.org/tomcat-5.5-doc/ssi-howto.html :: to enable SSI in Tomcat, or use a JSP (or JSTL) include. -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com

Re: Upgrading Tomcat

2005-12-01 Thread Hassan Schroeder
to download/install all of the different bundles for each version... Core (and manager, if you use it) are all you need, if you're running Java 1.5. 4. ...Eclipse?... Sorry, can't say -- not an Eclipse user. FWIW! -- Hassan Schroeder - [EMAIL PROTECTED

Re: SSL Certificate Beginner Question

2005-11-29 Thread Hassan Schroeder
Scott Purcell wrote: How do I configure some of my pages to use https? I do not know where to begin on this? Begin with the Servlet Spec. -- SRV.12 (Security) would be apropos :-) HTH! -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938

Re: ssl deployment recommendations

2005-11-26 Thread Hassan Schroeder
certificate -- Tomcat works just fine as a standalone Web server, including handling SSL. And, hopefully, you begin with the Fine Manual :-) -- http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html HTH, -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design

Re: ssl deployment recommendations

2005-11-25 Thread Hassan Schroeder
app to an authorization gateway? -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com dream. code. - To unsubscribe

Re: TryNo2: path attribute for Context element in tomcat 5.5

2005-11-24 Thread Hassan Schroeder
to be necessary? :-) -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com dream. code. - To unsubscribe, e-mail: [EMAIL

Re: Help Configuring Engine/Host/Context

2005-11-22 Thread Hassan Schroeder
be accessed at http://www.theuniquepear.com And that's it :-) HTH! -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com dream. code

Re: How to get getContextPath() to return

2005-11-22 Thread Hassan Schroeder
hv @ Fashion Content wrote: How to you get getContextPath() to return blank for a webapp ? Make that webapp the default Context for the applicable Host. -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com

Re: Re site problems, here is server.xml

2005-11-21 Thread Hassan Schroeder
the issue? You have a defaultHost in your Engine element that doesn't exist; add a Host element for it. Note: it's no longer recommended to put your Context elements in server.xml -- see the docs for alternatives. -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive

<    4   5   6   7   8   9   10   >