I never got an answer for this, but eventually figured it out with the help of this tutorial. The short answer was yes, I had to manage the AJAX request/response at a fairly low level. Assuming you have a username and password you need to authenticate with, you first need to get an authentication cookie for it. I used the Json.NET library from Newtonsoft for the JSON serialization and deserialization, but you could use anything.
Cookie GetFormAuthenticationCookie(string username, string password)
{
string uriString = ServerName + AUTH_SERVICE_URL;
Uri uri = new Uri(uriString);
// Need to cast this to HttpWebRequest to set CookieContainer property
// With a null CookieContainer property on the request, we'd get an
// empty HttpWebRequest.Cookies property
HttpWebRequest request = WebRequest.Create(uri) as HttpWebRequest;
request.Method = "POST";
request.ContentType = "application/json; charset=utf-8";
request.CookieContainer = new CookieContainer(); // needed to get non-empty Cookies collection back in response object
// requestContents needs to look like this:
// {
// username = 'theUserName',
// password = 'thePassword',
// createPersistentCookie = false
// }
string requestContents = GetJsonForLoginRequest(username, password);
byte[] postData = Encoding.UTF8.GetBytes(requestContents);
request.ContentLength = postData.Length;
using (Stream dataStream = request.GetRequestStream())
{
dataStream.Write(postData, 0, postData.Length);
}
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
if (response.StatusCode != HttpStatusCode.OK)
{
throw new WebException("Response returned HttpStatusCode " + response.StatusCode);
}
// For now, assuming response ContentType is "application/json; charset=utf-8"
object responseJson;
using (Stream responseStream = response.GetResponseStream())
{
StreamReader reader = new StreamReader(responseStream);
string responseString = reader.ReadToEnd();
responseJson = JavaScriptConvert.DeserializeJson(responseString);
}
if (responseJson is bool)
{
bool authenticated = (bool)responseJson;
if (authenticated)
{
// response was "true"; return the cookie
return response.Cookies[".ASPXFORMSAUTH"];
}
else
{
// apparently the login failed
return null;
}
}
else
{
return null;
}
}
Next, add the cookie to subsequent requests. In my case, that meant adding the cookie to the CookieContainer of the web service proxy I was using.