I want to create a Windows Phone app for SharePoint2013. Here's my problem. When I call ExecuteQueryAsync I get a Exception with the Message "The remote server returned an error: NotFound."
I already checked the URL, I can access it from the emulator browser
using (ClientContext context = new ClientContext("http://mysharepoint.mydomain.local/meetings/Testmeeting"))
{
Authenticator at = new Authenticator();
at.UserName = "user";
at.Password = "passwd";
at.Domain = "mydomain";
at.AuthenticationMode = ClientAuthenticationMode.Default;
at.CookieCachingEnabled = true;
context.Load(context.Web);
context.ExecuteQueryAsync(new ClientRequestSucceededEventHandler(ThreadCallback), new ClientRequestFailedEventHandler(ThreadFail));
}