SAML: remove HTTP-GET binding since it is not supported by SAML2 (replaced by HTTP-REDIRECT)

This commit is contained in:
Clément Oudot 2010-03-25 16:43:34 +00:00
parent a7bd4b0f78
commit 53d5212068
2 changed files with 0 additions and 3 deletions

View File

@ -423,7 +423,6 @@ function bindingParams(id) {
currentId=id;
formateSelect('select',[
'=',
'http-get=GET',
'http-post=POST',
'http-redirect=REDIRECT',
'http-soap=SOAP',

View File

@ -1296,8 +1296,6 @@ sub getNameIDFormat {
sub getHttpMethod {
my ( $self, $method ) = splice @_;
return Lasso::Constants::HTTP_METHOD_GET
if ( $method =~ /^(http)?[-_]?get$/i );
return Lasso::Constants::HTTP_METHOD_POST
if ( $method =~ /^(http)?[-_]?post$/i );
return Lasso::Constants::HTTP_METHOD_REDIRECT