< prev index next >

test/sun/net/www/protocol/http/ResponseCacheStream.java

Print this page




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 6262486

  27  * @library ../../httptest/
  28  * @build HttpCallback TestHttpServer ClosedChannelList HttpTransaction
  29  * @run main/othervm -Dhttp.keepAlive=false ResponseCacheStream
  30  * @summary COMPATIBILITY: jagex_com - Monkey Puzzle applet fails to load
  31  */
  32 
  33 import java.net.*;
  34 import java.io.*;
  35 import java.util.*;
  36 
  37 public class ResponseCacheStream implements HttpCallback {
  38 
  39     void okReply (HttpTransaction req) throws IOException {
  40         req.setResponseEntityBody ("Hello, This is the response body. Let's make it as long as possible since we need to test the cache mechanism.");
  41         req.sendResponse (200, "Ok");
  42             System.out.println ("Server: sent response");
  43         req.orderlyClose();
  44     }
  45 
  46     public void request (HttpTransaction req) {




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 6262486
  27  * @modules java.base/sun.net.www
  28  * @library ../../httptest/
  29  * @build HttpCallback TestHttpServer ClosedChannelList HttpTransaction
  30  * @run main/othervm -Dhttp.keepAlive=false ResponseCacheStream
  31  * @summary COMPATIBILITY: jagex_com - Monkey Puzzle applet fails to load
  32  */
  33 
  34 import java.net.*;
  35 import java.io.*;
  36 import java.util.*;
  37 
  38 public class ResponseCacheStream implements HttpCallback {
  39 
  40     void okReply (HttpTransaction req) throws IOException {
  41         req.setResponseEntityBody ("Hello, This is the response body. Let's make it as long as possible since we need to test the cache mechanism.");
  42         req.sendResponse (200, "Ok");
  43             System.out.println ("Server: sent response");
  44         req.orderlyClose();
  45     }
  46 
  47     public void request (HttpTransaction req) {


< prev index next >