I’m building a Silverlight application using WCF service for communication. When I run multiple instances of Silverlight application does it also run multiple instances of service library or not? Also I want to know, is it running multiple instances of Silverlight if I copy the application URL from browser and paste it into a new tab. Thank you in advance for your answers.
I’m building a Silverlight application using WCF service for communication. When I run multiple
Share
No, because Silverlight and your service are two differents applications. Silverlight runs on client whereas your service is hosted ins IIS. As a website, the service will expose data for all clients.
Every instance of Silverlight is sandboxed. Even multiples of the same Silverlight app in the same Browser page are duplicate instances and nothing is shared. They are therefore not even shared between browser tabs.