Sorry No idea :-(

abstract of your problem :

http://foo.bar.com/app                  KO
http://foo.bar.com/app/                 ??
http://foo.bar.com:8080/app             OK
http://127.0.0.1:6802/app               ??
http://foo.bar.com/servlet/TotoServet   OK

servlet/TotoServlet is part of the same webapp
your filter mapping ?
  <filter-mapping>
    <filter-name>wicket</filter-name>
    <url-pattern>/app</url-pattern>
  </filter-mapping>
  <filter-mapping>
    <filter-name>wicket</filter-name>
    <url-pattern>/app/*</url-pattern>
  </filter-mapping>

is it right ?

Have you try:
* to set port to 80 instead of 8080
* to create an empty dir app under your webapp, I know that Websphere failed if 
a filter is not apply on a file or servlet.

Sorry.
smallufo wrote:
2007/10/3, David Bernard <[EMAIL PROTECTED]>:
Sorry I need the mapping, could you send /usr/local/resin/conf/resin.conf.


This is my partial resin.conf  , thanks in advanced.

<http port='8080'/>
  ...
  <srun host='127.0.0.1' port='6802'/>
  ...
    <host id='foo.bar.com' >
      <error-log id='log/error.log' />

      <jsp precompile='true' static-encoding='true'
recompile-on-error='true'/>
      <servlet-mapping url-pattern='*.jsp' servlet-name='
com.caucho.jsp.JspServlet'/>

      <web-app id='/' app-dir='/home/foobar/www'>
        <session-config>
          <session-max>4096</session-max>
          <session-timeout>30</session-timeout>
          <enable-cookies>true</enable-cookies>
          <enable-url-rewriting>true</enable-url-rewriting>
        </session-config>
      </web-app>

      <access-log id='/home/foobar/log/servlet/access_log'>
        <rollover-period>2W</rollover-period>
      </access-log>

    </host>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to