Re: WsFilter is missing destroy method

2020-09-22 Thread Ralph Goers
Thanks, That took care of the problem. I was using an older version of the servlet-api jar that wasn’t marked “provided”. Ralph > On Sep 21, 2020, at 11:15 PM, Apache wrote: > > Interesting. Thanks, I will check in the morning. > > Ralph > >> On Sep 21, 2020, at 10:31 PM, Romain Manni-Bucau

Re: WsFilter is missing destroy method

2020-09-21 Thread Apache
Interesting. Thanks, I will check in the morning. Ralph > On Sep 21, 2020, at 10:31 PM, Romain Manni-Bucau > wrote: > > Hi Ralph, > > Did you check your api jar was matching tomcat impl version? destroy is in > the interface (default method): > https://github.com/apache/tomcat/blob/9.0.x/jav

Re: WsFilter is missing destroy method

2020-09-21 Thread Romain Manni-Bucau
Hi Ralph, Did you check your api jar was matching tomcat impl version? destroy is in the interface (default method): https://github.com/apache/tomcat/blob/9.0.x/java/javax/servlet/Filter.java#L119 So without more details it sounds you have a dependency conflict or outdated import. Romain Manni-Bu