This morning I tried running a Silverlight 5 App that we have been building from my laptop strangely the login page comes up but when I click Login the page doesn’t move on to the next View.
I thought it was a call to the server but no that works fine.
I’ve spent all day trying different machines and I’ve realised that any machine that hasn’t got the silverlight 5 developers runtime loaded has this problem.
I can’t begin to think whats causing this problem or how to debug it.
I have tried to remote debug one of the machines that shows the error but VS always tells me that the symbols haven’t been loaded.
I’ve found that running the app on my development machine but under 64 bit IE shows the same problem but I can’t debug it becuase it tells me to load the 64bit version of the developer runtime which is already installed. (I guess that if IE 64bit was picking up the developer runtime the problem would go away)
Has anyone got any ideas what would be different about the silverlight runtime and the developers runtime that would cause my view not to change?
Anyone got any idea how I can get this to debug?
After some investigation it seems that the Silverlight 5 runtime has what I think would be a bug.
Setter methods of properties are not appearing in the stacktrace.
if we have the code
In the development environment if we check the stack there is a set_Name method in the stacktrace
however in the runtime environment we get
the set_Name method is missing.