Home | History | Annotate | Download | only in certpath

Lines Matching defs:con

223             HttpURLConnection con = (HttpURLConnection)url.openConnection();
224 con.setConnectTimeout(CONNECT_TIMEOUT);
225 con.setReadTimeout(CONNECT_TIMEOUT);
226 con.setDoOutput(true);
227 con.setDoInput(true);
228 con.setRequestMethod("POST");
229 con.setRequestProperty
231 con.setRequestProperty
233 out = con.getOutputStream();
238 con.getResponseCode() != HttpURLConnection.HTTP_OK) {
239 debug.println("Received HTTP error: " + con.getResponseCode()
240 + " - " + con.getResponseMessage());
242 in = con.getInputStream();
243 int contentLength = con.getContentLength();