我们用下面的代码从我们的客户端应用程序与我们的网站,出于某种原因,我们总是回来的503状态码但后来,当我们手动从浏览器加载网站,它只是加载找到。 任何事情都可能是错误的代码? 或者是有服务器端的任何特殊的设置,可能会导致这个问题?
// the head method
httphead = new HttpHead(url);
httphead.getParams().setParameter("http.socket.timeout", this.socketTimeout);
httphead.getParams().setParameter("http.protocol.cookie-policy", CookiePolicy.IGNORE_COOKIES);
HttpResponse response = this.httpClient.execute(httphead);
statusCode = response.getStatusLine().getStatusCode();