asp.net connection

asp.net connection

  If your asp.net web application is communicating with third party API for posting or getting information and you encountered with
an error say unable to connect remote server, probable you have reached the max connection that your web application can setup with third party API.
In this scenario you can manually configure your web.config MacConnection settings as shown in below box.

<system.net>
  <connectionManagement>
   <add address="*" maxconnection="1000000" />
  </connectionManagement>
 </system.net>

Read more about client and server communication here
http://www.revenmerchantservices.com/post/2010/01/25/client-server-communication.aspx

Satalaj

      

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Comments