Questions tagged [service-provider]

380 questions
4
votes
3 answers

Trace mobile service provider name

I have been assigned a task to access mobile service provider name instead of location. I searched and referred to many things. But I couldn't find. All are shown about the location (that is latitude and longitude values) and some of them shows the…
user1954492
  • 495
  • 3
  • 13
3
votes
1 answer

Jetty embedded as SPI Provider for web service doesn't send webfault to client

i'm working on a project where i have an embedded jetty server for serving html admin pages and i need to integrate some web services. I use jax-ws and javax xml annotations to build thoses services and use the jetty SPI implementation…
Lrk
  • 41
  • 5
3
votes
2 answers

How to add the returnURL to a SAML request?

Problem: an SP site xyz.com/A gets a request for a resource xyz.com/B requiring authentication. A SAML request with relay_state=xyz.com/B gets sent to the iDP. The user gets redirected to the iDP site through SAML/SSO then onto idp.com. I want to…
michaelvo
  • 101
  • 4
  • 6
3
votes
3 answers

Allow IEnumerable to resolve items lazily in MS.DI

I've got a very big list of ISample registrations in my MS.DI container, which I inject as an IEnumerable. But at runtime I typically need a very few. MS.DI, however, always creates all items of the collection immediately, which causes a…
Ali Jafari
  • 100
  • 8
3
votes
1 answer

SAML SP Metadata XML SSO, Recipient and Destination URLs

In Okta we have the ability to specify different URLs for the SSO, Recipient and Destination URLs in the applications UI like so: We have a custom URL where the SAML assertion needs to get sent to that's different than the recipient URL. The…
PurrBiscuit
  • 525
  • 2
  • 6
  • 19
3
votes
3 answers

Keycloak: Invalid SAML Response by External IdP

I am implementing a SSO option using SAML with an external IdP. If I inspect received SAML response after I click on the SSO button in the browser, I can see the authentication data that I need (such as the name of the user and the email), so the…
user3612623
  • 245
  • 3
  • 13
3
votes
1 answer

SAML - Service Provider in Django

I am new to SAML and need some clarification. I do have the IDP server up and running, and i am trying to authenticate my Django application with IDP. The IDP's admin told me to sent them the metadata service provider which i am currently stuck. I…
daniel8x
  • 990
  • 4
  • 16
  • 34
3
votes
2 answers

What event is fired when Laravel app is being shutdown?

Specifically what I am doing is in my AppServiceProvider->boot() method I am creating a singleton class like below: class AppServiceProvider extends ServiceProvider { public function boot() { …
Wayne Fulcher
  • 741
  • 1
  • 11
  • 21
3
votes
0 answers

In-memory database not persisted across service providers ASP.Net Core 2

I'm using ASP.Net Core 2 and Entity framework core 2 in my project with In-memory database and I have a call in method where I use: var serviceCollection = DependencyServiceProvider.ServiceProvider; List types = await…
3
votes
1 answer

Error while editing SP : Could not add Service Provider. You might be entering a duplicate Service Provider

We are getting following error when we try to edit service provider: Could not add Service Provider. You might be entering a duplicate Service Provider Steps Followed Created service provider Trying to update Inbound Authentication Configuration…
Siva
  • 31
  • 2
3
votes
1 answer

Laravel 5: View Composer and Service Provider not working

I want to show some data from database in multiple views. I am using View Composer and Service provider for this purposes but it is not working. This is my app/Http/ViewComposers/CategorycountComposer.php file
Ajmal Razeel
  • 1,663
  • 7
  • 27
  • 51
3
votes
1 answer

Use of service providers within controllers in Laravel 5.2

As for the title I've googled about two hours searching for a efficient answer and read repeatedly the official documentation, but without any step further, considering I'm relatively new to the framework. The doubt arise while searching for a…
wiredolphin
  • 1,431
  • 1
  • 18
  • 26
3
votes
1 answer

How to verify SAML certificates?

I'm new to SAML and am confused by the expected signature and trust process. I am programming a SP and receive a signed samlp:Response from the IDP that includes the KeyInfo:
Paul Draper
  • 78,542
  • 46
  • 206
  • 285
3
votes
1 answer

how to pass a variable to service provider in Laravel?

I want to generate a dynamic menu in a sidebar and share with all the views in Laravel 5.1. like: - Marks Module - Langosh Topic - Content 1 - Content 2 -Nitzsche Topic - Content 3 - Rolfson Module Although All this…
Leonardo Beal
  • 724
  • 11
  • 24
3
votes
0 answers

Resolve types in Designtime in custom markupextension

I have the following problem: If I do: MyExtension : StaticExtension, ProvideValue is not always called by the VS2015 designer. When it is called I can do: public override object ProvideValue(IServiceProvider serviceProvider) { var typeResolver…
Johan Larsson
  • 17,112
  • 9
  • 74
  • 88