WSSE - подписать элемент внутри soapenv: заголовок - PullRequest
4 голосов
/ 21 июня 2019

Я хочу добавить wsse: security к моему мыльному сообщению.Это мой код:

    public Document signSoapMessage(SOAPMessage message) {
    try {
        Document doc = message.getSOAPBody().getOwnerDocument();
        Crypto crypto = CryptoFactory.getInstance(properties); //File

        WSSecHeader secHeader = new WSSecHeader(doc);
        secHeader.insertSecurityHeader();

        InputStream inStream = new FileInputStream(properties.getProperty("org.apache.ws.security.crypto.merlin.keystore.file"));

        KeyStore ks = KeyStore.getInstance("PKCS12");
        ks.load(inStream, properties.getProperty("privatekeypassword").toCharArray());

        String alias = ks.aliases().nextElement();
        X509Certificate cert = (X509Certificate) ks.getCertificate(alias);

        WSSecSignature sign = new WSSecSignature(secHeader);
        sign.setX509Certificate(cert);
        sign.setUserInfo(properties.getProperty("org.apache.ws.security.crypto.merlin.keystore.alias"), properties.getProperty("privatekeypassword"));
        sign.setKeyIdentifierType(WSConstants.BST_DIRECT_REFERENCE); // Binary Security Token - SecurityTokenReference
        sign.setUseSingleCertificate(true);
        sign.setDigestAlgo(DigestMethod.SHA1);

        //sign.build(crypto);
        Document signedDoc = sign.build(crypto);

        return signedDoc;
    } catch (SOAPException e) {
        e.printStackTrace();
        return null;
    } catch (WSSecurityException e) {
        e.printStackTrace();
        throw new RuntimeException("Error: " + e.getMessage());
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    } catch (CertificateException e) {
        e.printStackTrace();
        return null;
    } catch (NoSuchAlgorithmException e) {
        e.printStackTrace();
        return null;
    } catch (KeyStoreException e) {
        e.printStackTrace();
        return null;
    }
}

Работает для soapenv: Body (Добавляет wsu: Id и xmlns: wsu параметры)

Но в soapenv: Header есть дополнительный элемент, который не подписывает этот элемент.Нет параметров wsu: Id и xmlns: wsu и отсутствие одного ds: Reference.

Пример неподписанного сообщения мыла:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header>
    <!-- this element should be signed but is not - NOT WORKING -->
    <something>
    </something>

   </soapenv:Header>
   <!-- this element should be signed and It does. -->
   <soapenv:Body>
    </soapenv:Body>
</soapenv:Envelope>

Я сравниваю сообщение мыла из моей программы с рабочим сообщением мыла из проекта SoapUI.

КогдаЯ отправляю сообщение в веб-сервис и получаю сообщение об ошибке: wsse:InvalidSecurity - Soap Header must be signed.В то время как в SoupUI это работает.

Поэтому мой вопрос заключается в том, как заставить WSS4j подписать дополнительный элемент внутри soapenv: Header ?

1 Ответ

3 голосов
/ 23 июня 2019

Хорошо, я решил проблему.

Обычно этот код должен работать в моей ситуации.

//strange static method from apache o.O
org.apache.xml.security.Init.init();
List<WSEncryptionPart> wsEncryptionParts = new ArrayList<>();
WSEncryptionPart somethingPart = new WSEncryptionPart("something","somethingNamespace","");
wsEncryptionParts.add(somethingPart);
sign.addReferencesToSign(wsEncryptionParts);

Тем не менее, он не работает.Всегда выдается исключение:

org.apache.wss4j.common.ext.WSSecurityException: в пакете ресурсов не найдено сообщение с идентификатором «noXMLSig» org / apache / xml / security / resource / xmlsecurity».Исходное исключение: org.apache.wss4j.common.ext.WSSecurityException и сообщение. В пакете ресурсов не найдено сообщение с идентификатором «noEncElement» org / apache / xml / security / resource / xmlsecurity »

Я не смог найти ответ на вопрос, что не так с моим мыльным сообщением или кодом.

Однако после времени отладки org.apache.wss4j.dom.message.WSSecSignature .Я чувствовал, что что-то не так с классом.Я решил изменить метод build (Crypto cr) .

public Document build(Crypto cr) throws WSSecurityException {
        LOG.debug("Beginning signing...");
        this.prepare(cr);
        if (this.getParts().isEmpty()) {
            this.getParts().add(WSSecurityUtil.getDefaultEncryptionPart(this.getDocument()));

            // --- Here is my edit - And it works!

            WSEncryptionPart aaa = new WSEncryptionPart("something","somethingNamespace","");
            this.getParts().add(aaa);

            // ----------------------------------

        } else {
            Iterator var2 = this.getParts().iterator();

            label33:
            while(true) {
                while(true) {
                    if (!var2.hasNext()) {
                        break label33;
                    }

                    WSEncryptionPart part = (WSEncryptionPart)var2.next();
                    if (part.getId() == null && "STRTransform".equals(part.getName())) {
                        part.setId(this.strUri);
                    } else if ("KeyInfo".equals(part.getName()) && "http://www.w3.org/2000/09/xmldsig#".equals(part.getNamespace()) && part.getElement() == null) {
                        Element keyInfoElement = this.getKeyInfoElement();
                        part.setElement(keyInfoElement);
                    }
                }
            }
        }

        List<javax.xml.crypto.dsig.Reference> referenceList = this.addReferencesToSign(this.getParts());
        this.computeSignature(referenceList);
        if (this.bstToken != null) {
            this.prependBSTElementToHeader();
        }

        return this.getDocument();
    }

Конечно, решение довольно слабое.Тем не менее, по крайней мере, это работает сейчас.

Проблема существует в самой последней версии:

wss4j-ws-security-dom 2.2.2

wss4j-ws-security-common 2.2.2

...