All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----com.oreilly.servlet.HttpMessage | +----com.oreilly.servlet.HttpsMessage
It can be used like this:
This class extends the HttpMessage class written by Jason Hunter at servlets.com. The HttpMessage class can be found in the com.oreilly.servlet package found at www.servlets.comHttpsMessage msg = new HttpsMessage("https://[some server]"); Properties props = new Properties(); props.put("name", "value"); InputStream in = msg.sendGetMessage(props);
For information see http://www.javaworld.com/javatips/jw-javatip96.html Note this class works with JDK 1.2 or later only.
public HttpsMessage(String szURL) throws Exception
All Packages Class Hierarchy This Package Previous Next Index