Re: Servlet File Structure

2007-12-18 Thread Hassan Schroeder
you could describe more precisely how your webapp is currently configured. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: Servlet File Structure

2007-12-18 Thread Hassan Schroeder
refrences (img, style, etc.) are lost. lost? How so? Still not clear on this problem, though... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: Servlet File Structure

2007-12-18 Thread Hassan Schroeder
/ HTH! -- 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: Servlet File Structure

2007-12-18 Thread Hassan Schroeder
access to users on documents uploaded by the editor). I just can't seem to serve these documents up. Is the issue broken internal links, or what? I do this kind of thing on pretty much every site, so I'm afraid I'm not understanding where the disconnect lies. -- Hassan Schroeder

Re: Servlet File Structure

2007-12-18 Thread Hassan Schroeder
have to post-process them. Or use a Filter to rewrite the bad links on the fly, but as you point out those are both iffy :-) I don't see where your security servlet even comes in to the picture. -- Hassan Schroeder [EMAIL PROTECTED

Re: Tomcat becomes non-response for ~30 seconds

2007-11-27 Thread Hassan Schroeder
On Nov 27, 2007 12:25 PM, jnedzel [EMAIL PROTECTED] wrote: We are adding more monitoring to see if could be caused by auto-mounter problems. You're NFS-mounting resources that Tomcat uses via automounter?? I'd think that would be, er, problematic from the get-go :-) -- Hassan Schroeder

Re: [HTTPS] more web app each one with a proper certificate

