[FrontPage] [TitleIndex] [WordIndex

How to make deegree tolerant with regard to invalid requests

This page describes how to use a servlet filter in your web.xml to make deegree more tolerant wrt invalid requests.

1. Sample web.xml snippet

Add these lines to the end of the web.xml (before the closing </webapp>):

  <filter>
    <filter-name>tolerant</filter-name>
    <filter-class>org.deegree.enterprise.servlet.TolerantOGCRequestFilter</filter-class>
  </filter>

  <filter-mapping>
    <filter-name>tolerant</filter-name>
    <servlet-name>owservice</servlet-name>
  </filter-mapping>


CategoryHowTo CategoryDeegree2


2018-04-20 12:04