CXF的版本是2.6.1的
服务端回调Java代码:
package ;
import ;
import ;
import ;
import ;
import ;
public class ServerAuthHandler implements CallbackHandler {
public void handle(Callback[] callbacks) throws IOException,
UnsupportedCallbackException {
WSPasswordCallback pc = (WSPasswordCallback) callbacks[0];
if(().equals("jysd")){
("jysdsoft");
if(!().equals("jysdsoft")){
("密码错误");
throw new SecurityException("密码错误!");
}
} else {
("用户名错误");
throw new SecurityException("用户名错误!");
}
}
}
服务端spring配置文件:
<beans xmlns="/schema/beans"
xmlns:xsi="http:///2001/XMLSchema-instance"
xmlns:context="/schema/context"
xmlns:tx="/schema/tx"
xmlns:aop="/schema/aop"
xmlns:jaxws="/jaxws"
xsi:schemaLocation="
/schema/beans
/schema/beans/spring-beans-3.
/schema/context
/schema/context/spring-context-3.
/schema/aop
/schema/aop/spring-aop-3.
/schema/tx
/schema/tx/spring-tx-3.
/jaxws
/schemas/">
<import resource="classpath:META-INF/cxf/" />
<import resource="classpath:META-INF/cxf/"/>
<import resource="classpath:META-INF/cxf/" />
<aop:aspectj-autoproxy/>
<context:component-scan base-package=""/>
<bean class="">
<property name="persistenceUnitName" value="bjjysd"/>
</bean>
<bean class="">
<property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
<jaxws:endpoint
implementor=""
address="/csh" >
<!--配置拦截器-->
<jaxws:inInterceptors>
<bean class="" />
<bean class="" />
<!-- <bean class=""/>-->
<bean class=".wss4j.WSS4JInInterceptor" >
<constructor-arg >
<map >
<entry key="action" value="UsernameToken" />
<entry key="passwordType" value="PasswordText" />
<entry key="passwordCallbackClass" value="" />
</map>
</constructor-arg>
</bean>
</jaxws:inInterceptors>
<!--配置拦截器结束 -->
</jaxws:endpoint>
</beans>
客户端回调java代码:
package ;
import ;
import ;
import ;
import ;
import ;
public class ClientAuthHandler implements CallbackHandler {
public void handle(Callback[] callbacks) throws IOException,
UnsupportedCallbackException {
WSPasswordCallback pc = (WSPasswordCallback) callbacks[0];
int usage = ();
("identifier: "+());
("usage: "+());
if(usage == WSPasswordCallback.USERNAME_TOKEN){
("jysdsoft");
}
}
}
客户端spring配置:
<?xml version="1.0" encoding="UTF-8"?>
<!-- START SNIPPET: beans -->
<beans xmlns="/schema/beans"
xmlns:xsi="http:///2001/XMLSchema-instance"
xmlns:jaxws="/jaxws"
xsi:schemaLocation="
/schema/beans
/schema/beans/
/jaxws
/schema/">
<bean class=""
factory-bean="clientFactory" factory-method="create"/>
<bean class="">
<property name="address" value="http://localhost:8080/CSHServer/csh"/>
<property name="serviceClass" value=""/>
<property name="outInterceptors">
<list>
<bean class=""/>
<!-- <bean class=""/> -->
<bean class="" />
<bean class=".wss4j.WSS4JOutInterceptor" >
<constructor-arg >
<map >
<entry key="action" value="UsernameToken" />
<entry key="passwordType" value="PasswordText" />
<entry key="user" value="jysd" />
<entry key="passwordCallbackRef" value="" />
</map>
</constructor-arg>
</bean>
</list>
</property>
</bean>
</beans>
<?xml version="1.0" encoding="UTF-8"?>
<!-- START SNIPPET: beans -->
<beans xmlns="/schema/beans"
xmlns:xsi="http:///2001/XMLSchema-instance"
xmlns:jaxws="/jaxws"
xsi:schemaLocation="
/schema/beans
/schema/beans/
/jaxws
/schema/">
<bean class=""
factory-bean="clientFactory" factory-method="create"/>
<bean class="">
<property name="address" value="http://localhost:8080/CSHServer/csh"/>
<property name="serviceClass" value=""/>
<property name="outInterceptors">
<list>
<bean class=""/>
<!-- <bean class=""/> -->
<bean class="" />
<bean class=".wss4j.WSS4JOutInterceptor" >
<constructor-arg >
<map >
<entry key="action" value="UsernameToken" />
<entry key="passwordType" value="PasswordText" />
<entry key="user" value="jysd" />
<entry key="passwordCallbackRef" value="" />
</map>
</constructor-arg>
</bean>
</list>
</property>
</bean>
</beans>
客户端运行:
package ;
import ;
import ;
import ;
import .wss4j.WSS4JOutInterceptor;
import ;
import ;
import ;
import ;
@SuppressWarnings("all")
public class Client {
public static void main(String[] args) {
ApplicationContext context=new ClassPathXmlApplicationContext("");
UserService us=(UserService) ("client");
String name = (new Integer(1));
("id=1, name="+name);
}
}
在没有配置WSS4JOutInterceptor的时候,运行main方法的时候可以运行,并能打印,浏览器能访问并返回信息。
在配置WSS4JOutInterceptor之后,浏览器也能访问并返回信息,但当运行main方法报异常,异常代码如下:
警告: Interceptor for {/}UserServiceService#{/}getName has thrown exception, unwinding now
: cannot be cast to
at (:858)
at (:879)
at (:35)
at (:202)
at .wss4j.$200(:52)
at .wss4j.WSS4JOutInterceptor$(:260)
at .wss4j.WSS4JOutInterceptor$(:136)
at (:262)
at (:532)
at (:464)
at (:367)
at (:320)
at (:89)
at (:134)
at $(Unknown Source)
at (:27)
Exception in thread "main" : cannot be cast to
at (:156)
at $(Unknown Source)
at (:27)
Caused by: : cannot be cast to
at (:858)
at (:879)
at (:35)
at (:202)
at .wss4j.$200(:52)
at .wss4j.WSS4JOutInterceptor$(:260)
at .wss4j.WSS4JOutInterceptor$(:136)
at (:262)
at (:532)
at (:464)
at (:367)
at (:320)
at (:89)
at (:134)
... 2 more
有哪位大神可以指点一下?