No mapping found for [/crls/secureca.crl]

hosts, ipfw, ssl-certificate, verisign

Solution

My mistake, I got (and only god knows why) in `/private/etc/hosts`

127.0.0.1 crl.verisign.com
127.0.0.1 crl.geotrust.com

So if anybody encounters the same issue, simply check your hosts file for `crl, verisign, geotrust` keywords and disable or delete matching lines.

- Note that commenting in hosts file works like this

- `#127.0.0.1 crl.geotrust.com`

Problem

This is what appears many times in console of Jetty local webserver when testing J2EE Spring app. ``` 2012-05-03 14:28:14,716 WARN [org.springframework.web.servlet.PageNotFound] - <No mapping found for HTTP request with URI [/crls/secureca.crl] in DispatcherServlet with name 'DefaultServlet'> ``` I've setup my localhost (OSX) like this: ``` sudo ipfw add 100 fwd 127.0.0.1,8080 tcp from any to any 80 in ``` To forward all requests to localhost/127.0.0.1 from :80 to :8080 Does anybody know if this is severe bug/warning and how to get rid of it ?

Original source