O que diabos é um método OPTIONS em um log da web do IIS 7.5?

3

Eu sei o que é um GET e um POST, mas é quase impossível para o Google a palavra OPTIONS. Aqui está o que eu vejo (eu deletei todas as coisas no final) de cada um:

11/23/11    0:02:13 10.100.0.14         GET       /CUpdate2.cshtml  _=1322006533495
11/23/11    0:02:13 10.200.0.10         OPTIONS   /AssignmentCount  _=1322006576798
11/23/11    0:02:13 10.200.0.10         GET       /media/faxSound.wav   -
11/23/11    0:02:13 10.200.0.10         GET       /Star/StarUpdates _=1322006578729
11/23/11    0:02:13 10.100.0.10         GET       /CUpdate2.cshtml  _=1322006533268
    
por Knox 23.11.2011 / 17:48

1 resposta

6

Confira a seção 9.2 de esta especificação W3 :

The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI. This method allows the client to determine the options and/or requirements associated with a resource, or the capabilities of a server, without implying a resource action or initiating a resource retrieval.

Esta postagem no blog também vale a pena ser lida.

    
por 23.11.2011 / 17:51