简体   繁体   English

SAAJ Java客户端-添加身份验证

[英]SAAJ java client - add authentication

i'm making a webservice client with SAAJ java. 我正在用SAAJ java制作一个Web服务客户端。 I'n the client i ask info of the webservice. 我是客户,我询问网络服务的信息。 But the webservice is protected with a username and password. 但是Web服务受用户名和密码保护。

And i don't no how i must add these 2. 而且我也不是必须添加这些2。

I tried it in my code ( see commands ) but no results .. 我在代码中尝试过(请参阅命令),但没有结果..

// SAAJ - SOAP Client Testing public static void main(String args[]) { // SAAJ-SOAP客户端测试公共静态void main(String args []){

    String soapEndpointUrl = "https://gtstvs01:8443/aeosws";
    String soapAction = "";

    callSoapWebService(soapEndpointUrl, soapAction);
}

private static void createSoapEnvelope(SOAPMessage soapMessage) throws SOAPException {
    SOAPPart soapPart = soapMessage.getSOAPPart();

    String myNamespace = "sch";
    String myNamespaceURI = "http://www.nedap.com/aeosws/schema";

    // SOAP Envelope
    SOAPEnvelope envelope = soapPart.getEnvelope();
    envelope.addNamespaceDeclaration(myNamespace, myNamespaceURI);



    //SOAPFactory soapFactory = SOAPFactory.newInstance();
   // SOAPElement authHeaderElement = soapFactory.createElement("AuthenticationHeader", "administrator", "aeosrules");
    //SOAPElement sessionIdElement = soapFactory.createElement("SessionID", "nsprefix", "nsuri");
    //sessionIdElement.addTextNode(MY_SESSION_ID);
    //authHeaderElement.addChildElement(sessionIdElement);

    //SOAPHeader soapHeader = envelope.addHeader();
    //soapHeader.addChildElement(authHeaderElement);


    // SOAP Body
    SOAPBody soapBody = envelope.getBody();
    SOAPElement soapBodyElem = soapBody.addChildElement("EmployeeSearchInfo", myNamespace);
    SOAPElement soapBodyElem1 = soapBodyElem.addChildElement("EmployeeInfo", myNamespace);
    SOAPElement soapBodyElem2 = soapBodyElem1.addChildElement("FirstName", myNamespace);
    soapBodyElem2.addTextNode("Jens");
}

private static void callSoapWebService(String soapEndpointUrl, String soapAction) {
    try {
        // Create SOAP Connection
        SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
        SOAPConnection soapConnection = soapConnectionFactory.createConnection();


        // Send SOAP Message to SOAP Server
        SOAPMessage soapResponse = soapConnection.call(createSOAPRequest(soapAction), soapEndpointUrl);

        // Print the SOAP Response
        System.out.println("Response SOAP Message:");
        soapResponse.writeTo(System.out);
        System.out.println();

        soapConnection.close();
    } catch (Exception e) {
        System.err.println("\nError occurred while sending SOAP Request to Server!\nMake sure you have the correct endpoint URL and SOAPAction!\n");
        e.printStackTrace();
    }
}

private static SOAPMessage createSOAPRequest(String soapAction) throws Exception {
    MessageFactory messageFactory = MessageFactory.newInstance();
    SOAPMessage soapMessage = messageFactory.createMessage();

    createSoapEnvelope(soapMessage);

    MimeHeaders headers = soapMessage.getMimeHeaders();
    headers.addHeader("SOAPAction", soapAction);

    soapMessage.saveChanges();

    /* Print the request message, just for debugging purposes */
    System.out.println("Request SOAP Message:");
    soapMessage.writeTo(System.out);
    System.out.println("\n");

    return soapMessage;
}

From what I understand, you have to add it to the header. 据我了解,您必须将其添加到标题中。

In your code for CreateSoapRequest you need 3 additional lines. 在CreateSoapRequest的代码中,您需要3行。

MimeHeaders headers = soapMessage.getMimeHeaders();
String encoded = new sun.misc.BASE64Encoder().encode((username+":"+password).getBytes());
String authString = "Basic " + encoded;
headers.addHeader("Authorization", authString);
headers.addHeader("SOAPAction", soapAction);

I think it matters what type of encoding the site has. 我认为网站采用哪种编码方式很重要。 So this probably won't work in a cut and paste you have to figure out what it requires. 因此,这可能无法一刀切,您必须弄清楚它的要求。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM