Change or add the webapp dtd to a newer one in WEB.XML. Weblogic is particularly strict with theese. Then you can add error-page handlers.
ciaooo
EDIT: how do you get an HTTP 100 from weblogic ? If my memory is right status 100 is CONTINUE and should be handled silently (without producing an error)
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<servlet>
<servlet-name>LoginServlet</servlet-name>
<servlet-class>it.bigmike.servlet.LoginServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>LoginServlet</servlet-name>
<url-pattern>LoginLoginServlet</url-pattern>
</servlet-mapping>
<error-page>
<error-code>400</error-code>
<location>/web/errore.html</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/web/errore.html</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/web/errore.html</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/web/errore.html</location>
</error-page>
<error-page>
<error-code>503</error-code>
<location>/web/errore.html</location>
</error-page>
EDIT2: this web.xml works perfectly for me on weblogic 10.3