Questions tagged [http.sys]

http.sys is Microsoft Windows HTTP protocol stack file

The HTTP listener is implemented as a kernel-mode device driver called the HTTP protocol stack (HTTP.sys). IIS uses HTTP.sys, which is part of the networking subsystem of the Windows operating system, as a core component.
When IIS runs in worker process isolation mode, HTTP.sys listens for requests and queues those requests in the appropriate queue. Each request queue corresponds to one application pool. An application pool corresponds to one request queue within HTTP.sys and one or more worker processes.

If a defective application causes the user-mode worker process to terminate unexpectedly, HTTP.sys continues to accept and queue requests, provided that the WWW service is still running, queues are still available, and space remains in the queues.

97 questions
0
votes
1 answer

http.sys and winhttp.dll have SSL/TLS "session resumption" and "false start"?

I have an application written in Delphi which attaches client-side winhttp.dll, on server side it uses mORMot (SOA/ORM client-server library which attaches "http.sys" for web server functionality). The next step will be also a web-client written in…
emk
  • 11
  • 1
  • 3
0
votes
1 answer

Self-hosted WCF app using http.sys returns HTTP 503 for path not found

This question was originally targeted at the Azure Service Fabric because that is my deployment model. But it has become clear to me that this is a WCF issue so I am rewording it to better suit that. The original text of the question is highlighted…
BrettRobi
  • 3,793
  • 7
  • 40
  • 64
0
votes
0 answers

How to fix access rights to run a service on localhost?

When I try to run my WCF Service on a local host on a console application it shows the following exception for me: Could not register URL http://+:8080/. Your process does not have access rights to this namespace I had this service working before…
Scarnet
  • 738
  • 2
  • 11
  • 36
0
votes
1 answer

HttpListener standalone app works on 2008, fails on 2012

I have a standalone app that uses HttpListener that works great on Server 2008 but fails miserably on 2012. Each time I attempt to connect, I get some variety of:
joelc
  • 2,687
  • 5
  • 40
  • 60
0
votes
1 answer

HTTP_LOG_FIELDS_DATA and Method logging

I'm hitting a snag: the HTTP_LOG_FIELDS_DATA has three fields to specify the Method: USHORT MethodLength; PCHAR Method; HTTP_VERB MethodNum; But AFAICT MethodNum is ignored (any value comes up as '-' in the log). MethodLength & Method work…
Eric Grange
  • 5,931
  • 1
  • 39
  • 61
0
votes
0 answers

High volume ASP page calling an ASP.NET to leverage cache results in 503 Service Unavailable

A high volume classic ASP page is using an ASP.NET page to return xml data, taking advantage of .NET caching capabilities. The cache being used in the .net page is the Context Cache. Recently after 1 year of running smoothly - IIS7 starts responding…
0
votes
1 answer

Can you use SQL Server Reporting Services, SSRS 2008, to host an intranet site?

The project I'm on has a single server running both the SQL Server 2008 R2 database and the SSRS Reporting Services. Can I utilize SSRS to host a simple intranet site that would allow users to modify reference table data via a web app that I…
baronnoraz
  • 548
  • 2
  • 5
  • 11
1 2 3 4 5 6
7