vote up 2 vote down star

If the same Silverlight application is running in two web browser tabs, does each tab use a separate application domain?

If you know where Microsoft explicitly provides this information, please include a reference.

flag

3 Answers

vote up 0 vote down

To clarify Corbin's answer:

Its one AppDomain per instance of the Silverlight control, so that two Silverlight apps on the same page are segmented into AppDomains. Depending on the browser, there may be separations between tabs (e.g. IE8 and Chrome uses separate processes, whereas Firefox and IE7 do not). The only way to get two Silverlight instances to talk with each other is on the same page and to communicate through the HTML Bridge.

link|flag
vote up 0 vote down

The browser is completely in control of the tabs, and should keep them separate for obvious security reasons.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.