0
我的程序正在發送邀請郵件。http 500錯誤Google App Engine
如果您選擇標記,將調用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("[email protected]"));
resp.getWriter().print("Chat invite sent to: ");
} catch (Exception exception) {
resp.getWriter().print("Unable to send chat invite to ");
}
}
}
您需要閱讀服務器日誌。在這裏粘貼通用的「服務器錯誤」消息是完全沒有用的。 – geoffspear