Milos Tomic

Results 9 comments of Milos Tomic

It's a general Symfony security question, and not directly related to lightsaml... but from the top of my head, you could try with custom entry point, or customer authentication handler......

Could you post an example of working fallbacks, so I could debug and find what's different in this case?

It means that in your own `EntityDescriptor` there are no `AssertionConsumerService` endpoints with such `Location`. If you're behind a proxy, your metadata must state the public url, and IDP must...

```yaml light_saml_symfony_bridge: own: entity_id: https://your.entity.id # required entity_descriptor_provider: id: app_entity_descriptor ``` As here https://www.lightsaml.com/Symfony-Bridge/Configuration/

Hi Katerina, As obscurely documented on https://www.lightsaml.com/Symfony-Bridge/Configuration/ you can implement `EntityDescriptorStoreInterface` in a new service and tag it with `lightsaml.idp_entity_store` and that service will be asked if it `has($entityId)` for...

It would be great to have this built in. But think API would be better like this ``` pimple.set('service.A', function () { ... }); pimple.set('service.B', function () { ... });...

Any suggestion how to define such regex in array config like below? ``` $config = new LexerArrayConfig([ '\\s' => '', '\\d+' => 'number', '\\+' => 'plus', '-' => 'minus', '\\*'...

Don't know what `\Dms\Saml\*` is. In LightSAML if you want to manipulate outgoing message before the signing or encryption, you should add a custom action to the action builder with...

Attribute value provider is used to provide attributes that will be put in the assertion. Note that you don't have to use pimple, it was added to the lib just...