Have you tried creating the mina task server with binding all interfaces? Using this constructor:
| + | public BaseMinaTaskServer(IoHandlerAdapter handler, int port, |
| + | String localInterface) { |
| + |
| this.handler = handler; |
| + |
| this.port = port; |
| + |
| this.localInterface = localInterface; |
| + | } |
with localInterface = "0.0.0.0"
BTW, you should try hornetQ based task client/server, which is more powerful (sending JMS messages, persist messages, include it in transactions).
Regards,
Demian