RedBottleSanitizer
RedBottleSanitizer

Reputation: 93

Silverlight application hosted in ASP.Net

I have hosted Silverlight application in ASP.Net page.

We make use of a WCF Service to update/bind data on the controls.

When we deployed the application on load balanced enviroment, it worked for all our test cases,even when tested for the same user in different machines.

Will it fail?

We haven't done any code changes when moving from single server to multiserver environment (yes the URLs for the service reference are the same after the load balancing - adding new servers).

Is it working because the client code is loaded on the browser machine and we don't need to perform session management?

Upvotes: 0

Views: 145

Answers (1)

EtherDragon
EtherDragon

Reputation: 2698

Session state with a Silverlight application is a little magical. Usually, in ASP.Net the session state is stored in the browser and submitted with the form; it is retransmitted each time the form is submitted.

Since Silverlight doesn't do form submits (it can, but noone ever uses it that way) - it goes through WCF/RIA - the session state is loaded once and maintained in the browser, allowing the Silverlight app to access it on demand.

Upvotes: 1

Related Questions