0 Replies Latest reply on Aug 22, 2003 3:19 PM by juzepeleteiro

    LoginModule EJB Proxy

    juzepeleteiro

      Hi.

      My application has 2 servers and 2 projects: One for core-business (called server) and other for client. Every business rules needs to be in a core-business project.

      So, the Authentication and Authorization need to be at core-business.

      I did a FacadeBean like this:
      [pre]public class LoginModuleTellerBean
      {
      public String[] login(String login, String password)
      {
      }
      }[/pre]

      And I have another LoginModule for core-business.

      The problem is: I need to use only LoginModuleTellerBean
      without any kind of authentication. How to I do this?

      I tried

      @ejb.permission unchecked=true
      but is does not work.

      How do I do this?

      Actually the LoginModuleTeller is like this:
      [pre]public class LoginModuleTellerBean
      {
      public String[] login(int clientCode, String login, String password)
      {
      }
      }[/pre]
      Where clientCode is the client application code (We have a core-business project and some client projects).

      Pls, somebody help me.
      Thanks,
      Jose Luiz Junior