Hi guys
this is my first message (and my first big problem). I’m strugglin from hours on this issue…and i really don’t know what do to solve it, i searched through this forum (and google), but i didn’t find a solution.
I’ve setup the openfire server on an Ubuntu machine, enabled the bosh service, and with strophe i was able to connect to the xmpp server in a really short time. Today i was working on my app the has many features aside from the chat functionality, and from a minutes to another my chat stopped working (I didn’t touch anything of the chat logic)
The javascript console reports the Error: 404 bad request
And this is what gets logged in my openfire monitor… everytime i try a login
2015.09.02 22:00:17 org.eclipse.jetty.server.HttpInput - java.util.concurrent.RejectedExecutionException: Task org.jivesoftware.openfire.http.HttpSession$HttpPacketSender@6111f206 rejected from java.util.concurrent.ThreadPoolExecutor@2cb568b[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 921]
2015.09.02 22:00:17 org.jivesoftware.openfire.http.HttpBindServlet - Error reading request data from [2.227.255.128]
java.util.concurrent.RejectedExecutionException: Task org.jivesoftware.openfire.http.HttpSession$HttpPacketSender@6111f206 rejected from java.util.concurrent.ThreadPoolExecutor@2cb568b[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 921]
at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoo lExecutor.java:2048)
at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:821)
at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1372)
at org.jivesoftware.openfire.http.HttpSessionManager.execute(HttpSessionManager.ja va:377)
at org.jivesoftware.openfire.http.HttpSession$HttpPacketSender.init(HttpSession.ja va:1283)
at org.jivesoftware.openfire.http.HttpSession$HttpPacketSender.access$100(HttpSess ion.java:1271)
at org.jivesoftware.openfire.http.HttpSession.forwardRequest(HttpSession.java:607)
at org.jivesoftware.openfire.http.HttpBindServlet.handleSessionRequest(HttpBindSer vlet.java:251)
at org.jivesoftware.openfire.http.HttpBindServlet.processContent(HttpBindServlet.j ava:203)
at org.jivesoftware.openfire.http.HttpBindServlet$ReadListenerImpl.onAllDataRead(H ttpBindServlet.java:424)
at org.eclipse.jetty.server.HttpInput.run(HttpInput.java:441)
at org.eclipse.jetty.server.handler.ContextHandler.handle(ContextHandler.java:1175 )
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:354)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:257)
at org.eclipse.jetty.io.AbstractConnection$2.run(AbstractConnection.java:540)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:635 )
at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:555)
at java.lang.Thread.run(Thread.java:745)
2015.09.02 22:00:18 org.jivesoftware.openfire.http.HttpSession - Request 3206652004997360 > 3206652004997359, ending session.
I tried loggin in with pidgin, same error.
How is it possible that things that was working the right way a minute before…get screwed up the minute after without touching anything?
The only thing that came accross my mind is…is there a daily limit for connections? Or something that prevents multiple connections in a short time. Because, developing this app, i log in many times every day (let’s say…about 50 times a day?)
I really don’t know what to do guys
PLEASE
HELP
ME