I'm involved with developing a Silverlight application together with a few developers. We use Hudson to build and deploy the application to a test server, the process is roughly like this:
- Developer checks in changes.
- Hudson detects changes, checks them out and builds the solution.
- If the build is successful, the new application is deployed to a web server.
Now, it has happened a few times that the application is possible to build and deploy correctly, but freezes when launched from the test server. Internet Explorer reports on the status bar:
Error: Unhandled Error in Silverlight Application. [...]
I would like to add a test for this in the build process, just to verify that the application is possible to load on the web server.
Is there a simple way to automatically detect these errors with Internet Explorer or the Silverlight plugin?