Questions tagged [opensaml]

OpenSAML is a java and c++ library that provides low level handling of SAML messages

Reference for downloading the library and its general documentation: https://wiki.shibboleth.net/confluence/display/OpenSAML/Home

377 questions
0
votes
1 answer

Anybody implement saml 2.0 service provider with opensaml 2.5.1

I have to implement saml 2.0 on a code base that has opensaml 2.5.1 (older version of cas) and unfortunately cannot make use of the spring saml security extension (which uses a new version of newer opensaml). I have looked at how the spring…
Jeff I
  • 396
  • 1
  • 2
  • 13
0
votes
2 answers

Is SP initiated requests without AuthnRequest an industry standard?

I am working on SAML2.0. One of our clients(IDP) requested us (SP) to have SP initiated requests without sending AuthnRequest. Instead of sending AuthenRequest they have asked us(SP) to send a parameter on the URL that can tell them that the…
Praveen
  • 21
  • 4
0
votes
1 answer

OpenSAML throws java.lang.NoClassDefFoundError only on weblogic

Im trying to implement a SAML SSO using the opensaml library. Ive managed to do so and successfully and deploy my simple authorization request on tomcat 7 but when i moved my application to weblogic server 10.3.5 it throws the following…
João Gomes
  • 332
  • 4
  • 15
0
votes
2 answers

wso2 is single logout doesn't sent LogoutRequest to other enrolled SPs

Scenario: I have 2 SP viz A and B configured in WSO2 IS 5.0 sp1. I have configured Custom Logout URL in B. This logout URL points to the logout for A. Now when I logout from A, there is no LogoutRequest which is sent from IDP to B. On the contrary,…
Cijoy
  • 123
  • 1
  • 9
0
votes
1 answer

wso2 is single logout partially working contd

How to send LogoutResponse from SP to IDP? The SP receives logoutRequest from IDP. I construct the Logout response and redirect it to IDP. But still the wso2 IS 5.0 sp1 console shows that Failed single logout response from .....status code Moved…
Cijoy
  • 123
  • 1
  • 9
0
votes
1 answer

Create a credential object in java SAML

I'm working on the sign SAML assertions. My code is the same as in this question: Signing response using openSAML I need to create the method getSigningCredential() to make the credential object. How can I create this Credential object? Any help is…
0
votes
0 answers

WebService application as service provider

Is it possible for a WEBSERVICE application to behave like a Service provider and get a validated saml token from IDP? Any example or any pointers will be helpful.
Vawani
  • 399
  • 10
  • 25
0
votes
1 answer

OpenSAML (2.0) EntitiesDescriptor signature validation not working

I have no clue how to log a bug to the Shibboleth project, so I'll write some findings I've come across with OpenSAML signature validation. There is an issue related to the way OpenSAML (2.0) attempts to validate signatures in SAML metadata…
TuTa
  • 11
  • 2
0
votes
1 answer

Can trusted credentials be used with SAML?

Can trusted credentials be used with SAML 2.0? Example of a use case would be like scheduling job. SAML 2.0 doc/spec does not seem to indicate that this is supported, any one know of a workaround or suggestion to achieve goal of the above use case?
Michael
  • 161
  • 2
  • 13
0
votes
1 answer

saml2.0 Generating metadata with OpenSAML

I am now trying to implement the Generating metadata with OpenSAML. For my reference I am using the http://mylifewithjava.blogspot.com/2012_02_01_archive.html blog to implement these scenario.I am new to saml. In this implementation there is…
raji satkunam
  • 115
  • 1
  • 2
  • 14
0
votes
1 answer

How to add simple XML element as AttributeValue in OpenSAML?

I'm trying to add XML element similar to following as saml:AttributeValue, cde Used DocumentBuilderFactory to get the XML element and I'm using following code to get XSAny type object. XSAnyBuilder anyBuilder =…
Thanuja
  • 443
  • 3
  • 16
0
votes
1 answer

SAML 2.0 Security Single Sign On using FilemetadataProvider

I would like to know how can I retrieve a assertion consumer url from the below metadata file using Opensaml library.I have used that library and got the entity Id through the code EntityDescriptor entityDescriptor =…
raji satkunam
  • 115
  • 1
  • 2
  • 14
0
votes
1 answer

how to check condition in xml?

i have 2 links login1 and login2 when i click login1 that should avoid filter node which has login filter in xml, that means it should not read LoginFilter i have googled got some examples how to modify xml using java but…
3bu1
  • 977
  • 12
  • 30
0
votes
0 answers

validating digital signature using SAML in eclipse and IBM RAD

I am using this java program to validate a digital signature using public key (cer file). I am using opensaml 2.6.3 jars import org.w3c.dom.Document; import org.w3c.dom.Element; import java.io.ByteArrayInputStream; import java.io.File; import…
Praveen
  • 21
  • 4
0
votes
1 answer

Implementing SAML Assertion

I have a Java Web Application and I want to serve it as a Service Provider and implement SAML. I am not sure about the workflow of how to do it. I have read this SO question and still not able to understand completely. In the question they are…
user2094311