0

I'm new to SOAP and I am trying to get some data from the SOAP Web service. there is only one method that I can call directly from the WS that works well with the methods generated (port, proxy, service..) from the WSDL file, but the other methods I need requires an authentication header like this:

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <AuthHeader xmlns="http://localhost/webservices/map2">
      <UserName>string</UserName>
      <Password>string</Password>
      <Secure>boolean</Secure>
    </AuthHeader>
  </soap:Header>

after some research I found this solution by using SOAPHandler:

public boolean handleMessage(SOAPMessageContext context) {

        Boolean isRequest = (Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY);

        if (isRequest) {

            try {
                SOAPMessage soapMsg = context.getMessage();
                SOAPEnvelope soapEnv = soapMsg.getSOAPPart().getEnvelope();
                SOAPHeader soapHeader = soapEnv.getHeader();

                if (soapHeader == null) {
                    soapHeader = soapEnv.addHeader();
                }

                // add a soap headers
                QName qnameAuthHeader = new QName("http://localhost/webservices/map2", "AuthHeader");

                SOAPHeaderElement soapAuthHeader = soapHeader.addHeaderElement(qnameAuthHeader);

                soapAuthHeader.setActor(SOAPConstants.URI_SOAP_ACTOR_NEXT);
                soapAuthHeader.addAttribute(new QName("http://localhost/webservices/map2", "UserName"), "user1");
                soapAuthHeader.addAttribute(new QName("http://localhost/webservices/map2", "Password"), "pass1");
                soapAuthHeader.addAttribute(new QName("http://localhost/webservices/map2", "Secure"), "false");


                soapMsg.saveChanges();

                // tracking
                soapMsg.writeTo(System.out);

            } catch (SOAPException e) {
                System.err.println(e);
            } catch (IOException e) {
                System.err.println(e);
            }

        }

        return true;
    }

but when I run this

ServiceSoapProxy proxy = new ServiceSoapProxy("http://localhost/ws3.0/service.asmx?wsdl");
        ServiceSoap service = proxy.getServiceSoap();

Binding binding = ((BindingProvider) service).getBinding();

I get this:

Exception in thread "main" java.lang.ClassCastException: localhost.webservices.map2.ServiceSoapStub cannot be cast to javax.xml.ws.BindingProvider
    at test.devs.MailiTest.main(MailiTest.java:33)

2 Answers2

0

You can follow below link for same, It helped me a lot during implementation.

http://informatictips.blogspot.pt/2013/09/using-message-handler-to-alter-soap.html

http://www.javadb.com/using-a-message-handler-to-alter-the-soap-header-in-a-web-service-client

I am also using other approach to read soap web service , might that can help you.

    HttpPost httppost = new HttpPost(endPoint);
            StringEntity stringentity = new StringEntity(envBody, "UTF-8");
            stringentity.setChunked(true);
            httppost.setEntity(stringentity);
            httppost.addHeader("Accept", "text/xml");
            httppost.addHeader("Content-Type", "text/xml");
            httppost.addHeader("SOAPAction", soapAction);
            String authToken = Base64.encodeBytes("username"
                    + ":" + "password".getBytes());

            httppost.addHeader("Authorization", "Basic " + authToken);

            HttpClient httpclient = new DefaultHttpClient();
            HttpParams httpParams = httpclient.getParams();
            httpParams.setParameter("http.connection.timeout",
                    Integer.valueOf(60000));
            httpParams.setParameter("http.socket.timeout", Integer.valueOf(60000));

            HttpResponse response = null;
            try {
                response = httpclient.execute(httppost);
            } catch (Exception e) {
                log.error(e);
                e.printStackTrace();
            }

            HttpEntity entity = response.getEntity();
            return EntityUtils.toString(entity);
Mak
  • 1,068
  • 8
  • 19
  • the STUB doesn't have any method named "service.**setHandlerResolver**(handlerResolver);" !!!! My real question is why a can't cast my ServiceSoap to BindingProvider – Timouthy Mcgee Jun 18 '19 at 16:58
0

After reading my automatically generated stub, I finally understood and found the solution to my problem. and this answer is for others who are looking for the same thing that I was.

I just added this line to createCall() method wich is located in my Stub.java:

setHeader("http://localhost/webservices/map2", "AuthHeader", new AuthHeader("username", "password"));