show/hide this revision's text 4 More details

Hi!

I'm developing a JAVA APP that must run on a Tomcat and I need to be able to identify the remote user who is acceding to my application web.

This remote user is running on a windows, so I need to get his "windows login" (sAMAccountName active directory attribute).

On IIS is easiest. I follow this http://stackoverflow.com/questions/688939/detect-user-logged-on-a-computer-using-asp-net-app to get the user logged

The content of server.xml is:

<Realm
    className="org.apache.catalina.realm.JNDIRealm" debug="99"
    connectionURL="ldap://DAServer:389"
    connectionName="userAuth@mydomain.local"
    connectionPassword="secret"
    referrals="follow"
    userBase="OU=mycompany,DC=mydomain,DC=local"
    userSubtree="true"
    roleBase="OU=groups,DC=mydomain,DC=local"
    roleName="name"
    roleSubtree="true"
    roleSearch="(member={0})"/>

And the content of web.xml is:

<!-- Define a Security Constraint on this Application -->
    <security-constraint>
    	<web-resource-collection>
    	<web-resource-name>Entire Application</web-resource-name>
    		<url-pattern>/*</url-pattern>
    	</web-resource-collection>

    	<auth-constraint>
    		<role-name>myCompany Users</role-name>
    	</auth-constraint>
    </security-constraint>

    <!-- Define the Login Configuration for this Application -->
    <login-config>
    	<auth-method>BASIC</auth-method>
    	<realm-name>myRealm</realm-name>
    </login-config>

    <!-- Security roles referenced by this web application -->
    <security-role>
    	<description>The role that is required to log in to APP</description>
    	<role-name>myCompany Users</role-name>
    </security-role>

This pop up a login window but

I don't want this pop upneed Automatic Login.

Thank you!

show/hide this revision's text 3 more details and a new question

Hi!

I'm developing a JAVA APP that must run on a Tomcat and I need to be able to identify the remote user who is acceding to my application web.

This remote user is running on a windows, so I need to get his "windows login" (sAMAccountName active directory attribute).

On IIS is easiest. I follow this http://stackoverflow.com/questions/688939/detect-user-logged-on-a-computer-using-asp-net-app to get the user logged

The content of server.xml is:

<Realm
    className="org.apache.catalina.realm.JNDIRealm" debug="99"
    connectionURL="ldap://DAServer:389"
    connectionName="userAuth@mydomain.local"
    connectionPassword="secret"
    referrals="follow"
    userBase="OU=mycompany,DC=mydomain,DC=local"
    userSubtree="true"
    roleBase="OU=groups,DC=mydomain,DC=local"
    roleName="cnroleName="name"
    roleSubtree="true"
    roleSearch="(rol1={0})"roleSearch="(member={0})"/>

And the content of web.xml is:

<!-- Define a Security Constraint on this Application -->
    <security-constraint>
    	<web-resource-collection>
    	<web-resource-name>Entire Application</web-resource-name>
    		<url-pattern>/*</url-pattern>
    	</web-resource-collection>

    	<auth-constraint>
    		<role-name>myCompany Users</role-name>
    	</auth-constraint>
    </security-constraint>

    <!-- Define the Login Configuration for this Application -->
    <login-config>
    	<auth-method>BASIC</auth-method>
    	<realm-name>myRealm</realm-name>
    </login-config>

    <!-- Security roles referenced by this web application -->
    <security-role>
    	<description>The role that is required to log in to APP</description>
    	<role-name>myCompany Users</role-name>
    </security-role>

How can

This pop up a login window but I do don't want this ?pop up.

Thank you!

show/hide this revision's text 2 more details

Hi!

I'm developing a JAVA APP that must run on a Tomcat and I need to be able to identify the remote user who is acceding to my application web.

This remote user is running on a windows, so I need to get his "windows login" (sAMAccountName active directory attribute).

On IIS is easiest. I follow this http://stackoverflow.com/questions/688939/detect-user-logged-on-a-computer-using-asp-net-app to get the user logged

The content of server.xml is:

<Realm
    className="org.apache.catalina.realm.JNDIRealm" debug="99"
    connectionURL="ldap://DAServer:389"
    userBase="OU=mycompany,DC=mydomain,DC=local"
    userSubtree="true"
    roleBase="OU=groups,DC=mydomain,DC=local"
    roleName="cn"
    roleSubtree="true"
    roleSearch="(rol1={0})"/>

And the content of web.xml is:

<!-- Define a Security Constraint on this Application -->
    <security-constraint>
    	<web-resource-collection>
    	<web-resource-name>Entire Application</web-resource-name>
    		<url-pattern>/*</url-pattern>
    	</web-resource-collection>

    	<auth-constraint>
    		<role-name>myCompany Users</role-name>
    	</auth-constraint>
    </security-constraint>

    <!-- Define the Login Configuration for this Application -->
    <login-config>
    	<auth-method>BASIC</auth-method>
    	<realm-name>myRealm</realm-name>
    </login-config>

    <!-- Security roles referenced by this web application -->
    <security-role>
    	<description>The role that is required to log in to APP</description>
    	<role-name>myCompany Users</role-name>
    </security-role>

How can I do this?

Thank you!

show/hide this revision's text 1