Anybody worked on consuming California EDD FSETService from java .
Trying to consume the .Net based WCF service https://fsettestprod.edd.ca.gov/FSETWCFProxyWebService/FsetService.svc?wsdl
I am using basic UserNameToken authentication and POST to https://fsettestprod.edd.ca.gov/FSETWCFProxyWebService/FsetService.svc/basic
Using Axis2 wsdl2code maven plugin for generating the stubs
Getting error back saying
org.apache.axis2.AxisFault: **An error occurred when verifying security for the** message.
org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:531)
org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:375)
org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:421)
org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)
at gov.ca.edd.stub.FsetServiceStub.ping(FsetServiceStub.java:649)
at com.preludesoftware.edd.client.Edd.initiateService(Edd.java:233)
at com.preludesoftware.edd.client.Edd.main(Edd.java:79)
The same service works fine when consumed from SOAP UI.
Sample java code :
FsetServiceStub stub = new FsetServiceStub("https://fsettestprod.edd.ca.gov/FSETWCFProxyWebService/FsetService.svc/basic");
HttpTransportProperties.Authenticator basicAuthenticator = new HttpTransportProperties.Authenticator();
List<String> authSchemes = new ArrayList<String>();
authSchemes.add(Authenticator.BASIC);
basicAuthenticator.setAuthSchemes(authSchemes);
basicAuthenticator.setUsername("uName");
basicAuthenticator.setPassword(StringEscapeUtils.unescapeHtml4("pwd"));
basicAuthenticator.setPreemptiveAuthentication(true);
stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE,basicAuthenticator);
stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED,"false");
stub._getServiceClient().getOptions().setSoapVersionURI(SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI);
stub.print();
Any help/thoughts would be great.
Edited : Working copy :
JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.setServiceClass(IFsetService.class);
factory.setAddress("https://fsettestprod.edd.ca.gov/FSETWCFProxyWebService/FsetService.svc/basic");
IFsetService service = (IFsetService)factory.create();
Client client = ClientProxy.getClient(service);
Endpoint cxfEndpoint = client.getEndpoint();
Map<String,Object> outProps = new HashMap<String,Object>();
outProps.put(WSHandlerConstants.ACTION, WSHandlerConstants.USERNAME_TOKEN);
outProps.put(WSHandlerConstants.USER, "<uName>");
outProps.put(WSHandlerConstants.PASSWORD_TYPE, WSConstants.PW_TEXT);
outProps.put(WSHandlerConstants.PW_CALLBACK_CLASS,ClientPasswordCallback.class.getName());
WSS4JOutInterceptor wssOut = new WSS4JOutInterceptor(outProps);
cxfEndpoint.getOutInterceptors().add(wssOut);
String pingResponse = service.ping();