Searched refs:url (Results 226 - 250 of 582) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/net/URLConnection/
H A DSetIfModifiedSince.java83 URL url = new URL ("http://localhost:"+port+"/index.html");
84 URLConnection urlc = url.openConnection ();
/openjdk7/jdk/src/share/demo/management/FullThreadDump/
H A DFullThreadDump.java83 JMXServiceURL url = new JMXServiceURL("rmi", "", 0, urlPath);
84 this.jmxc = JMXConnectorFactory.connect(url);
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DGetConnectionTest.java81 JMXServiceURL url = new JMXServiceURL(proto, null, 0);
82 client = JMXConnectorFactory.newJMXConnector(url, null);
H A DRMIConnectionIdTest.java43 JMXServiceURL url = new JMXServiceURL("rmi", null, 0);
45 JMXConnectorServerFactory.newJMXConnectorServer(url, null, mbs);
/openjdk7/jdk/test/sun/misc/ClassLoaderUtil/
H A DTest.java57 URL url = file.toURL();
58 URLClassLoader loader = new URLClassLoader (new URL [] {url});
/openjdk7/jdk/test/sun/net/ftp/
H A DB6427768.java112 URL url = new URL("ftp://user:passwd@localhost:" + port + "/foo.txt");
113 URLConnection con = url.openConnection();
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DRequestURI.java61 URL url = new URL("http://boo.bar.com/foo.html#section5");
62 HttpURLConnection uc = (HttpURLConnection) url.openConnection();
H A DStreamingRetry.java58 URL url = new URL("http://localhost:" + port + "/");
59 HttpURLConnection uc = (HttpURLConnection) url.openConnection();
/openjdk7/jdk/test/sun/net/www/http/KeepAliveStream/
H A DKeepAliveStreamClose.java85 URL url = new URL ("http://localhost:"+port);
86 URLConnection urlc = url.openConnection ();
H A DKeepAliveStreamCloseWithWrongContentLength.java83 URL url = new URL ("http://localhost:"+port);
84 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
/openjdk7/jdk/test/sun/net/www/protocol/file/
H A DEncodedMultiByteChar.java71 URL url = new URL(urlStr);
72 URLConnection conn = url.openConnection();
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DAsyncDisconnect.java61 URL url = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/test/");
62 uc = (HttpURLConnection)url.openConnection();
H A DB6296310.java67 URL url = new URL("http" , InetAddress.getLocalHost().getHostAddress(),
69 HttpURLConnection uc = (HttpURLConnection)url.openConnection();
H A DCloseOptionHeader.java88 URL url = new URL("http://localhost:" + ss.getLocalPort());
89 HttpURLConnection huc = (HttpURLConnection)url.openConnection();
H A DProtocolRedirect.java41 URL url = new URL(page);
42 HttpURLConnection conn = (HttpURLConnection)url.openConnection();
H A DStreamingOutputStream.java61 URL url = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/test/");
62 HttpURLConnection uc = (HttpURLConnection)url.openConnection();
H A DUserAgent.java91 URL url = new URL ("http://127.0.0.1:"+port);
92 URLConnection urlc = url.openConnection ();
H A DUserCookie.java60 URL url = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/test/");
61 HttpURLConnection uc = (HttpURLConnection)url.openConnection();
/openjdk7/jdk/src/share/classes/sun/print/
H A DImagePrinter.java48 ImagePrinter(URL url) { argument
50 image = ImageIO.read(url);
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java90 public NTLMAuthentication(boolean isProxy, URL url, PasswordAuthentication pw) { argument
93 url,
152 public static boolean isTrustedSite(URL url) { argument
153 return NTLMAuthCallback.isTrustedSite(url);
160 public String getHeaderValue(URL url, String method) { argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DRetryHttps.java150 URL url = new URL("https://localhost:" + serverPort+"/file1");
151 System.out.println("url is "+url.toString());
154 http = (HttpsURLConnection)url.openConnection();
162 url = new URL("https://localhost:" + serverPort+"/file2");
163 http = (HttpsURLConnection)url.openConnection();
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DUnexpectedNotifTest.java86 url = new JMXServiceURL("service:jmx:" + proto + "://");
88 server = JMXConnectorServerFactory.newJMXConnectorServer(url,
98 url = server.getAddress();
116 JMXConnector connector = JMXConnectorFactory.connect(url);
231 private static JMXServiceURL url; field in class:UnexpectedNotifTest
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpCapture.java112 private HttpCapture(File f, java.net.URL url) { argument
116 out.write("URL: " + url + "\n");
144 public static HttpCapture getCapture(java.net.URL url) { argument
151 String s = url.toString();
166 return new HttpCapture(fi, url);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DBasicAuthentication.java96 public BasicAuthentication(boolean isProxy, URL url, String realm, argument
99 AuthScheme.BASIC, url, realm);
126 public BasicAuthentication(boolean isProxy, URL url, String realm, argument
129 AuthScheme.BASIC, url, realm);
159 public String getHeaderValue(URL url, String method) { argument
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java91 public static boolean isTrustedSite(URL url) { argument
92 return NTLMAuthCallback.isTrustedSite(url);
124 public NTLMAuthentication(boolean isProxy, URL url, PasswordAuthentication pw) { argument
127 url,
186 public String getHeaderValue(URL url, String method) { argument

Completed in 1188 milliseconds

1234567891011>>