Sto cercando di eseguire una purga con HttpURLConnection come questo:Come faccio HTTP Purge da Java?
private void callVarnish(URL url) {
HttpURLConnection conn = null;
try {
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod(PURGE_METHOD);
conn.setDoOutput(true);
conn.setInstanceFollowRedirects(true);
conn.setRequestProperty("Host", "www.somehost.com");
conn.connect();
System.out.print(conn.getResponseCode() + " " + conn.getResponseMessage());
}
catch (Exception e) {
log.error("Could not call varnish: " + e);
} finally {
if (conn != null) {
conn.disconnect();
}
}
}
Ma sto ottenendo:
08:56:31,813 ERROR [VarnishHandler] Could not call varnish: java.net.ProtocolException: Invalid HTTP method: PURGE
con l'arricciatura non c'è nessun problema:
ricciolo -I - X PURGE -H "Host: www.somehost.com" someurl
HTTP/1.1 404 Not in cache.
Server: Varnish
Content-Type: text/html; charset=utf-8
Retry-After: 5
Content-Length: 401
Accept-Ranges: bytes
Date: Thu, 18 Oct 2012 06:40:19 GMT
X-Varnish: 1611365598
Age: 0
Via: 1.1 varnish
Connection: close
X-Cache: MISS
Così come faccio è? Devo arricciare da Java o c'è qualche altra libreria che posso usare?
Grazie! Ho finito per estendere HttpMethodBase in apache.commons.httpclient – jakob
HttpMethodBase fa parte del progetto Commons HttpClient, che in realtà è contrassegnato come "end of life". Vedi di più qui http://hc.apache.org/httpclient-3.x/. se vuoi essere aggiornato dovresti usare HttpComponents HttpClient: http://hc.apache.org/httpcomponents-client-ga/index.html – uldall
Ok capisco! Ho invece implementato i httpcomponents. – jakob