Interesting problem. I would try to see if all your services have started correctly. You can use the following code to open the Runtime webservices page when your application is running. (assuming you have a default browser selected) if (LocalServer.IsRunning)
{
Thread t = new Thread(new ThreadStart(() =>
{
Process.Start(LocalServer.Url);
}));
t.Start();
}
You can also open up the admin page, although it won't give you that much more information by doing the following if (LocalServer.IsRunning)
{
Thread t = new Thread(new ThreadStart(() =>
{
Process.Start(LocalServer.Url.Replace("services", "admin"));
}));
t.Start();
}
It is hard to gauge what is going wrong for you. I would stick by getting the MPK working first. Have you tried running the example application that is provided as a VS2010 template?