-
Notifications
You must be signed in to change notification settings - Fork 164
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
Regression: xmlbuilder2 may have removed some non-essential properties #230
Comments
In order to solve this, we should:
I think this might be the case for |
This refers to the nodes underneath From xmlbuilder: <md:KeyDescriptor use="signing">
<ds:KeyInfo xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<ds:X509Data>
<ds:X509Certificate>[removed]</ds:X509Certificate>
</ds:X509Data>
</ds:KeyInfo>
</md:KeyDescriptor> From xmlbuilder2: <md:KeyDescriptor use="signing">
<ds:KeyInfo>
<ds:X509Data>
<ds:X509Certificate>[removed]</ds:X509Certificate>
</ds:X509Data>
</ds:KeyInfo>
</md:KeyDescriptor> Note, the missing attribute on |
Scratched my head for a little bit. The structure seems right, but it seems as if the attribute ( https://github.com/Clever/saml2/blob/master/lib/saml2.coffee#L72 Opened up oozcitak/xmlbuilder2#72 to try and figure out why that's the case. It's possible that processing and attribute setting has to be done on the element while building the XML itself, but I'd want to explore via object creation first. |
Originally posted by @artonge in #229 (comment)
The text was updated successfully, but these errors were encountered: