However my old URL-space is now completely hijacked by Magnolia. None of my mapped struts actions (*.do) ever get invoked, neither does basic stuff like my web.xml defined error page "error.jsp" work.

It depends on this:

<filter-mapping>
  <filter-name>magnoliaFilterChain</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>

You are saying: for each request url pattern (/*) , start Magnolia!
I don't know if it is feasable to install Magnolia in an existing webapp, but you can try to modify the magnoliaFilterChain in something like

<filter-mapping>
  <filter-name>magnoliaFilterChain</filter-name>
  <url-pattern>/magnolia/*</url-pattern>
</filter-mapping>

I've tryied but the related
<listener>

<listener-class>info.magnolia.cms.servlets.MgnlServletContextListener</listener-class>
</listener>
doesn't start..

It's only one idea, let me know if you can manage!

Matteo


----------------------------------------------------------------
For list details see
http://www.magnolia-cms.com/home/community/mailing-lists.html
To unsubscribe, E-mail to: <[EMAIL PROTECTED]>
----------------------------------------------------------------

Reply via email to