473,395 Members | 2,446 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

ASP.Net intermittent slow response

Our production system developed a problem over the Thanksgiving weekend.
Wednesday evening... everything is fine. First thing Monday morning, we
started receiving complaints about the system being "slow".

I found that the web application will clip along without a problem and then,
for no apparent reason, it will "hang" for 15 to 30 seconds before returning
the page to the client. It appears that the http request is submitted to the
server and it "sits" on it. After it's released, the SQL query executes and
the page returns. There are no messages appearing in the windows event logs
(application, security, system), and I do not beleive that the worker
process is being recycled because users are not losing session state
(InProc).
I theorize that the problem is with ASP.Net because:

SQL Profiler shows normal response from SQL Server (once the query is
executed)
Evaluations of the network performance show no problems
Classic ASP pages are fine

The environment is:

Corporate intranet only (Windows authentication)
Win2k Server SP4
IIS 5.0
ASP.Net 1.0/ASP.Net 1.1 side-by-side (all apps are currently configured
to use 1.0)
Some classic ASP remains in the application
SQL Server 2000 SP3

I've tried a SQL Server restart/iisreset as well as a server reboot. I've
excluded inetpub\wwwroot from our antivirus (MacAfee) real-time monitor.
I've also tried using the application trace tool (trace.axd) but it doesn't
really show me anything useful for this situation.

This is severly hampering productivity for my users, but I don't know what
to do next to try and trace the problem. Is there a known issue that I've
not been able to track down? Are there any other tools out there that may
help me to see what's going on with the ASP.Net worker process.

Thanks in advance.
Nov 18 '05 #1
4 5197
Is all of this running on one box? If so, that could definately cause
slowdowns....
"Aaron McAlpine" <ti******@hotmail.com> wrote in message
news:tK********************@comcast.com...
Our production system developed a problem over the Thanksgiving weekend.
Wednesday evening... everything is fine. First thing Monday morning, we
started receiving complaints about the system being "slow".

I found that the web application will clip along without a problem and then, for no apparent reason, it will "hang" for 15 to 30 seconds before returning the page to the client. It appears that the http request is submitted to the server and it "sits" on it. After it's released, the SQL query executes and the page returns. There are no messages appearing in the windows event logs (application, security, system), and I do not beleive that the worker
process is being recycled because users are not losing session state
(InProc).
I theorize that the problem is with ASP.Net because:

SQL Profiler shows normal response from SQL Server (once the query is
executed)
Evaluations of the network performance show no problems
Classic ASP pages are fine

The environment is:

Corporate intranet only (Windows authentication)
Win2k Server SP4
IIS 5.0
ASP.Net 1.0/ASP.Net 1.1 side-by-side (all apps are currently configured to use 1.0)
Some classic ASP remains in the application
SQL Server 2000 SP3

I've tried a SQL Server restart/iisreset as well as a server reboot. I've
excluded inetpub\wwwroot from our antivirus (MacAfee) real-time monitor.
I've also tried using the application trace tool (trace.axd) but it doesn't really show me anything useful for this situation.

This is severly hampering productivity for my users, but I don't know what
to do next to try and trace the problem. Is there a known issue that I've
not been able to track down? Are there any other tools out there that may
help me to see what's going on with the ASP.Net worker process.

Thanks in advance.

Nov 18 '05 #2
It is on one box, but it's been that way for over a year now. The problem
just started yesterday.

"Scot Kelly" <sc********@hotmail.com> wrote in message
news:uF**************@TK2MSFTNGP10.phx.gbl...
Is all of this running on one box? If so, that could definately cause
slowdowns....
"Aaron McAlpine" <ti******@hotmail.com> wrote in message
news:tK********************@comcast.com...
Our production system developed a problem over the Thanksgiving weekend.
Wednesday evening... everything is fine. First thing Monday morning, we
started receiving complaints about the system being "slow".

I found that the web application will clip along without a problem and

then,
for no apparent reason, it will "hang" for 15 to 30 seconds before

returning
the page to the client. It appears that the http request is submitted to

the
server and it "sits" on it. After it's released, the SQL query executes

and
the page returns. There are no messages appearing in the windows event

