hello everybody
i have successfully deployed war-app with webobjects, but i need to monitor
it with javamelody
here on their site is simple config for this app - javamelody

but i have difficuiltes with configuring web.xml

    <filter>
        <filter-name>monitoring</filter-name>
        <filter-class>net.bull.javamelody.MonitoringFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>monitoring</filter-name>
        <url-pattern>/monitoring</url-pattern>
    </filter-mapping>
    <listener>
        <listener-class>net.bull.javamelody.SessionListener</listener-class>
    </listener>


  <!-- The WebObjects Servlet that interfaces between the Servlet container
       world and the WebObjects world. -->
  <servlet>
    <servlet-name>WOServletAdaptor</servlet-name>

<servlet-class>er.extensions.jspservlet.ERXServletAdaptor</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>

  <!-- URLs starting with 'WebObjects' use the WebObjects Servlet adaptor.
-->
  <servlet-mapping>
    <servlet-name>WOServletAdaptor</servlet-name>
    <url-pattern>/WebObjects/*</url-pattern>
  </servlet-mapping>

but if i will tries to change filter or leave as it is - nothing happens;
webobject app intercept all requests, but i should'nt be so - because
filter should catch request before servlet...

thanx for your ideas
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to