Questions tagged [service-provider]
380 questions
0
votes
1 answer
How to Install and configure shibboleth SP in windows8?
I have a custom IDP,i need to create SAML request from Shibboleth SP and fetch back the SAML Response and process it in Shibboleth SP.
I followed the documentation given by shibboleth for SP 2.5.6 installation for windows but found it is not…

kaarthick raman
- 793
- 2
- 13
- 41
0
votes
2 answers
Laravel: Composer update when dependency is not yet installed
I require a dependency on my local environment. I add it's service provider and all is fine. The composer.json has this script
"pre-update-cmd": [
"php artisan clear-compiled"
],
When I push the changes to production, I try to…

Cristian
- 2,390
- 6
- 27
- 40
0
votes
1 answer
routing rules and orders in laravel 5
I am making a modulized app with laravel 5.0 and for this , I created a serviceProvider that's called ModuleServiceProvider , and for including routes of each module , in Boot function of ModuleServiceProvider , I wrote include…

Abolfazl
- 103
- 1
- 1
- 10
0
votes
0 answers
Using one Service Provider for multiple Websites
I have deployed two application on IIS. The first is called site1for instance and the second one is site2
Configuring a shibboleth authentication for one of them works fine. However I have been looking for a way to register both of them so that the…

bafla
- 1,029
- 1
- 10
- 14
0
votes
1 answer
Laravel package development
I am trying to develop a Laravel package with a helper function, which returns a view. I have uploaded on GitHub already https://github.com/faisalahsan/laravel-breadcrums. When I install it through Packagist …

Faisal Ahsan
- 928
- 1
- 12
- 22
0
votes
2 answers
Do all SMSC have an IP and port?
As I have only worked on SMSC Simulators, I had a general question regarding connections. In the real word, how do service providers connect to an SMSC? Is it through the same IP and port method? Or are there different ways to connect to an SMSC…

VedhaR
- 495
- 5
- 21
0
votes
1 answer
How to exchange SAML assertion between IDP and SP
Here are the snippet of code for exchanging SAML assertion between IDP and SP, I can get the SAML assertion from IDP, but the code to fetch the SAML assertion from IDP in the SP's side doesn't work.
def exchange_assertion(self):
"""Send…

jungler
- 45
- 5
0
votes
1 answer
Spring security SAML assertion expired
How and when is the Service Provider(Spring Security SAML) validating if the assertion is out of date?
I have a Service Provider created and configured in an webbapplication.
My Identity Provider is ADFS 2.0 authenticates and returns a…

Robert
- 383
- 1
- 5
- 20
0
votes
0 answers
More specific way to track companies on Google Analytics
I'm job searching now, and I created a resume website which is a good way for me to track what companies are interested in me for. Also, I sometimes can tell which companies specifically have looked at me by going to the "Service Provider"…

gamelanguage
- 103
- 10
0
votes
1 answer
WSO2 Identity Server - Adding Service Provider using SQL
WSO2 Identity Server 5.0.0
I am wondering what the full path of SQL queries would be if i wanted to create and update Service providers via SQL queries. It's more than adding to the SP_APP table as a newly inserted entry by that means doesn't show…

jeremy simon
- 601
- 1
- 8
- 19
0
votes
2 answers
ServiceRegistry constructor fails with ClassCastException on concrete class
Trying to use javax.imageio.spi.ServiceRegistry to dynamically register request processors for an HttpServlet:
private static final Class PROVIDER_CLASS = IRequestProcessor.class;
private void loadProviders() throws ClassNotFoundException {
…

Werd
- 47
- 7
0
votes
1 answer
How to configure a SAML 2.0 service provider for an ADF application
I have successfully configured a SAML 2.0 Identity provider in a separate Weblogic domain
We have an ADF application deployed in Weblogic in another domain with non-SAML form-based authentication (ReadOnlySQLAuthenticator is used to verify…

Jakub Hlavatý
- 1,097
- 2
- 9
- 17
0
votes
0 answers
Laravel Service Provider
I used to have a modified version of Dingo service provider (I'm using Laravel 4.2) that works beautifully. However after a while (several composer update) I can't seem to get it working anymore. It is simply not registered. I even tried to put some…

Don Djoe
- 705
- 1
- 10
- 21
0
votes
1 answer
Symfony / Silex maximum function nesting level
I have a Silex application with a few services registered.
$app->register(new \Silex\Provider\TranslationServiceProvider(), array(
'locale_fallbacks' => array('en'),
'translator.message' => array()
));
$app->register(new…

Simon Willan
- 378
- 3
- 14
0
votes
1 answer
Expose a Java Service Provider Interface to Service Providers
I'm trying to create a framework for plugin/apps, and I think I've settled on using a Service Provider Interface (SPI) in Java to achieve that. The ultimate vision is that people can download plugins (like an app store) and then just drop the jars…

JackBlack1
- 3
- 2