<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>ASP.NET AJAX Networking and Web Services</title><link>http://forums.asp.net/1009.aspx</link><description>Discuss your issues with the client and server interaction in AJAX using web services and other transports used by AJAX</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: My webservice quits responding...</title><link>http://forums.asp.net/thread/3306321.aspx</link><pubDate>Tue, 21 Jul 2009 14:30:30 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3306321</guid><dc:creator>raxitr</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3306321.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3306321</wfw:commentRss><description>&lt;p&gt;I would suggest using fiddler to intercept http request being made&amp;nbsp; &lt;a href="http://www.fiddler2.com/fiddler2/"&gt;http://www.fiddler2.com/fiddler2/&amp;nbsp; &lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hopefully by looking at the raw http requests you may figure out whats going wrong..!!!&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;- Raxit&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: My webservice quits responding...</title><link>http://forums.asp.net/thread/3303821.aspx</link><pubDate>Mon, 20 Jul 2009 13:38:59 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3303821</guid><dc:creator>Mike426</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3303821.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3303821</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Can you post some code for the web page that calls your web service?&amp;nbsp; It looks like the problem is confined to the user session for the interactive web page - like you mentioned, it may not have anything to do with your web service.&amp;nbsp; In IIS, have you configured your application pool for multiple worker processes, or is it just set to one?&lt;/p&gt;</description></item><item><title>Re: My webservice quits responding...</title><link>http://forums.asp.net/thread/3300367.aspx</link><pubDate>Fri, 17 Jul 2009 18:26:30 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3300367</guid><dc:creator>BenHines</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3300367.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3300367</wfw:commentRss><description>&lt;p&gt;OK.&amp;nbsp; Here&amp;#39;s some additional information... I decided to take a look at the IIS log to see if I could get a hint and what I&amp;#39;m seeing is that once the problem starts (i.e. unresponsive web service) IIS is simply not receiving requests.&amp;nbsp; In my test environment, I&amp;#39;m only dealing with a single client for my web site.&amp;nbsp; So, it&amp;#39;s pretty easy to identify that requests are not getting through.&amp;nbsp; It looks like this may not be due to my web service, but because GETs and POSTs are not getting to the server.&amp;nbsp; &lt;/p&gt;&lt;p&gt;Any idea on how I might debug what is happening?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: My webservice quits responding...</title><link>http://forums.asp.net/thread/3298014.aspx</link><pubDate>Thu, 16 Jul 2009 18:35:17 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3298014</guid><dc:creator>BenHines</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3298014.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3298014</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I&amp;#39;m still stuck on this one.&amp;nbsp; One thing I don&amp;#39;t understand is that this problem only happens in IIS and never in the development web server.&amp;nbsp; Any clues on what the difference may be?&lt;/p&gt;&lt;p&gt;-Ben&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: My webservice quits responding...</title><link>http://forums.asp.net/thread/3281590.aspx</link><pubDate>Wed, 08 Jul 2009 15:25:31 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3281590</guid><dc:creator>Mike426</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3281590.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3281590</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;If the web service responds when you open a new browser window, then the problem appears to be specific to the session of the web page.&amp;nbsp; I&amp;#39;m guessing it may not have anything to do with your web service.&amp;nbsp; It&amp;#39;s good that you can reproduce the problem when you want to.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Can you post the code that does the web service call?&amp;nbsp; Also, can you confirm that all of the code behind your button click fires except the call to the web service?&amp;nbsp; You might just need to make sure you&amp;#39;re cleaning everything up in between web service calls.&amp;nbsp; You could try putting the call to the web service in a separate class that implements IDisposable.&amp;nbsp; When you want to make the web service call, get a new instance of the class you just created, make the web service call in a class method, pass the results back from your class method to the code behind the button click, then dispose of your class instance.&lt;/p&gt;</description></item><item><title>Re: My webservice quits responding...</title><link>http://forums.asp.net/thread/3273691.aspx</link><pubDate>Fri, 03 Jul 2009 14:35:40 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3273691</guid><dc:creator>BenHines</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3273691.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3273691</wfw:commentRss><description>&lt;p&gt;Hi Mike,&lt;/p&gt;&lt;p&gt;I added some logging to output the process name and ID on every call to my web service.&amp;nbsp; I did the following experiment:&lt;/p&gt;&lt;p&gt;- Fire up my web page &lt;/p&gt;&lt;p&gt;- Continually press the button that causes the call to my web service until it becomes unresponsive&lt;br /&gt;&lt;/p&gt;&lt;p&gt;- Leaving the old browser up, open a new browser and go to the same page&lt;/p&gt;&lt;p&gt;- Press the button on that page until it becomes unresponsive&lt;/p&gt;&lt;p&gt;The process name (aspnet_wp) and id (2920) remained constant through the entire experiment.&amp;nbsp; I&amp;#39;m also logging when a session starts and ends.&amp;nbsp; So, I was able to see both sessions startup.&amp;nbsp; After the first browser became unresponsive (at least the web service did), the button (and hence the web service call) worked fine in the second browser.&amp;nbsp; One thing I noticed was that the service calls became unresponsive in the second browser much faster than in the first one.&amp;nbsp; &lt;/p&gt;&lt;p&gt;As a quick experiment, I decided to put some javascript alert messages in my client-side javascript button handler just to verify that the javascript is getting called (and hence the web service call is being attempted) and this is definitely the case.&amp;nbsp; The client-side javascript is always called.&lt;/p&gt;&lt;p&gt;Let me know if this gives you any clues.&amp;nbsp; I know it doesn&amp;#39;t give me any.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: My webservice quits responding...</title><link>http://forums.asp.net/thread/3272605.aspx</link><pubDate>Fri, 03 Jul 2009 04:06:53 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3272605</guid><dc:creator>Mike426</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3272605.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3272605</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Since your web service performs some logging, can you have it log the local process id (i.e. the w3wp.exe or aspnet_wp.exe process hosting the web service)?&amp;nbsp; Check if it&amp;#39;s the same process id every time, or if it changes as worker processes are recycled.&amp;nbsp; Basically, we just want to see if the IIS worker process getting recycled has anything to do with your web service seemingly not getting called.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you launch your web page that has the button on it in a new browser window after the web service seems to stop responding, can you then get a response from your web service from the page in the new browser?&amp;nbsp;&lt;/p&gt;</description></item><item><title>My webservice quits responding...</title><link>http://forums.asp.net/thread/3272247.aspx</link><pubDate>Thu, 02 Jul 2009 20:42:59 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3272247</guid><dc:creator>BenHines</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3272247.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1009&amp;PostID=3272247</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m really stuck on this one.&amp;nbsp; I have a web&amp;nbsp;page that uses an AJAX web service that I wrote.&amp;nbsp; Based on a user clicking on a button, a call is made to my web service method and data is returned.&amp;nbsp; This works fine for a (seemingly random) number of calls to the method.&amp;nbsp; Then the web method quits responding.&amp;nbsp; My web service writes to a log file.&amp;nbsp; So, I put a log statement at the beginning of the web method in the code-behind file.&amp;nbsp; I see the message in the log until the service becomes unresponsive, which means that the web method isn&amp;#39;t getting called.&amp;nbsp; I have no idea why this is happening.&amp;nbsp; I can&amp;#39;t find any indication of an error or anything... not event in the IIS log.&lt;/p&gt;
&lt;p&gt;I thought it had something to do with using UpdatePanels on my web page.&amp;nbsp; The UpdatePanels seem to aggravate the problem, but don&amp;#39;t seem to be the cause.&amp;nbsp; It seems like there is some limit to the amount of data or number of calls my page is allowed to make.&amp;nbsp; I&amp;#39;m really, really stumped on this one.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;I&amp;#39;ve done some looking around various forums and have seen evidence of the same problem, but that had something to do with .NET framework 1.1.&amp;nbsp; I&amp;#39;m using .NET framework 3.5 (i think) and IIS 5.1.&amp;nbsp; Here&amp;#39;s another strange thing...&amp;nbsp; If I run the same web app using the Visual Studio development web server, I don&amp;#39;t see the bug (or at least it doesn&amp;#39;t happen within a low number calls to the service).&lt;/p&gt;
&lt;p&gt;Any help would be greatly appreciated!&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ben&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>