Questions tagged [mitreid-connect]
11 questions
3
votes
2 answers
How does Spring MVC decide on conflict between homecontroller and jsp?
I am converting a Spring MVC app to Spring Boot.
The Spring app has a Home controller:
@RestController
public class HomeController {...
...
@RequestMapping("/login")
public String login(Principal p) {
return "login";
}
}
which should…

schoon
- 2,858
- 3
- 46
- 78
3
votes
1 answer
How do I convert this code from Spring to Spring Boot?
I have cut and pasted an MVC MitreID Spring web app into a basic boot web app. When I try and run it I get:
A component required a bean named 'namedAdmins' that could not be found
The code is:
import…

schoon
- 2,858
- 3
- 46
- 78
2
votes
1 answer
How to Protect a Resource using Spring Security OAuth2 and MITREID Connect Introspect?
We are building a REST resource server (a Java sample app) which we plan to protect using an identity propagation mechanism defined by RFC7662 available from the MITREID Connect project. We tested both configuration methods, the XML setup, as well…

Claude Falbriard
- 925
- 8
- 27
2
votes
0 answers
MitreID Connect : Retrieve LDAP operational attributes
I'm working on the LDAP overlay of MitreID Connect project and everthing is working greatly:
Authentication
Retrieving attributes from LDAP Directory
The problem I have now, is how to retrieve operational attributes in LDAP directory.
I'm not good…

isedrof
- 33
- 1
- 9
2
votes
1 answer
Difference between two OpenId Connect implementation
Is there any functional difference between Mitreid-Connect implementation and CAS support of OpenId-Connect protocol?

Mostafa
- 119
- 1
- 13
1
vote
1 answer
OpenID Connect RESTful Identity Propagation with MITREID Client
I would like to setup an access authentication service using the Java Spring MITREID client framework including calls to distributed REST clients (API) which will execute on behalf of the accessing user. An SSO Login service based on OpenID Connect…

Claude Falbriard
- 925
- 8
- 27
0
votes
3 answers
Add custom @Controller to a Maven Overlay?
I'm working on an implementation of mitreid-connect/OpenID-Connect-Java-Spring-Server, which recommends you extend and customize the project using a Maven Overlay. I've followed the instructions, then added the following code to…
user5359735
0
votes
1 answer
How to overcome thymeleaf template approve error?
Following on from this question,
I am using the Spring Boot MitreID OIDC application from here. This runs OK
I am trying to access it using simple-web-app. Simple-web-app now can see the OIDC app. It still asks for user/pwd even though I am logged…

schoon
- 2,858
- 3
- 46
- 78
0
votes
1 answer
How do I call MitreID OIDC server?
I am using the Spring Boot MitreID OIDC application from here. This runs OK and I can login but there are no other options available to me:
I am trying to access it using simple-web-app. In simple-web-app I try to login using URI:…

schoon
- 2,858
- 3
- 46
- 78
0
votes
1 answer
mitreId openid connect server using in an angular and .net webapi application
I'm working on a project which has angular as Frontend and backend API in asp.net WebAPI. There is an OpenId connect server(mitreid) which is hosted and I have to use that server for authentication and authorization.
I am trying to configure OpenId…

NikhilGoud
- 574
- 1
- 5
- 21
0
votes
0 answers
How to access a protected spring boot resource with access_token from command line , e.g. curl or httpie
In our spring boot application we use mitreid for openid connect. If we access a protected resource from browser, we are redirected to keycloak, our openid provider, and then after successful authentication, to the desired resource. This is working…

Luka M.
- 61
- 1
- 4