Hi,<br><br>I'm new to Shibboleth and trying to setup a test environment on a single Windows / x64 machine.<br>I followed some tutorials. Now I'm at a point where I'm trying to access a ressource on the SP. The redirection to the IdP loginpage works fine. But I cannot login, no matter if I use the right user/pw combination or not.<br>
I'm using LDAP as storage for the user data.<br>I tested two different LDAP Systems (APacheDS, OpenDS) but I couldnt get it to work. The same error with both.<br><br>The connection to the LDAP service can be established successfull on IdP Startup, but after redirection and typing username and passwort at the login screen Shibboleth IdP always gives the message "Credentials not recognized".<br>
Are there other configuration files, beside login.conf and attribute-resolver,xmlm which I need to consider?<br><br>It would be nice, if some has a hint for me regarding my problem, My progress really stucks.<br><br>conf snippets:<br>
<br><br>attribute-resolver.xml:<br><b><br> <!-- Example LDAP Connector for OpenDS--><br> <resolver:DataConnector id="myLDAP" xsi:type="dc:LDAPDirectory"<br> ldapURL="ldap://<a href="http://127.0.0.1:12389">127.0.0.1:12389</a>"<br>
baseDN="ou=people,dc=example,dc=com"<br> principal="cn=Directory Manager"<br> principalCredential="secret2"><br> <dc:FilterTemplate><br> <![CDATA[<br>
(uid=$requestContext.principalName)<br> ]]><br> </dc:FilterTemplate></b><br><br>login.config:<br><br><b>ShibUserPassAuth {<br> edu.vt.middleware.ldap.jaas.LdapLoginModule required<br>
host="127.0.0.1"<br> base="ou=people,dc=example,dc=com"<br> bindDn ="cn=Directory Manager"<br> bindCredential="secret2"<br> port="12389"<br> ssl="false"<br>
tls="false"<br> userField="uid";<br>};</b><br><br>Regards,<br>Stephan <br>