CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2008
    Posts
    6

    Question How to use JBoss Server

    hay..Im developing a struts application using Java EJB's and JBoss server.
    I know haow to deploy elements on Jboss.

    Hav previously done it in Weblogic by using syntax--->

    -------------------------------------------------

    Hashtable hs=new Hashtable();
    hs.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    hs.put(Context.PROVIDER_URL,"t3://localhost:7001");

    Context ctx=new InitialContext(hs);
    Object obj= ctx.lookup("ejb/CardValidatorHome");

    -------------------------------------------------

    now how to do dis kind of stuff using JBoss

  2. #2
    Join Date
    Mar 2008
    Posts
    14

    Re: How to use JBoss Server

    what version of java ee are you developing against?

  3. #3
    Join Date
    Apr 2008
    Posts
    6

    Re: How to use JBoss Server

    I am Using Java 2 with JDk 5.0

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured