From: Ken Coar Date: Tue, 6 May 1997 15:12:35 +0000 (+0000) Subject: Added semi-FAQ about Java JDX 1.? and Apache's HTTP/1.1 headers. X-Git-Tag: APACHE_1_2b11~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad1aef1091d4f7fafc26e572f57ee775cddfcaed;p=apache Added semi-FAQ about Java JDX 1.? and Apache's HTTP/1.1 headers. I suspect this one's going to come up a *lot* once 1.2 is formally released and a substantial number of those 400,000 servers out there upgrade.. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78116 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index 57169fd061..270bc99727 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -8,7 +8,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.55 $ ($Date: 1997/05/05 01:30:04 $) + $Revision: 1.56 $ ($Date: 1997/05/06 15:12:35 $)

The latest version of this FAQ is always available from the main @@ -170,6 +170,9 @@

  • How do I add browsers and referrers to my logs?
  • +
  • Why do Java applets and applications not work + with documents on my Apache server? +
  • @@ -1338,6 +1341,30 @@ Logfiles".


    + +
  • + Why do Java applets and applications not work + with documents on my Apache server? + +

    + The Java Development Kit (JDK) libraries versions 1.0.2 and 1.1 do not + correctly interpret the "HTTP/1.1" response + header that Apache 1.2 sends. Instead, if they don't see an exact + match for "HTTP/1.0", they assume the headers + are part of the document content. +

    +

    + This is a known problem, and it has been reported to Sun's JavaSoft + unit. In the meantime, Apache 1.2 servers can work around this by + adding the following lines to their configuration files: +

    +
    +
    BrowserMatch HotJava/1. force-response-1.0 +
    + BrowserMatch Java1. force-response-1.0
    +
    +
    +