Hi devs,

If $subject please keep in mind that you need to overrride the default
constructor(ValveBase) and pass true as an argument.

For eg: in CompositeValve, you need to do,
    public CompositeValve() {
        super(true);
    }

This is required for using servlet 3.0 Asynchronous processing mode. The
passed boolen set the async mode true for the given valve. If this is not
done even in one valve Tomcat will disable the async mode for the request.
It won't help if you enable asyc mode in global level or servlet level if
you havent done this.
I have added this to all existing valves in kernel. If you are going to
introduce a new valve please keep in mind. Specially C5 folks. :)

thanks,
-- 
Supun Malinga,

Software Engineer,
WSO2 Inc.
http://wso2.com
http://wso2.org
email - [email protected] <[email protected]>
mobile - 071 56 91 321
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to