[1888] in java-interest
POST URL
daemon@ATHENA.MIT.EDU (Christian Dreke)
Tue Sep 19 15:49:21 1995
Date: Tue, 19 Sep 1995 12:42:31 -0400 (EDT)
From: Christian Dreke <cd4v@server.cs.virginia.edu>
To: java-interest@java.sun.com
I am still not sure how the java team envisioned creating POST URL's with
the JDK. My guess is that URLConnection.setRequestProperty and
URLConnection.getRequestProperty can be used. However, they don't seem to
be implemented yet. Source from URLConnection.java is shown below:
public void setRequestProperty(String key, String value) {
if (connected)
throw new IllegalAccessError("Already connected");
}
public String getRequestProperty(String key) {
if (connected)
throw new IllegalAccessError("Already connected");
return null;
}
Q: Does anybody know how to create a POST URL with the pre-beta release ?
Chris.
University of Virginia
Networks Lab
http://www.cs.virginia.edu/~cd4v/index.html
-
Note to Sun employees: this is an EXTERNAL mailing list!
Info: send 'help' to java-interest-request@java.sun.com