Error Message: Error 406, No Acceptable Objects Were Found (251215)



The information in this article applies to:

  • Microsoft Active Server Pages
  • 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);
				

Modification Type:MajorLast Reviewed:6/24/2004
Keywords:kberrmsg kbpending kbprb KB251215