Re: [cas-user] Logging the user on cas through remote API

2010-05-14 Thread José Miguel Parrella Romero
ently discussed on the list: http://bit.ly/dz2CDu http://bit.ly/bX3g6w HTH, -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian DeveloperCaracas, VE/Quito, EC -- You are currently subscribed to cas-user@lists.jasig.org as

Re: [cas-user] casify php application

2010-05-14 Thread José Miguel Parrella Romero
rom Apache. Then, all you need to do is to trust the REMOTE_USER server variable, some applications already do that, say, Trac. HTH, -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian DeveloperCaracas, VE/Quito, EC -- You are currentl

Re: [cas-user] LDAP setup errors

2010-05-07 Thread José Miguel Parrella Romero
be available in the DBCP release of Apache Commons: http://commons.apache.org/dbcp/downloads.html However you should have jars for Commons inside the CAS release, I think. HTH, -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian Developer

Re: [cas-user] CAS + Multiple BindLdapAuthenticationHandler

2010-05-06 Thread José Miguel Parrella Romero
José Miguel Parrella Romero escribió: > I'm trying to define two beans for BindLdapAuthenticationHandler but the > expected behaviour (falling back to the second bean) is not working for > me, these are my beans in deployerConfigContext.xml: My bad. It's working. The probl

Re: [cas-user] CAS + Multiple BindLdapAuthenticationHandler

2010-05-06 Thread José Miguel Parrella Romero
oesn't. Am I missing something else for automatic fallback of these beans? Note that I'm not using credentials-to-principal resolvers, maybe I need to set them up as in Eric's example? Thanks for your time, -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debia

[cas-user] Example Perl client for CAS RESTful API

2010-05-06 Thread José Miguel Parrella Romero
ie is on the last response's request # and also on the cookie jar BTW return { 'cookie' => $response->request->header('cookie') }; undef $ua; undef $response; # ... more housekeeping. # TGT is lost. It's up to the developer how to handle this cookie #

Re: [cas-user] using CAS for web service authentication

2010-05-06 Thread José Miguel Parrella Romero
ere it excels. As soon as I get consumable error messages with semantics related to the password policy and SAML with user attributes working, I think the road is ready for browser-only CAS for me in new deployments. - -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF

Re: [cas-user] CAS + Multiple BindLdapAuthenticationHandler

2010-05-06 Thread José Miguel Parrella Romero
with stacked JAAS setups... or multiple CAS servers which would definitely be a 'less than ideal' setup, I think. - -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian DeveloperCaracas, VE/Quito, EC -BEGIN PGP SIGNATURE-

Re: [cas-user] Setting up the RESTlet servlet on CAS 3.3.5

2010-05-06 Thread José Miguel Parrella Romero
ned in ServletContext resource [/WEB-INF/restlet-servlet.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: org/objectweb/asm/Type -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian DeveloperCaracas, VE/Qu

Re: [cas-user] Setting up the RESTlet servlet on CAS 3.3.5

2010-05-06 Thread José Miguel Parrella Romero
LvT6Iecf4a1Yc9gqCxXJptFGVVBq-cas 200 OK service: http://foo.bar/baz st : ST-2-VHSHBfaPRCBpcpCetsas-cas HTH, - -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian DeveloperCaracas, VE/Quito, EC -BEGIN PGP SIGNATURE- Versi

Re: [cas-user] using CAS for web service authentication

2010-05-06 Thread José Miguel Parrella Romero
rization purposes, i.e., a middleware for user-service access control mapping, maybe with access to a specific DB or LDAP server with that authorization information, that neither CAS nor the application can or want to access. -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B

Re: [cas-user] differences between authenticating via the web browser, the RESTful API, or proxying

2010-05-04 Thread José Miguel Parrella Romero
get a better understanding of how CAS works. I'm not an expert in CAS myself, but I hope to be helpful. -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian DeveloperCaracas, VE/Quito, EC -- You are currently subscribed to cas-user

Re: [cas-user] differences between authenticating via the web browser, the RESTful API, or proxying

2010-05-04 Thread José Miguel Parrella Romero
user gets redirected to http://app/?ticket=ST In my experience, since I 'outsource' login to a module of mine, the TGT is not being stored, so the major issue I have is users having to login to each application, which is not that annoying in my scenario. And also note this break

Re: [cas-user] authenticating a user via URL parameters

2010-04-30 Thread José Miguel Parrella Romero
le domain authentication using LDAP as a backend, unless I can, e.g., split a username like DOMAIN\user and build a new base with that DOMAIN, any pointers on how this can be achieved? - -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian Developer

Re: [cas-user] Send parameters to CAS client via request parameters

2010-04-30 Thread José Miguel Parrella Romero
José Miguel Parrella Romero escribió: > CAS won't do that, since the protocol doesn't allow it. SAML enables > this. If you can't use SAML in your current application, maybe a > middleware, lightweight app that is a service itself can query the > parameters from SAML

Re: [cas-user] Send parameters to CAS client via request parameters

2010-04-30 Thread José Miguel Parrella Romero
where to look for that redirect. Gabi, CAS won't do that, since the protocol doesn't allow it. SAML enables this. If you can't use SAML in your current application, maybe a middleware, lightweight app that is a service itself can query the parameters from SAML and POST them back

Re: [cas-user] Send parameters to CAS client via request parameters

2010-04-28 Thread José Miguel Parrella Romero
er authorization, which is a matter of your application or application cluster. I'd rather use REST web services which know your business logic and provide you with a simple list or OK/ERR messages for access control. HTH, -- José Miguel Parrella Romero (bureado.c

Re: [cas-user] authenticating a user via URL parameters

2010-04-28 Thread José Miguel Parrella Romero
and password fields, only if the auto parameter is set to true. Notice you will also need to change the name to anything else than 'submit', otherwise you get Javascript errors. This was posted in a blog entry somewhere by somebody else, I just had to change the parameters being pass

Re: [cas-user] authenticating a user via URL parameters

2010-04-27 Thread José Miguel Parrella Romero
submit it, get a redirect back to the service with the ticket, and extract it... a truly complex solution. HTH, - -- José Miguel Parrella Romero (bureado.com.ve) PGP: 0×88D4B7DF Debian DeveloperCaracas, VE/Quito, EC -BEGIN PGP SIGNATURE- Version:

[cas-user] Setting up the RESTlet servlet on CAS 3.3.5

2010-04-27 Thread José Miguel Parrella Romero
sing REST from my AJAX framework -- not that I have _anything_ against the login form, I have read a lot about how important it is for our users to get to CAS properly, but the RESTful interface is there for a reason and I really want to use it :) Thanks in advance and keep up the good work, - -- José Migu