[jboss-dev-forums] [EJB3 Development] - Ejb 3.1 & JBoss AS 6 M5 User Authentifiaction and Autorisation

Süleyman Vurucu do-not-reply at jboss.com
Fri Nov 5 07:11:03 EDT 2010


Süleyman Vurucu [http://community.jboss.org/people/suikast42] created the discussion

"Ejb 3.1 & JBoss AS 6 M5 User Authentifiaction and Autorisation"

To view the discussion, visit: http://community.jboss.org/message/569788#569788

--------------------------------------------------------------
Hi @ all,

My Environment:

Aplication Sevrer :      jboss-6.0.0.20100911-M5 (default configuration without any changes)
IDE:                          Eclipse 3.6
Jboss Tools               V 3.2
Java Version:             JDK 1.6 U 20
OS:                          Windows Vista 32 Bit

My Problem:

I Create a test Application. It Contains only one Stateless Bean with local an remote interfaces:

package beans.stateless;
 
import interfaces.stateless.FirstStatelessBeanLocal;
import interfaces.stateless.FirstStatelessBeanRemote;
 
import javax.annotation.*;
import javax.annotation.security.*;
import javax.ejb.*;
 
import org.apache.commons.logging.*;
import org.jboss.aop.*;
import org.jboss.beans.metadata.api.annotations.*;
import org.jboss.security.annotation.*;
 
/**
 * Session Bean implementation class FirstStatelessBean
 */
@Stateless
@SecurityDomain("JBossWS")
@RolesAllowed("{friend}")
public class FirstStatelessBean implements FirstStatelessBeanRemote, FirstStatelessBeanLocal {
 
    /**
     * Default constructor.
     */
    private int    pCounterLocal    = 0;
    private int    pCounterRemote    = 0;
 
    @Resource
    private SessionContext myCtx ; 
    
    public FirstStatelessBean() {
    }
 
    @PreDestroy
    public void destroy() {
        LogFactory.getLog( getClass() ).warn( "Destroy" );
        pCounterLocal=0;
        pCounterRemote=0;
    }
    
    @PostConstruct
    public void create(){
        LogFactory.getLog( getClass() ).warn( "Create" );
    }
 
    
    @Override
    public String sayHelloLocal( String pMesssage ) {
        String lMessage = "Hello Local to " + pMesssage + " " + ( ++pCounterLocal ) + " Times";
        LogFactory.getLog( getClass() ).info( lMessage );
        return lMessage;
    }
 
    @Override
    public String sayHelloRemote( String pMesssage ) {
        String lMessage = "Hello Remote to " + pMesssage + " " + ( ++pCounterRemote ) + " Times";
        LogFactory.getLog( getClass() ).info( lMessage );
//      LogFactory.getLog( getClass() ).info( myCtx.getCallerPrincipal() );
        return lMessage;
    }
 
    @Override
    @PrePassivate
    public void passviate() {
        LogFactory.getLog( getClass() ).warn( "Passivate" );        
    }
 
 
}


On The Client side I get the JNDI Refrence on the following way:

Properties p = new Properties();
                p.put( Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory" );
                p.put( Context.PROVIDER_URL, "jnp://" + pServerAddr + ":" + pServerPort );
InitialContext jndiContext = new InitialContext( p );
 


So my excpected behavior (when I call sayHelloRemote) is an Exception. But this request still works with worong user information.

So what I'm doing wrong ?
--------------------------------------------------------------

Reply to this message by going to Community
[http://community.jboss.org/message/569788#569788]

Start a new discussion in EJB3 Development at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2030]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-dev-forums/attachments/20101105/6f29a34a/attachment.html 


More information about the jboss-dev-forums mailing list