0
Good night.
I have an application that is integrated with over a hundred other applications through webservices, where I use a lot of threads for communication between them. This my application is used by other applications through a dll today. I’m trying to migrate this dll to a service, so I created a WCF service (I’ve tried asmx tbm). The problem is that as the requests enter this service starts to increase the response timeout a lot until starting to timeout everything. What is strange is that the hardware (memory and cpu) are below 30% consumption, so I believe the problem is the threads launched, or some iis configuration or wcf/asmx. I was wondering if anyone’s been through this or have any idea how to fix it.
Thank you.
Nikolas, how are the values of
InstanceContextMode
,ConcurrencyMode
and the values ofThrottling
, also would like to know if your client applications perform simultaneous requests internally (the same application performing two or more requests at the same time).– Tobias Mesquita
I’ve done several tests with these parameters. Yes, it performs hundreds of requests.
– NikolasKraschowetz