smack connection using servlets

坚强是说给别人听的谎言 提交于 2019-12-13 12:51:34

问题


Here I am connecting to facebook using smack and servlets ,I can able to send and receive chat messages. But here connection object is instance variable(not thread-safe),so all the users are getting same connection object.

If we declare XMPPConnection object inside doGet() method we have to take connection every time when the user send chat message.

provide some solution for my problem.

public class Home_page_action extends HttpServlet  implements MessageListener{

 public XMPPConnection connection;

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

               if(connection!=null)
               {connection.connect("uname","password");}
               else{
               //send message code to target user
                }


              }

}

回答1:


Make some class to maintain pool of your connection and every time you have to just call getInstance of that class..



来源:https://stackoverflow.com/questions/23341601/smack-connection-using-servlets

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!