Thank you for your anwser
Now I was added the jar library to IS server but cannot work
String provider_url = “http-remoting://” + host;
final Properties env = new Properties();
env.put(Context.INITIAL_CONTEXT_FACTORY, “org.wildfly.naming.client.WildFlyInitialContextFactory”);
env.put(Context.PROVIDER_URL, provider_url);
env.put(Context.SECURITY_PRINCIPAL, userName);
env.put(Context.SECURITY_CREDENTIALS, password);
// Create the initial context
namingContext = new InitialContext(env);
javax.jms.ConnectionFactory connectionFactory
= (javax.jms.ConnectionFactory) namingContext.lookup("jms/RemoteConnectionFactory");
=>> this line throw exeption: java.lang.reflect.InvocationTargetException:Could not initialize class org.jboss.remoting3.ConfigurationEndpointSupplier$Holder
Could you give me some idea ?
#Integration-Server-and-ESB#webMethods