I am doing it.(migrate from Weblogic to JBoss)

The first, you should check whether the application used API only supported by 
old Application.

The second, you should make sure that the web.xml is correct.

The third, you should modify the egb-jar.xml and create a jboss.xml in EJB jar 
file.

The Fouth, to change the JMS and JNDI method.

For client
    Hashtable env = new Hashtable();
    env.put("java.naming.factory.initial", 
"org.jnp.interfaces.NamingContextFactory");
    env.put("java.naming.provider.url", "localhost:1099");
    env.put("java.naming.factory.url.pkgs", "org.jboss.naming");

For Server
  private static final String JNDI_FACTORY = 
"org.jnp.interfaces.NamingContextFactory";

Good Luck

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3858959#3858959

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3858959


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to