We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm trying to use gosaml2 with JBoss Keycloak.
I'm consuming the descriptor metadata but I'm getting this error when running xml.Unmarshal:
xml.Unmarshal
expected element type <EntityDescriptor> but have <EntitiesDescriptor>
The text was updated successfully, but these errors were encountered:
I solved this issue by defining my own XML Element:
import "github.com/russellhaering/gosaml2/types" type EntitiesDescriptor struct { XMLName xml.Name `xml:"EntitiesDescriptor"` EntityDescriptors types.EntityDescriptor }
And used it as this:
metadatas := &EntitiesDescriptor{} err = xml.Unmarshal(by, metadatas) if err != nil { return nil, err } return &metadatas.EntityDescriptors
If wanted i can create a pull request.
Sorry, something went wrong.
No branches or pull requests
I'm trying to use gosaml2 with JBoss Keycloak.
I'm consuming the descriptor metadata but I'm getting this error when running
xml.Unmarshal
:expected element type <EntityDescriptor> but have <EntitiesDescriptor>
The text was updated successfully, but these errors were encountered: