Skip to content
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

Keycloak #53

Open
edsonmedina opened this issue May 10, 2019 · 1 comment
Open

Keycloak #53

edsonmedina opened this issue May 10, 2019 · 1 comment

Comments

@edsonmedina
Copy link

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>

@mradile
Copy link

mradile commented May 17, 2019

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants