I have developed a Silverlight Business Application using Prism that requires a user to log in before they can access the main application. The Silverlight application is hosted on IIS 7.5 (port *:8086) and makes calls to WCF services hosted on the same instance of IIS 7.5 (port *:8069)
When I access the Silverlight application via http://localhost:8086
all works as expected (i.e. after successful authentication, prism modules are loaded and views switched appropriately) but when I access it via either the machine's name (http://xps1521-pc:8086
) or IP address (http://192.168.10.104:8086
), it does not work as expected (i.e. after successful authentication, prism modules are loaded BUT views are not switched). I cannot seem to figure out why this is happening and would appreciate some help/guidance.
Thanks!