|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.oreilly.servlet.HttpMessage | +--com.oreilly.servlet.HttpsMessage
A class to simplify HTTP/HTTPS client-server communication. It abstracts the communication into messages, which can be either GET or POST.
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.
Constructor Summary | |
HttpsMessage(java.lang.String szURL)
Constructs a new HttpsMessage that can be used to communicate with the servlet at the specified URL using HTTPS. |
Methods inherited from class com.oreilly.servlet.HttpMessage |
sendGetMessage, sendGetMessage, sendPostMessage, sendPostMessage, sendPostMessage, setAuthorization, setCookie, setHeader |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public HttpsMessage(java.lang.String szURL) throws java.lang.Exception
szURL
- the server resource (typically a servlet) with which
to communicate
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |