<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Re: Secure access to an EJB3.0
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/WolfgangKnauf">Wolfgang Knauf</a> in <i>Beginner's Corner</i> - <a href="http://community.jboss.org/message/589023#589023">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi Pablo,</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>in AS 4.2, you might use something like this:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>public class SecurityClientCallbackHandler implements CallbackHandler</p><p>{</p><p>&#160; public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException</p><p>&#160; {</p><p>&#160;&#160;&#160; //loop over parameter Callbacks</p><p>&#160;&#160;&#160; for (int intIndexCallback = 0; intIndexCallback &lt; callbacks.length; intIndexCallback++)</p><p>&#160;&#160;&#160; {</p><p>&#160;&#160;&#160;&#160;&#160; //NameCallback: set Login</p><p>&#160;&#160;&#160;&#160;&#160;&#160; if (callbacks[intIndexCallback] instanceof NameCallback)</p><p>&#160;&#160;&#160;&#160;&#160; {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; NameCallback nameCallback = (NameCallback) callbacks[intIndexCallback];</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; nameCallback.setName( "ADMIN" );</p><p>&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160; //PasswordCallback: set password.</p><p>&#160;&#160;&#160;&#160;&#160; else if (callbacks[intIndexCallback] instanceof PasswordCallback)</p><p>&#160;&#160;&#160;&#160;&#160; {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; PasswordCallback passwordCallback = (PasswordCallback) callbacks[intIndexCallback];</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; passwordCallback.setPassword ("ADMIN".toCharArray() );</p><p>&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160; else</p><p>&#160;&#160;&#160;&#160;&#160; {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new UnsupportedCallbackException (callbacks[intIndexCallback], "Unsupported Callback!");</p><p>&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160; }</p><p>&#160; }</p><p>}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>And in your client, perform this code to login in:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160;&#160;&#160; Properties props = new Properties();</p><p>&#160;&#160;&#160;&#160;&#160; props.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");</p><p>&#160;&#160;&#160;&#160;&#160; props.setProperty(Context.URL_PKG_PREFIXES, "org.jboss.naming.client");</p><p>&#160;&#160;&#160;&#160;&#160; props.setProperty(Context.PROVIDER_URL, "jnp://localhost:1099");</p><p>&#160;&#160;&#160;&#160;&#160; props.setProperty("j2ee.clientName", "SecurityClient");</p><p>&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160; InitialContext initialContext = new InitialContext(props);</p><p>&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160; //Initialize Login:</p><p>&#160;&#160;&#160;&#160;&#160; SecurityClientCallbackHandler callbackHandler = new SecurityClientCallbackHandler();</p><p>&#160;&#160;&#160;&#160;&#160; LoginContext loginContext = new LoginContext ("somename", callbackHandler);</p><p>&#160;&#160;&#160;&#160;&#160; loginContext.login(); </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Note the the "j2ee.clientName" must be declared in a file "jboss-client.xml":</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;?xml version="1.0" encoding="UTF-8"?&gt;</p><p><span>&lt;!DOCTYPE jboss-client PUBLIC "-//JBoss//DTD Application Client 4.2//EN" "</span><a class="jive-link-external-small" href="http://www.jboss.org/j2ee/dtd/jboss-client_4_2.dtd" target="_blank">http://www.jboss.org/j2ee/dtd/jboss-client_4_2.dtd</a><span>" &gt;</span></p><p>&lt;jboss-client&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;jndi-name&gt;SecurityClient&lt;/jndi-name&gt;</p><p>&#160;&#160;&#160;&#160;&#160; ...</p><p>&lt;/jboss-client&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>And the "login context" name (here: "somename") must be declared in a file "auth.conf" in META-INF of your client JAR:</p><p>somename {<br/>&#160;&#160; // jBoss LoginModule<br/>&#160;&#160; org.jboss.security.ClientLoginModule&#160; required<br/>&#160;&#160; ;<br/>};</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>And finally, start your client with a parameter pointing to "auth.conf": -Djava.security.auth.login.config=.../META-INF/auth.conf </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Hope this helps</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Wolfgang</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/589023#589023">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in Beginner's Corner at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2075">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>