Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does each sc-win32-status code indicate?

In my IIS log I see many instances of sc-bytes=0.

The time-taken for these entries are generally higher than average. I can see various values of sc-win32-status like 64, 22, 121, 1236 etc. Most of them have sc-status 200. Few have sc-win32-status 400.

Now I want to analyse each situation to figure out what happened in IIS. But this MSDN site gave only the error name and not a detail about when they can occur. I found a good article here which gave a good scenario description for sc-win32-status = 64 and sc-status = 200 with high time-taken.

I wanted a similar explanation for all sc-win32-status. Is there any site which gives details about scenario for sc-win32-status codes?

Else can anybody explain when do we get following values for sc-win32-status: 64, 22, 121, 1236.

like image 880
Souvik Basu Avatar asked Sep 29 '11 10:09

Souvik Basu


People also ask

What is sc win32 status?

sc-win32-status 64 means “The specified network name is no longer available.” After IIS has sent the final response to the client, typically it waits for an ACK message from the client.

What does SC status mean?

sc-status is a protocol status code from the appliance to a client. The usual results for sc-status are the following HTTP response codes: 200. 302. 403.

What is SC status 200?

These HTTP status codes indicate that the server successfully accepted the request. IIS 7.0 and later versions use the following success HTTP status codes: 200 - OK. The client request has succeeded.

What is time taken in IIS logs?

Time-taken field By default, IIS logs HTTP site activity by using the W3C Extended log file format. You can use IIS Manager to select the fields to include in the log file. One of these fields is the time-taken field. The time-taken field measures the length of time that it takes for a request to be processed.


1 Answers

The IIS Server status codes that you find in the logs are informational and are intended to provide what went wrong in certain requests/responses not why. So when you see an error code like 1326 that simply means that the username and password are not correct etc.

If you want to dig deeper and see why something happens in the background, tools like Debug Diagnostic Tool and Debugging Tools for Windows can help you out to perform analysis.

like image 72
TheBoyan Avatar answered Oct 12 '22 11:10

TheBoyan