ContributionsMost RecentMost LikesSolutionsSpring 5.3x Support in Cucumber I know the most current version of Cucumber now supports Spring 6.x which requires an upgrade to JDK17. Will Cucumber continue to support the Spring 5.3.x (LTS) versions going forward? The end of life for these versions of Spring can be seen here, so 5.3.x is still supported by the Spring community. https://endoflife.date/spring-framework The Cucumber which supports this version is 7.10.1 . I am tracking Spring related vulnerabilities and we would prefer to stay on JDK11. Thanks for any info! Re: Support for no password in Username Token I have the same issue. The endpoints I am working against validates that there should be no password element passed in the security headers. I am surprised this hasn't been fixed yet. It is a reason my company doesn't use SOAP UI for web service testing. I have been able to get this working creating my own SOAP Client using Spring WS and WSS4J. It would be wonderful if I could use SOAP UI could add support for this same thing. Using Spring WS and WSS4J this gets implemented as - <bean id="wsSecurityUserNameToken" class="org.springframework.ws.soap.security.wss4j.Wss4jSecurityInterceptor"> <property name="securementActions" value="UsernameToken"/> <property name="securementUsername" value="TestUserName1"/> <property name="securementPassword" value=""/> <property name="securementPasswordType" value="PasswordNone> <property name="securementTimeToLive" value="300> <property name="futureTimeToLive" value="60> </bean>