-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New XML Signing Options, extra tags to sign and small bug fix #1091
Conversation
Added new Signer Options to add prefix to signature tags added Added new Signer Options to add Attributes to the Signature tag Updated the Readme file Added tests change the join from `/n` to `' '` in client _invoke soapheaders. The new line character stopped the XML from being decoded by a WSE system
With regards to the change I made in |
@@ -864,6 +864,20 @@ WS-Security X509 Certificate support. | |||
var privateKey = fs.readFileSync(privateKeyPath); | |||
var publicKey = fs.readFileSync(publicKeyPath); | |||
var password = ''; // optional password | |||
var options = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add comments in this example to explain if these are optional and what they're for etc.?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Added Readme examples for the option added Removed some extra XML tags added from a cut and paste error
thanks! |
@jsdevel when are you planning on doing the next release? |
@LorneCurrie published as 0.30.0 |
…#1091) * New XML Signing Options, extra tags to sign and small bug fix Added new Signer Options to add prefix to signature tags added Added new Signer Options to add Attributes to the Signature tag Updated the Readme file Added tests change the join from `/n` to `' '` in client _invoke soapheaders. The new line character stopped the XML from being decoded by a WSE system * Fixed small lint issues * Added README examples Added Readme examples for the option added Removed some extra XML tags added from a cut and paste error
Added new Signer Options to add a prefix to the signature tags added in WSSecurityCert
Added new Signer Options to add Attributes to the Signature tag added in WSSecurityCert
Updated the Readme file
Added tests
Change the join from
/n
to' '
in client _invoke soapheaders.The new line character stopped the XML from being decoded by a WSE SOAP server