Description
Dear, I have the following configuration:
"require" : {
"php" : ">=5.3.3",
"symfony/symfony" : "2.3.*",
"doctrine/orm" : ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle" : "1.2.*",
"twig/extensions" : "1.0.*",
"symfony/assetic-bundle" : "2.3.*",
"symfony/swiftmailer-bundle" : "2.3.*",
"symfony/monolog-bundle" : "2.3.*",
"sensio/distribution-bundle" : "2.3.*",
"sensio/framework-extra-bundle" : "2.3.*",
"sensio/generator-bundle" : "2.3.*",
"incenteev/composer-parameter-handler" : "~2.0",
"besimple/sso-auth-bundle" : "1.0.*@dev"
},
"config.yml"
be_simple_sso_auth:
admin_sso:
protocol:
id: cas
version: 2
server:
id: cas
login_url: https://{dominioServerCAS}/service-auth/login #https://cas.server.tld/login
logout_url: https://{dominioServerCAS}/service-auth/logout #https://cas.server.tld/logout
#validation_url: #https://cas.server.tld/serviceValidate
"security"
intranet:
pattern: ^/cas/.*$
trusted_sso:
manager: admin_sso
login_action: false #BeSimpleSsoAuthBundle:TrustedSso:login
logout_action: false #BeSimpleSsoAuthBundle:TrustedSso:logout
login_path: /cas/login
check_path: /cas/login_check
#create_users: true
#created_users_roles: [ROLE_USER, ROLE_ADMIN]
"parameters.yml"
.
.
be_simple.sso_auth.client.option.curlopt_ssl_verifypeer.value: false
The system redirects me correctly to the CAS server and when I returned and I authenticate my application (with the correct ticket cas), I get the following error:
malformed
500 Internal Server Error - ClientException
"Stack Trace"
in C:\devweb\wamp\www\symfony\path\vendor\kriswallsmith\buzz\lib\Buzz\Client\Curl.php at line 29 -
$errorMsg = curl_error($this->lastCurl);
$errorNo = curl_errno($this->lastCurl);
throw new ClientException($errorMsg, $errorNo);
}
static::populateResponse($this->lastCurl, $data, $response);
"Logs"
CRITICAL - Uncaught PHP Exception Buzz\Exception\ClientException: " malformed" at C:\devweb\wamp\www\symfony\path\vendor\kriswallsmith\buzz\lib\Buzz\Client\Curl.php line 29
I hope your help, but I think it is a bug in the bundle
Lucas.-