Groups | Blog | Home
all groups > dotnet web services enhancements > may 2006 >

dotnet web services enhancements : WSE application hanging when hit with many method calls


AvailBrad
5/31/2006 10:55:02 AM
I am developing an app that uses Webservice (WSE 2.0) methods while parsing
data structures. When I send in a large amount of data (a new message every
..45 seconds, total of 203 messages) the application seems to stop working.
When it starts, most of the messages are received, then after about 50
messages are sent, the application stops sending soap methods all together.
The application itself is still running, and is capbable of receiving data,
but all soap method calls do not get delievered.

I noticed after upgrading to SP3 more method calls were allowed, but it
still seems to reach this unusable state when I hit it with more data. Does
anyone have any ideas of what I can do to fix this?

Thanks,
AvailBrad
5/31/2006 1:03:02 PM
I should clarify that his is a Windows Service application and not a web
application. It is running on Server 2003.

[quoted text, click to view]
Gaurav Vaish (www.EduJini.IN)
6/1/2006 1:18:30 AM
[quoted text, click to view]

Which OS are you using?
What's the version of IIS?

It has, as I think, less to do with WSE than to do with OS/IIS.

btw, ASP.Net has an "appRequestQueueLimit" of 100.

You may want to update this entry in web.config:

<configuration>
<system.web>
<httpRuntime appRequestQueueLimit="10000" />
</system.web>
</configuration>


--
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://webservices.edujini.in
-------------------

Gaurav Vaish (www.EduJini.IN)
6/1/2006 1:21:14 AM
[quoted text, click to view]

Check out this info... may be of some help:
http://support.microsoft.com/default.aspx?scid=kb;en-us;810886

--
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://www.edujini.in
http://webservices.edujini.in
-------------------

AvailBrad
6/1/2006 3:11:02 PM
Thanks, I think I figured out what my problem was. I had an asynchronous
call inside of my webservice method and it was taking longer to complete than
I had thought. I appreciate the suggestions.

-Brad

[quoted text, click to view]
Gaurav Vaish (www.EduJini.IN)
6/2/2006 12:00:00 AM
[quoted text, click to view]

I'll note this issue as a "troubleshoot" pointer.
Thanks for letting us know what are probable issues / problem areas. :-)


--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.org
http://www.edujini.in | http://webservices.edujini.in
-------------------

Gaurav Vaish (www.EduJini.IN)
6/2/2006 12:09:39 AM
The URL from Microsoft Support should help...
Here's it again...
http://support.microsoft.com/default.aspx?scid=kb;en-us;810886

It applies to 2003 Server as well.


--
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://webservices.edujini.in
-------------------


[quoted text, click to view]

AddThis Social Bookmark Button