exception java.util.concurrent.RejectedExecutionException:

1

Good afternoon,

I'm back from a JEE project where jms is used and the server is wildfly 8.0. I've been back from this exception for some time but I still can not figure it out. I think that I do not lack any configuration in jboss but frankly I am missing ideas .. someone who has more experience that can help me.

Itseemstobreakintothiscodezone:

Documentdoc;doc=Jsoup.connect(url).get();Elementmain=doc.getElementById("main");
Elements links = main.getElementsByClass("overview-top");

Connection connection java code to server:

connectionFactoryLookupAddress = new String("jms/RemoteConnectionFactory");
destinationLookupAddress = new String("jms/topic/Catalog");
environment = new Properties();
environment.put(Context.SECURITY_PRINCIPAL, "testuser");
environment.put(Context.SECURITY_CREDENTIALS, "is");
environment.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.naming.remote.client.InitialContextFactory");
environment.put(Context.PROVIDER_URL,  "http-remoting://127.0.0.1:8080");
environment.put("jboss.naming.client.ejb.context", true);
InitialContext iCtx = new InitialContext(environment);

this.cf = (ConnectionFactory) iCtx.lookup(connectionFactoryLookupAddress);
this.t = (Destination) iCtx.lookup(destinationLookupAddress);
this.c = this.cf.createConnection(environment.getProperty(Context.SECURITY_PRINCIPAL),
environment.getProperty(Context.SECURITY_CREDENTIALS));
this.c.start();
this.s = this.c.createSession(false, Session.AUTO_ACKNOWLEDGE);
this.mp = this.s.createProducer(this.t);

The Widfly log:

Someone who can give me some tips?

Thanks for the attention

    
asked by anonymous 03.01.2015 / 17:41

0 answers