logs
(application, security, system), and I do not beleive that the worker
process is being recycled because users are not losing session state
(InProc).
I theorize that the problem is with ASP.Net because:

SQL Profiler shows normal response from SQL Server (once the query is executed)
Evaluations of the network performance show no problems
Classic ASP pages are fine

The environment is:

Corporate intranet only (Windows authentication)
Win2k Server SP4
IIS 5.0
ASP.Net 1.0/ASP.Net 1.1 side-by-side (all apps are currently

configured
to use 1.0)
Some classic ASP remains in the application
SQL Server 2000 SP3

I've tried a SQL Server restart/iisreset as well as a server reboot. I've excluded inetpub\wwwroot from our antivirus (MacAfee) real-time monitor.
I've also tried using the application trace tool (trace.axd) but it

doesn't
really show me anything useful for this situation.

This is severly hampering productivity for my users, but I don't know what to do next to try and trace the problem. Is there a known issue that I've not been able to track down? Are there any other tools out there that may help me to see what's going on with the ASP.Net worker process.

Thanks in advance.


Nov 18 '05 #3
For anyone interested:

My problem ended up being related to Windows authentication. Our company is
in the process of flattening multiple domains into a single domain using
Active Directory. The server was on the old domain and moving it to the new
domain solved the problem. Although I don't know what the actual problem
was, it was definitely an authentication issue. Apparently the slowness was
a timeout while authenticating the user. I proved it by building two sample
applications. One had authentication mode = "None" and the other was set to
"Windows". The app using Windows authentication had the response time issue
and the other did not.

I hope this helps someone that may be having this frustrating problem.
Nov 18 '05 #4
Hi Aaron,

Thanks for taking the time to post this. When one has lost time on an issue,
it is easier just to move on and catch up.

I'm sure someone will find this in Google one day and silently thank you.

"Aaron McAlpine" <ti******@hotmail.com> wrote in message
news:V4********************@comcast.com...
For anyone interested:

My problem ended up being related to Windows authentication. Our company is in the process of flattening multiple domains into a single domain using
Active Directory. The server was on the old domain and moving it to the new domain solved the problem. Although I don't know what the actual problem
was, it was definitely an authentication issue. Apparently the slowness was a timeout while authenticating the user. I proved it by building two sample applications. One had authentication mode = "None" and the other was set to "Windows". The app using Windows authentication had the response time issue and the other did not.

I hope this helps someone that may be having this frustrating problem.

Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Mike H | last post by:
I was wondering if any one can help me out, I am literally tearing my hair out with an availability search I have written. Previously I was selecting all the records from two databases but...
1
by: Steve D | last post by:
We are using a UDB 8.1 client on a Windows 2003 server, standard edition. We are seeing slow connection response times (27 seconds) on the first attempt and second attempt is great (< 1 second). ...
5
by: Ram | last post by:
Hi After deploying a simple web application to the production environment, I see that hwne I launch my app's url it takes a while to load the home page.(it doesnt do anything complex. A pretty...
1
by: dk | last post by:
Any idea why the response time is slow when running a system tray app when viewing the properties form? There is one primary loop and a timer control which executes every 3minutes. Is having the...
2
by: jim.clifford | last post by:
Hello. I have a slow response with a system that I am setting up. The OS is Win 2000 Server with SQL Server 2000. My first execution of the SQL procedure is slow (about 40 seconds), while the...
2
by: Roseanne | last post by:
We are experiencing very slow response time in our web app. We run IIS 6 - windows 2003. I ran iisstate. Here's what I got. Any ideas?? Opened log file 'F:\iisstate\output\IISState-812.log'...
3
by: nonstopkaran | last post by:
hey i am handling a small application, it is running well. but very rarely it hangs... (i.e) loggin page itself will take more than 10m and the response will be very very slow. config: ...
2
by: markszlazak | last post by:
I'm a relatively slow response of table cells changing their background color with mouseover/our in IE6 (Win 2K) but the response is fine (fast) in Firefox. Why? The code is below. Sorry about the...
0
by: selvialagar | last post by:
i did a program in vc++.net for ICMP communication using sockets.But when i execute it i received a very slow response...is there any configuration to be made on the server..or any other thing?.. i...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.