Multiple webservice calls
Posted
by Mujtaba Hassan
on Stack Overflow
See other posts from Stack Overflow
or by Mujtaba Hassan
Published on 2010-05-10T10:40:25Z
Indexed on
2010/05/10
10:44 UTC
Read the original article
Hit count: 249
I have a webservice (ASP.NET) deployed on a webfarm. A client application consumes it on daily basis. The problem is that some of its calls are duplicated (with difference of milliseconds). For example I have a function Foo(string a,string b). The client app calls this webmethod as Foo('test1','test2') once but my log shows that it is being called twice or sometimes 3 or 4 times randomly. Is this anything wrong with the webfarm or the code? Note that the webmethod has simple straighfarward insert and update statements.
© Stack Overflow or respective owner