You don't mention what the actual problem is (authentication failing?
JAAS?) but I lookup usernames entered on the web from LDAP (uid),
which is case-preserving (keeps and returns case as stored, which is
consistently lowercase here) but has case-insensitive matching
rules. That way usernames entered on the web are normalized "for
free". Don't know if that helps or not.
-peter
--
To unsubscribe from this list send an email to users-un...@shibboleth.net
>* McDermott, Michael <michael_...@brown.edu> [2011-08-23 17:33]:
>> I haven't seen anything on the user list about this, but our Ipad/Iphone
>> users are complaining that "Shib" capitalizes their case sensitive
>>username
>> when they login and wonder how to "fix" Shib.
>
>You don't mention what the actual problem is (authentication failing?
>JAAS?)
Kerberos would fail certainly unless you add code to lower case the
principal (assuming you use lower case principals).
I have code like that in mine, but this is a convenient trick to fix the
problem.
-- Scott
> --
> To unsubscribe from this list send an email to
> users-un...@shibboleth.net
>
--
Chad La Joie
www.itumi.biz
trusted identities, delivered
since that's a non-standard attribute (causing validation of the page
to fail), I would recommend to not add it to the default login page.
Regards,
Bernd
On Tue, 23 Aug 2011, Chad La Joie wrote:
> That would be something I'd be fine adding to the default login JSP
> page if you wanted to file a JIRA request for it.
>
> On Tue, Aug 23, 2011 at 11:33, McDermott, Michael
> <michael_...@brown.edu> wrote:
>> Hello List,
>> I haven't seen anything on the user list about this, but our Ipad/Iphone
>> users are complaining that "Shib" capitalizes their caseᅵsensitiveᅵusername
>> when they login and wonder how to "fix" Shib.
>> Clearly this is a client issue, but the "fix" I've found is to add the html
>> element that directs clients not to auto capitalize.
>> In the login.jsp, change the input field from something like:
>> <input name="j_username" type="text" ᅵ/>
>> to
>> <input name="j_username" type="text" autocapitalize="off" ᅵ/>
>> I'm wondering if others are doing the same thing, and if there are
>> anyᅵproblemsᅵwith this approach. ᅵIf not, then perhaps it could be added in
>> a future release of the IdP.
>>
>> --
>> Michael J. McDermott
>> Lead Developer, Identity and Access Management
>> Brown University
>>
>>
>>
>> --
>> To unsubscribe from this list send an email to
>> users-un...@shibboleth.net
>>
>
>
>
> --
> Chad La Joie
> www.itumi.biz
> trusted identities, delivered
> --
> To unsubscribe from this list send an email to users-un...@shibboleth.net
>
-- --------------------------------------------------------------------- --
Dipl.-Math. Bernd Oberknapp Universitaetsbibliothek Freiburg
Tel: +49-761 / 203-3852 Rempartstrasse 10-16 | Postfach 1629
Fax: +49-761 / 203-3987 79098 Freiburg | 79016 Freiburg
Hello,
since that's a non-standard attribute (causing validation of the page
to fail), I would recommend to not add it to the default login page.
Regards,
Bernd
On Tue, 23 Aug 2011, Chad La Joie wrote:
That would be something I'd be fine adding to the default login JSP
page if you wanted to file a JIRA request for it.
On Tue, Aug 23, 2011 at 11:33, McDermott, Michael
<michael_...@brown.edu> wrote:
Hello List,
I haven't seen anything on the user list about this, but our Ipad/Iphone
users are complaining that "Shib" capitalizes their case sensitive username
when they login and wonder how to "fix" Shib.
Clearly this is a client issue, but the "fix" I've found is to add the html
element that directs clients not to auto capitalize.
In the login.jsp, change the input field from something like:
<input name="j_username" type="text" />
to
<input name="j_username" type="text" autocapitalize="off" />
I'm wondering if others are doing the same thing, and if there are
any problems with this approach. If not, then perhaps it could be added in
a future release of the IdP.
--
Michael J. McDermott
Lead Developer, Identity and Access Management
Brown University
--
To unsubscribe from this list send an email to
--
Chad La Joie
www.itumi.biz
trusted identities, delivered
--
To unsubscribe from this list send an email to users-unsubscribe@shibboleth.net
-- --------------------------------------------------------------------- --
Dipl.-Math. Bernd Oberknapp Universitaetsbibliothek Freiburg
Tel: +49-761 / 203-3852 Rempartstrasse 10-16 | Postfach 1629
Fax: +49-761 / 203-3987 79098 Freiburg | 79016 Freiburg
--
To unsubscribe from this list send an email to users-un...@shibboleth.net
I fully agree with Bernd that the project should not be changing
defaults to include non-standard/non-validating HTML esp. when it's
trivial to add this to your own login.jsp during branding/customization.
-peter
Conversely, to your point Peter, if you care about validation against a particular HTML/XHTML schema/DTDs it's trivial to remove that attribute when creating your real login page from the shipped example.
--
Chad La Joie
www.itumi.biz
trusted identities, delivered
- Rainer
FWIW, we made this change to our login page over a year ago, and haven't
heard any negative side effects; mostly, people were thrilled they no
longer had issues with iPads and Androids.
A little after that, we also added:
<meta name="viewport" content="width=device-width" />
This helped our customized login page. I'm not sure if it will improve
the usability of the default/sample login page, though, as it is much
wider than our login page is.
Hope this helps,
--
Martin B. Smith
smi...@ufl.edu - (352) 273-1374
CNS/Open Systems Group
University of Florida
--
Chad La Joie
www.itumi.biz
trusted identities, delivered
+1