私はブラウザからURLをヒットしましたhttp://myMachine/webApp1/customer.do?method=getCustDetail"
。サーバー側で呼び出しを受け取りますが、サーバーから戻ると、mozilla コンソールに次のエラーが表示されます。
"NetworkError: 503 Service Unavailable - `http://myMachine/webApp1/customer.do?method=getCustDetail"`
これが私のサーバーコードです
public String getCustDetail(HttpServletRequest req) {
req.getSession().removeAttribute("custId");
return null;
}
上記の URL でサーバーにアクセスできるのに、 NetworkError: 503 Service Unavailable
エラーが発生する理由がわかりません