java - Wss4jSecurityInterceptor Class not found error -
i want use org.springframework.ws.soap.security.wss4j.wss4jsecurityinterceptor
in web application. in pom.xml
have added
<dependency> <groupid>org.springframework.ws</groupid> <artifactid>spring-ws-core</artifactid> <version>2.2.1.release</version> </dependency>
dependency property. in spring configuration says 'org.springframework.ws.soap.security.wss4j.wss4jsecurityinterceptor' not found. idea?
looking org.springframework.ws.soap.security.wss4j.wss4jsecurityinterceptor @ http://www.findjar.com/ see present on maven location: http://mirrors.ibiblio.org/pub/mirrors/maven2/org/springframework/ws/spring-ws-security/1.5.6/spring-ws-security-1.5.6.jar
that should
<groupid>org.springframework.ws</groupid> <artifactid>spring-ws-security</artifactid> <version>1.5.6</version>
there other versions to, totally different artifact. sure, if missing class present in jar expect present.
Comments
Post a Comment