我的程序正在发送邀请消息。
如果选择标签,将调用 XmppDServlet。
这是一个非常简单的程序,但我在调用 XmppDServlet 时得到了 http 500。
我应该怎么做?
错误:服务器错误
服务器遇到错误,无法完成您的请求。如果问题仍然存在,请报告您的问题并提及此错误消息和导致它的查询。
公共类 XmppDServlet 扩展 HttpServlet {
public void doPost(HttpServletRequest req, HttpServletResponse resp)
throws IOException{
//sendInvite(req,resp);
}
private void sendInvite(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
XMPPService xmpp = XMPPServiceFactory.getXMPPService();
try {
//System.out.println(invitee);
xmpp.sendInvitation(new JID("myaccount@gmail.com"));
resp.getWriter().print("Chat invite sent to: ");
} catch (Exception exception) {
resp.getWriter().print("Unable to send chat invite to " );
}
}
}