include css

2008-06-13 Thread Johannes Hoechstaedter
Hi everybody, it seems to be a never ending story for me. Why can't I access my css file? My style works when I put it in style tags, but when I try to acces by a xsl file (transform.xsl), nothing happens. My block structure is as follows: /sitemap /resource/internal/style/style-main.css

Re: Tomcat security

2008-06-13 Thread Johannes Hoechstaedter
Thank you Barbara for struggeling this out, maybe I need your collected knowledge later :) Barbara Slupik schrieb: I found how to make tomcat authentication work. I added: filter filter-namespringRequestContextFilter/filter-name

Re: include css

2008-06-13 Thread Andre Juffer
Johannes, the /resource/internal is meant for internal access only (check your sitemap) and is consequently not accessible from outside requests. The other location /resource/external is meant for external access (again check your sitemap. Johannes Hoechstaedter wrote: Hi everybody, it

Re: include css

2008-06-13 Thread Johannes Hoechstaedter
Thank you for your response Andre, I left the default pipelines for internal-resource and extrenal-resource in my sitemap untouched, ok you are right. I copied my file and I tried the follwing: href=cocoon://resource/external/style/style-main.css

Re: include css

2008-06-13 Thread Andre Juffer
Johannes Hoechstaedter wrote: Thank you for your response Andre, I left the default pipelines for internal-resource and extrenal-resource in my sitemap untouched, ok you are right. I copied my file and I tried the follwing: href=cocoon://resource/external/style/style-main.css

Re: include css

2008-06-13 Thread Johannes Hoechstaedter
No, I am able to access the directory. Theres nothing special about it. Andre Juffer schrieb: Johannes Hoechstaedter wrote: Thank you for your response Andre, I left the default pipelines for internal-resource and extrenal-resource in my sitemap untouched, ok you are right. I copied my file

Re: include css

2008-06-13 Thread Johannes Hoechstaedter
Hi Andre :) I did it by href=../resource/external/style/style-main.css thank you Johannes Hoechstaedter schrieb: No, I am able to access the directory. Theres nothing special about it. Andre Juffer schrieb: Johannes Hoechstaedter wrote: Thank you for your response Andre, I left the

Failing Mysql JDBC connections

2008-06-13 Thread Tobia Conforto
Hello I have a big problem right now: my Cocoon MySql connections have started to fail randomly, and when they do they bring down all pages currently being generated. My gut feeling is that it's a synchronization problem, some race condition in Cocoon or in the Mysql connector. This is

AW: include css

2008-06-13 Thread Christofer Dutz
Hi, Did you setup a pipeline for serving the css file in your sitemap? You have to add something like this: map:match pattern=internal/style/style-main.css map:read src=internal/style/style-main.css/ /map:match ... or use *, ** and {1},{2} if you want it a little more general ;-) Hope