2007-11-26 Thread Hassan Schroeder
. It's name-based SSL that won't work for the reasons above. IP-based virtual hosting with Tomcat works fine, by configuring a separate Connector (and keystore) for each SSL-enabled vhost. FWIW, -- Hassan Schroeder [EMAIL PROTECTED

Re: SSL problem with Tomcat 5.5

2007-11-26 Thread Hassan Schroeder
the certificate request to send off to GoDaddy. At this point I can open the http page, but if I try to open the https url I don't get anything. And the logs say ? -- Hassan Schroeder [EMAIL PROTECTED

Re: SSL problem with Tomcat 5.5

2007-11-26 Thread Hassan Schroeder
create a new keystore file, named something like keystore-example.com-2007, and use that for the new cert. HTH! -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: SSL problem with Tomcat 5.5

2007-11-26 Thread Hassan Schroeder
first with a self-signed cert and then go back to your cert vendor. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Tomcat 6 virtual host problem please help

2007-11-26 Thread Hassan Schroeder
to be proxed contains lynks create dynamically? Or is there any workaround? or, since you're already using httpd, learn about mod_rewrite. Best of luck :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: Tomcat 6 virtual host problem please help

2007-11-26 Thread Hassan Schroeder
to find: - mod_proxy_html.so for windows - it's prerequisites (libxml2.so) ..and AFAIK you don't need either of those to use mod_rewrite. Reading the httpd doc would probably be a good place to start... -- Hassan Schroeder [EMAIL PROTECTED

Re: Tomcat 6 virtual host problem please help

2007-11-26 Thread Hassan Schroeder
to be an official module, so no idea. Let us know how that works out :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Relate URL / to a tomcat web application

2007-11-22 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: Tomcat 6 virtual host problem please help

2007-11-22 Thread Hassan Schroeder
but since I want to deploy a war using ANT script I not sure it apply or how it should apply. How you deploy your app really doesn't have anything to do with the configuration. HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: Tomcat 6 virtual host problem please help

2007-11-22 Thread Hassan Schroeder
also be useful for this: http://tomcat.apache.org/tomcat-6.0-doc/config/context.html -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

Re: Tomcat 6 virtual host problem please help

2007-11-22 Thread Hassan Schroeder
-- /roller/blog is not. Have you any idea to continue toward the objetive? What *is* the objective?? Guessing: if you want a URL like http://example.com/blog, you should get that from installing roller as your default app -- that is, renamed to ROOT.war HTH, -- Hassan Schroeder

Re: Relate URL / to a tomcat web application

2007-11-21 Thread Hassan Schroeder
application running under Tomcat and not necessarely to the DocumentRoot of Apache. Do someone know a workaround? The workaround is to configure Tomcat per the documentation. -- Hassan Schroeder [EMAIL PROTECTED

Re: SSL Virtual Hosts

2007-11-08 Thread Hassan Schroeder
On Nov 8, 2007 8:27 AM, Carl Vorster [EMAIL PROTECTED] wrote: I then want to run SSL hosts; but every SSL host must map to its own IP due to SSL configs. You need a separate Connector for each SSL IP. -- Hassan Schroeder [EMAIL PROTECTED

Re: session-timeout in web.xml does not work

2007-11-02 Thread Hassan Schroeder
mean by use the page? How are you determining that you're still in the same session as before? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e

Re: session-timeout in web.xml does not work

2007-11-02 Thread Hassan Schroeder
in session? If so, I'd add a ServletContextListener to log begin/end of sessions to see what's going on. Personally, I've never had a problem with session timeouts, and I frequently change them via web.xml to test things. -- Hassan Schroeder [EMAIL PROTECTED

Re: session-timeout in web.xml does not work

2007-11-02 Thread Hassan Schroeder
On Nov 2, 2007 12:46 PM, Hassan Schroeder [EMAIL PROTECTED] wrote: If so, I'd add a ServletContextListener to log begin/end of sessions to see what's going on. Actually, I'd stop trying to multitask /quite/ so much on a Friday :-) and implement HttpSessionListener

Re: Creating files dynamically and antiJarLocking

2007-10-30 Thread Hassan Schroeder
on the implications of that and also antiJARLocking, mmm, you probably should :-) FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: Creating files dynamically and antiJarLocking

2007-10-29 Thread Hassan Schroeder
with a simple JSP using a fresh install? -- 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: Virtual Host with Different IP Address

2007-10-26 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: Virtual Host with Different IP Address

2007-10-26 Thread Hassan Schroeder
* needs a way to resolve the name sub.mydomain.com to an IP address. This is not something that Tomcat is in any way involved in. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: Hidden form fields not found in request

2007-10-26 Thread Hassan Schroeder
On 10/26/07, Ashok Venkat [EMAIL PROTECTED] wrote: I want to save the dimensions. After the form is posted i call a servlet to save the dimensions. I will look into using Ajax. For something like this, check out DWR -- Direct Web Remoting -- at http://getahead.org/dwr -- Hassan Schroeder

Re: Virtual Host with Different IP Address

2007-10-26 Thread Hassan Schroeder
On 10/26/07, banderson [EMAIL PROTECTED] wrote: The site needs to be available to all of the internet. Then your system needs a DNS entry. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic

Re: Virtual Host with Different IP Address

2007-10-26 Thread Hassan Schroeder
? It sounds to me like a little independent study on DNS would be a good investment of your time :-) FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: disable HTTP Methods DELETE, PUT

2007-10-25 Thread Hassan Schroeder
security constraint into an instance of TC6.0.13 and it worked as expected -- 403 response to PUT. I would suggest you create a simple test app without Spring and try it yourself :-) HTH! -- Hassan Schroeder [EMAIL PROTECTED

Re: Can Tomcat load a class on startup?

2007-10-18 Thread Hassan Schroeder
On 10/18/07, Beth Hechanova [EMAIL PROTECTED] wrote: Can Tomcat load a class on startup? Yes. See `ServletContextListener` in the Servlet spec. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new

Re: redirecting old context uris when moving context

2007-10-15 Thread Hassan Schroeder
On 10/15/07, Daniel M Garland [EMAIL PROTECTED] wrote: Is there a way of mapping / redirecting 'old' URI from somecontext to the ROOT See: http://tuckey.org/urlrewrite/ -- Hassan Schroeder [EMAIL PROTECTED

Re: Running webapp not listed in the manager

2007-10-09 Thread Hassan Schroeder
On 10/9/07, Claude Brisson [EMAIL PROTECTED] wrote: and the manager on another virtual host ... but the manager doesn't list the foo webapp What am I doing wrong? The manager is host-specific; configure one per virtual host. HTH, -- Hassan Schroeder [EMAIL

Re: Multi-thread issue on redeploy of application

2007-10-08 Thread Hassan Schroeder
On 10/8/07, Cool Coder [EMAIL PROTECTED] wrote: I use struts and ..and there *is* a Struts mailing list, eh? Which would probably offer a much better chance of getting app-specific help. I'm just sayin' -- Hassan Schroeder [EMAIL PROTECTED

Re: How to create/setup a referer log on Tomcat 5.5 server?

2007-10-08 Thread Hassan Schroeder
On 10/8/07, nguyen [EMAIL PROTECTED] wrote: and a referer log How do we setup such a log? Read the doc? :-) http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: Linking external website as a default page on Tomcat 5

2007-10-08 Thread Hassan Schroeder
://sourceforge.net/projects/j2ep/ or http://tuckey.org/urlrewrite/ HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to increase Tomcat webserver speed?

2007-10-05 Thread Hassan Schroeder
, e.g. SELECT a, b, c FROM x, y, z WHERE... to SELECT a, b, c FROM x LEFT JOIN y ON ...LEFT JOIN z ON ... cut the query time from tens of seconds to sub-second. If it's a possible problem with indexes, MySQL's EXPLAIN is helpful. FWIW, -- Hassan Schroeder [EMAIL PROTECTED

Re: Running Tomcat on Vista

2007-10-05 Thread Hassan Schroeder
to run as some-random-user while the installation is owned by root. That's *nix of course, and I have zero idea of how Vista deals with file permissions, so -- FWIW! -- Hassan Schroeder [EMAIL PROTECTED

Re: Tomcat 6 client auth. by certificate

2007-10-03 Thread Hassan Schroeder
to me... :-) FWIW, -- 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: Tomcat 6 client auth. by certificate

2007-10-03 Thread Hassan Schroeder
On 10/3/07, damovsky [EMAIL PROTECTED] wrote: In server.xml I have SSLEnabled=true, of course. So what do your logs say about Connector startup? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new

Re: Setting default webapp

2007-10-01 Thread Hassan Schroeder
On 10/1/07, David kerber [EMAIL PROTECTED] wrote: Thanks, guys; I like the redirect idea a lot better than a second install that I'm likely to forget to update at some point. What second install? Rename the WAR file or directory; what could be simpler? -- Hassan Schroeder

Re: Setting default webapp

2007-10-01 Thread Hassan Schroeder
On 10/1/07, David kerber [EMAIL PROTECTED] wrote: Hassan Schroeder wrote: Can I set the root webapp to ALSO answer under the webapp's original name, so people who use a bookmark to the full app path won't get not found errors? I though I had to have the .war in both places: root and its

Re: Setting default webapp

2007-10-01 Thread Hassan Schroeder
mentioned it either, because it's pretty obvious in hindsight. Uh, well. yeah. :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: Reload an existing application

2007-10-01 Thread Hassan Schroeder
On 10/1/07, Andrew Hole [EMAIL PROTECTED] wrote: Is it possible reload configurations on \WEB-INF\classes without restart tomcat server? Context reloadable=true/ unless I misunderstand what you're asking :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: How to specify a default context?

2007-09-29 Thread Hassan Schroeder
. HTH, -- 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: Virtual Host and dynamic webapp reloading

2007-09-26 Thread Hassan Schroeder
On 9/26/07, Daniel M Garland [EMAIL PROTECTED] wrote: So I would've thought that snip/ Have you read this? http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html -- Hassan Schroeder [EMAIL PROTECTED

Re: Analog of mod_rewrite in Tomcat?

2007-09-26 Thread Hassan Schroeder
On 9/26/07, Ken Bowen [EMAIL PROTECTED] wrote: Is there an analog of mod_rewrite which operates in Tomcat? http://tuckey.org/urlrewrite/ -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic

Re: tomcat can not connect to MySql

2007-09-22 Thread Hassan Schroeder
fixes it, the problem is almost certainly your app :-) Sounds like you're not closing connections somewhere. If you're using connection pooling, set the pool size to 1 and you'll find the problem pretty quickly... HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: Basic Toimcat5.5 admin question

2007-09-21 Thread Hassan Schroeder
` to the id of the folder owner. FWIW, -- 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: Basic question - Ingterating Tomcat with Apache

2007-09-21 Thread Hassan Schroeder
On 9/21/07, Christopher Schultz [EMAIL PROTECTED] wrote: are you sure you even /need/ Apache httpd? I concur with that, but... The only supported Tomcat web server connector is mod_jk There's mod_proxy_ajp and mod_proxy_http, eh? -- Hassan Schroeder [EMAIL

Re: Basic question - Ingterating Tomcat with Apache

2007-09-21 Thread Hassan Schroeder
On 9/21/07, Christopher Schultz [EMAIL PROTECTED] wrote: I believe mod_proxy_ajp requires Apache httpd 2.2, right? Yep. But it's definitely less work to set up, if you don't need to split static and dynamic content. -- Hassan Schroeder [EMAIL PROTECTED

Re: JSP - static mirroring

2007-09-21 Thread Hassan Schroeder
On 9/21/07, Dola Woolfe [EMAIL PROTECTED] wrote: Would you happen to know how to get Eclipse to ... Sorry, no, only a very occasional -- under duress -- Eclipse user :-) Best of luck! -- Hassan Schroeder [EMAIL PROTECTED

Re: [Fwd: Can#39;t run jsp pages on tomcat 6.0.10]

2007-09-20 Thread Hassan Schroeder
got something to do with *your* webapp. If you can provide a reproducible test case (WAR) you'll probably get more useful responses. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail

Re: Setting Up SSL on Tomcat

2007-09-20 Thread Hassan Schroeder
to the HTTP port (8080). But, I get a Server not found or DNS error when I try to use the secure port (8443). And the startup log messages are ___? -- Hassan Schroeder [EMAIL PROTECTED

Re: JSP - static mirroring

2007-09-19 Thread Hassan Schroeder
That's it :-) HTH! -- 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: JSP - static mirroring

2007-09-15 Thread Hassan Schroeder
need to convert my pages to static. Batch-rename all your .jsp files to .html, mass search-and-replace all the internal links appropriately, and configure Tomcat to process .html files as JSPs. Then wget the site and you're set. :-) HTH, -- Hassan Schroeder [EMAIL

Re: beginer question abt JSP with Tomcat

2007-09-13 Thread Hassan Schroeder
irrelevant. I've said this more than once: we need to see one complete log output, from initial startup to failure when you try to load a JSP. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic

Re: beginer question abt JSP with Tomcat

2007-09-13 Thread Hassan Schroeder
:05 AM org.apache.jk.server.JkMain start INFO: Jk running ID=0 time=0/31 config=null Sep 13, 2007 11:10:05 AM org.apache.catalina.startup.Catalina start INFO: Server startup in 1593 ms Great. Startup confirmed, no errors. So where's the failed attempt to access a JSP page? -- Hassan Schroeder

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
is not important..is that right? TC6 can work with only a JRE, but first do this: echo $JAVA_HOME ls -l $JAVA_HOME echo $CATALINA_HOME ls -l $CATALINA_HOME :: and paste the results into your mail. And it would help to send the log output as I mentioned before :-) -- Hassan Schroeder

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
, send the entire log output seen in the shell you started in. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
Sigh. That mean Tomcat was already running. You have to stop that existing instance before you can start another. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
straightened out, there's no reason to put it into your .bashrc, eh? So, in your terminal window, set those two environment vars again and restart TC. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
, before trying to access your own application. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
On 9/12/07, minky arora [EMAIL PROTECTED] wrote: yes i can still open the tomcat welcome page.. If i use localhost / 127.0.0.1..same error ?? If Tomcat's not running, and Safari 404s trying to access it, how can you still open the tomcat welcome page??? -- Hassan Schroeder

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
reboots to get a clean environment (and has nothing setting JAVA/JRE_HOME in any profile/bashrc/whatever config files) -- in theory all that need be done on OS X is setting CATALINA_HOME? -- Hassan Schroeder [EMAIL PROTECTED

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
output. -- 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: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
/1.1 on http-8080 You keep insisting that Tomcat is running and then send a log file that clearly shows *it is not*. What do you see that makes you think it's running??? -- Hassan Schroeder [EMAIL PROTECTED

Re: beginer question abt JSP with Tomcat

2007-09-12 Thread Hassan Schroeder
completely, start Tomcat and go to one JSP page and post *the entire log*. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: beginer question abt JSP with Tomcat

2007-09-11 Thread Hassan Schroeder
) involved are actually there? And have you looked at the log files yet? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: beginer question abt JSP with Tomcat

2007-09-11 Thread Hassan Schroeder
setting JAVA_HOME and CATALINA_HOME, wherever the latter may be located. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: beginer question abt JSP with Tomcat

2007-09-11 Thread Hassan Schroeder
On 9/11/07, minky arora [EMAIL PROTECTED] wrote: Using JRE_HOME: /Library/Java/Home Pls guide me on wat all paths to change , if any?? Did you /try/ using the JAVA_HOME setting I previously sent? -- Hassan Schroeder [EMAIL PROTECTED

Re: the tomcat welcome file one struts action

2007-09-09 Thread Hassan Schroeder
On 9/9/07, Miren Urkixo [EMAIL PROTECTED] wrote: And into the web.xml i have: welcome-file-list welcome-file/Index.do/welcome-file /welcome-file-list I believe that should be index.do rather than /index.do. (And presumably not starting with an upper-case I...) FWIW, -- Hassan Schroeder

Re: mapping directory in Tomcat?

2007-09-05 Thread Hassan Schroeder
to http:/mydomain.com/temp? Thanks. You could use a symlink, or you could use a servlet mapped to /temp/* HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: Different sessions between JSP and Servlets...

2007-09-05 Thread Hassan Schroeder
=javax.sql.DataSource/ /Context NOTE: no path attribute and no docBase attribute should be used in this case. HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: a problem of tomcat5 start

2007-09-03 Thread Hassan Schroeder
appropriately. If you're using a SuSE-packaged version of Tomcat, get rid of it and install one downloaded from tomcat.apache.org. HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e

Re: Problems with SSL-enabled Tomcat 5.5

2007-09-03 Thread Hassan Schroeder
On 9/3/07, Werner Schalk [EMAIL PROTECTED] wrote: ... what I ended up doing was buying a new certificate Your CA wouldn't let you submit a new CSR and re-issue the cert?? That's surprising. -- Hassan Schroeder [EMAIL PROTECTED

Re: Please help...

2007-09-02 Thread Hassan Schroeder
that resource still works. Perhaps someone else can shed some light on this. But otherwise, your suggested config looks OK to me :-) HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: full path of 404 file

2007-09-02 Thread Hassan Schroeder
got your basic config working. ... I should probably say that I'm doing this via mod_jk from Apache, Yes, you probably should :-) and you absolutely should get your webapp working properly through direct access first. It will simplify your debugging immensely... -- Hassan Schroeder

Re: Please help...

2007-09-02 Thread Hassan Schroeder
does that imply about leaving it out of a Resource in a Tomcat config? What's the default? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e

Re: Please help...

2007-09-02 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: full path of 404 file

2007-09-01 Thread Hassan Schroeder
404, you're back to access logging, so ... :-) 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: full path of 404 file

2007-09-01 Thread Hassan Schroeder
On 9/1/07, Peter Boughton [EMAIL PROTECTED] wrote: Thanks for the suggestion. I tried access logging, but it's only listing the /index.jsp, not the full path. Uh, then that *is* the full path; sounds like you need to double-check your Tomcat appBase/docBase/etc. configuration... -- Hassan

Re: full path of 404 file

2007-09-01 Thread Hassan Schroeder
-configured server.xml/etc so it could be doing anything. If the appBase and docBase are set properly, you know where your files are :-) but anything done by some third-party control panel -- I'd be suspicious, anyway. Did you look in your catalina.out for startup errors or warnings? -- Hassan

Re: HTTP method GET is not supported by this URL

2007-09-01 Thread Hassan Schroeder
is totally hosed. If it were me, I'd reinstall from scratch, using a fresh tar file, and see that it worked out of the box (ROOT/index.jsp, examples, etc.). Then try deploying your own app(s). FWIW, -- Hassan Schroeder [EMAIL PROTECTED

Re: Please help...

2007-09-01 Thread Hassan Schroeder
, there is no common/lib or shared/lib; $CATALINA_HOME/lib is correct... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re:

2007-08-29 Thread Hassan Schroeder
before going live. And if keeping RedHat support is critical -- well, why didn't they solve the OP's problem to start with? :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re:

2007-08-29 Thread Hassan Schroeder
particularly about messing with. Anything that directly involves the web apps -- JDK, Tomcat, MySQL, and so on -- gets installed and updated by me. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new

Re:

2007-08-29 Thread Hassan Schroeder
of an option :-) YMMV, -- 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: - Error -404 resources not found

2007-08-18 Thread Hassan Schroeder
have a firewall preventing access to the port Tomcat is using? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: I'm in a mess with Tomcat 5.5

2007-08-18 Thread Hassan Schroeder
there :-) Don't waste your time on this packaged stuff. Use whatever package manager is involved to de-install it totally, and then download a tar file version from the Tomcat web site. Untar it in /usr/local or someplace, and be happy :-) FWIW, -- Hassan Schroeder [EMAIL PROTECTED

Re: Error in Tomcat Installation.

2007-08-17 Thread Hassan Schroeder
On 8/17/07, David Delbecq [EMAIL PROTECTED] wrote: 2) download a more recent tomcat (5.0.28 is 3 years old release) I can confirm that the jsvc packaged with 5.5.23 configures and builds on a x86_64 SuSE 10.0 system. HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: JDBC driver of class '' for connect URL 'null' in Tomcat 5.5.12

2007-08-16 Thread Hassan Schroeder
On 8/16/07, Len Popp [EMAIL PROTECTED] wrote: You're right that putting server-specific info in context.xml in the .war is no good when the app could be installed on different servers. Isn't that what build.properties files are for? :-) -- Hassan Schroeder [EMAIL

Re: Tomcat 5.0.19 and EL expressions allowed

2007-08-16 Thread Hassan Schroeder
Maybe just something like: c:set var=road_assist_price value=${fn:replace(road_assistance_2year,'-','0.0' } / ? HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: JDBC driver of class '' for connect URL 'null' in Tomcat 5.5.12

2007-08-16 Thread Hassan Schroeder
of that element can be configured via a properties file, eh? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: JDBC driver of class '' for connect URL 'null' in Tomcat 5.5.12

2007-08-16 Thread Hassan Schroeder
On 8/16/07, Christopher Schultz [EMAIL PROTECTED] wrote: They're all crap solutions when nobody wants to do their job. heh -- indeed. And how about we add the it depends corollary -- they're all crap solutions for /some/ specific environment(s) :-) -- Hassan Schroeder

Re: JDBC driver of class '' for connect URL 'null' in Tomcat 5.5.12

2007-08-16 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: Installing APR on Fedora

2007-08-15 Thread Hassan Schroeder
On 8/15/07, Ole Ersoy [EMAIL PROTECTED] wrote: Then I try to compile like this: [EMAIL PROTECTED] native]# ./configure make make install --with-apr=/usr/lib/ ? Shouldn't you run ./configure --with-apr=/usr/lib make... Off the top of my head... :-) -- Hassan Schroeder

Re: Installing APR on Fedora

2007-08-15 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: Installing APR on Fedora

2007-08-15 Thread Hassan Schroeder
-1.2.8/ FWIW, -- 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: Removing the port identifier

2007-08-14 Thread Hassan Schroeder
) is not practical for us. When this is done, Tomcat requires the root user to run. Nope; see the reference to jsvc here: http://tomcat.apache.org/tomcat-6.0-doc/setup.html HTH, -- Hassan Schroeder [EMAIL PROTECTED

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