Microsoft KB Archive/251215

From BetaArchive Wiki

Article ID: 251215

Article Last Modified on 6/24/2004



APPLIES TO

  • Microsoft Active Server Pages 4.0
  • Microsoft Internet Information Services 5.0
  • Microsoft Windows Internet Services (WinInet)



This article was previously published under Q251215

SYMPTOMS

When you use the Accept-Language header and the file name specified does not include the file extension, the following error message occurs:

Error 406, No acceptable objects were found.

CAUSE

Because no other "Accept:" headers are specified, the Web server determines that the client can only handle text/plain and text/html content types. Because the document has no extension, the type is octet/stream, which causes the error message to be returned. This is by design.

RESOLUTION

Include the file extension in the request, so that the content type can be determined.

MORE INFORMATION

Steps to Reproduce Behavior

The following portion of code causes the Error 406:

hHandle = HttpOpenRequest(hInetConnect, "GET", "/document");
HttpAddRequestHeaders(hHandle "Accept-Language:en-us\r\n");
HttpSendRequest (hHandle);
InternetReadFile (hHandle, lpBuffer);
                


Additional query words: IIS 5 ASP http akz

Keywords: kberrmsg kbprb kbpending KB251215