Commit 9087eff4 authored by Quxl's avatar Quxl

x

parent 5759f503
...@@ -12,8 +12,8 @@ import org.apache.cxf.Bus; ...@@ -12,8 +12,8 @@ import org.apache.cxf.Bus;
import org.apache.cxf.jaxws.EndpointImpl; import org.apache.cxf.jaxws.EndpointImpl;
import org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor; import org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor;
import org.apache.ws.security.WSConstants; import org.apache.ws.security.WSConstants;
import org.apache.ws.security.WSPasswordCallback;
import org.apache.ws.security.handler.WSHandlerConstants; import org.apache.ws.security.handler.WSHandlerConstants;
import org.apache.wss4j.common.ext.WSPasswordCallback;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
...@@ -96,6 +96,7 @@ public class WsConfig { ...@@ -96,6 +96,7 @@ public class WsConfig {
String username = pc.getIdentifier(); String username = pc.getIdentifier();
if (username.equals(wsUername)) { if (username.equals(wsUername)) {
pc.setPassword(wsPassword); pc.setPassword(wsPassword);
break;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment