kinga93
kinga93

Reputation: 33

Unhandled exception when trying to run my WorkerRole on using Windows Azure

I've just created my first Microsoft Azure application, I wrote a simple WorkerRole program which should print in every second a message on the console. I constantly get the following exception when running my program:

An unhandled exception of type 'System.InvalidCastException' occurred in WaWorkerHost.exe Additional information: Unable to cast transparent proxy to type 'Microsoft.WindowsAzure.ServiceRuntime.Implementation.Loader.RoleRuntimeBridge'.

The build succeeds without any error message. I also tried to rebuild several times the project, but this wasn't helping... I'm using a 32-bit operating system, with Azure SDK and Visual Studio 2010 installed. How can I fix this problem and run my program without getting this exception?

Upvotes: 1

Views: 141

Answers (1)

Neil Mackenzie
Neil Mackenzie

Reputation: 2847

The latest versions of the Azure SDK do not support Visual Studio 2010. You might want to try using the new Visual Studio 2013 Community Edition.

Upvotes: 1

Related Questions