Hey All, I have a simple silverlight app that really is just a few images and rectangle... Trying to host it on apache / joomla. I have added all the mime types and the silverlight spinning progress bar comes up and goes to 100% but never displays my app..
I am at a loss? Anyone have any suggestions of what might cause this behavior? Thanks, Chris
Just a stab in the dark but I'd put a "Hello World" SL app up first (no images, etc) and see if that renders.
When I see that behavior during development its usually an unhandled exception proven by placing a breakpoint in the Application_UnhandledException() method in App.xaml.cs. Perhaps you can place a MessageBox at the top of that method and it will get hit...
Take note of:
// If the app is running outside of the debugger then report the exception using
// the browser's exception mechanism.
redmoomba
Member
1 Points
7 Posts
Silveright and Apache - Gets the 100% loaded progress bar... but that is it..
Oct 01, 2009 01:24 AM | LINK
plogic
Member
74 Points
13 Posts
Re: Silveright and Apache - Gets the 100% loaded progress bar... but that is it..
Oct 01, 2009 01:44 AM | LINK
Just a stab in the dark but I'd put a "Hello World" SL app up first (no images, etc) and see if that renders.
When I see that behavior during development its usually an unhandled exception proven by placing a breakpoint in the Application_UnhandledException() method in App.xaml.cs. Perhaps you can place a MessageBox at the top of that method and it will get hit...
Take note of:
// If the app is running outside of the debugger then report the exception using
// the browser's exception mechanism.
good luck!