Ask a Question related to ASP.NET Web Services, Design and Development.
-
inho yi #1
aspnet_wp uses up 98~99% of CPU power
Hi
I'm running a webservice that acts as a server for
instance messanger. The problem I encounter is that when I
run the server for several days, suddenly aspnet_wp.exe
process uses up 98~99% of all CPU power.
I'm using one thread (created through new ThreadStart()
etc) to listen to all the incoming TCP connections, and I
suspect that this thread causes the problem. Any known
problem on thread safety of accepting incoming TCP
connections in one of the thread of aspnet_wp ?
inho yi Guest
-
aspnet_wp.exe
Hi, I am getting these errors from Event Viewer - Application: 1. aspnet_wp.exe could not be launched because the username and/or password... -
aspnet_wp is missing
Hello! I am working on asp.net web service and want to debug it. For this purpose I go to Debug>> Processes and see the availaible processess. I... -
aspnet_wp,exe
The .Net garbage collector runs at times and will free memory as necessary. It has no logical pattern though. I wouldn't worry about it. It will... -
aspnet_wp.exe could not be started
After installing Framework 1.1, I cannot run any of my ASP.NET applications. Actually, while installing Framework 1.1, I also installed recommended... -
aspnet_wp.exe could not be launched
Hi Guys, aspnet_wp.exe could not be launched because the username and/or password supplied in the processModel section of the config file are... -
Dino Chiesa [Microsoft] #2
Re: aspnet_wp uses up 98~99% of CPU power
If I were building this, I would build a "Service" (= Windows Service) to
handle the incoming TCP connections.
If you also want a web service, maybe for some admin operations, I would
make that a separate ASMX.
Then if they need to communicate, use .NET remoting between them.
I would not listen for incoming connections in a thread started by a web
service.
-D
"inho yi" <anonymous@discussions.microsoft.com> wrote in message
news:074101c3d5a9$6d3a4330$a401280a@phx.gbl...> Hi
>
> I'm running a webservice that acts as a server for
> instance messanger. The problem I encounter is that when I
> run the server for several days, suddenly aspnet_wp.exe
> process uses up 98~99% of all CPU power.
>
> I'm using one thread (created through new ThreadStart()
> etc) to listen to all the incoming TCP connections, and I
> suspect that this thread causes the problem. Any known
> problem on thread safety of accepting incoming TCP
> connections in one of the thread of aspnet_wp ?
Dino Chiesa [Microsoft] Guest



Reply With Quote

