我已安装IP * Works Trial组件以使用JSON组件来请求RESTful服务。
我设法使用标准的HttpWebRequest来使用此代码,但现在使用IP * Works组件我收到了一个我无法理解的错误。
IDE: Xamarin
Project: iOS Mobile iPhone/iPad app
Language: C#
Error is: Connection attempt failed (AddressFamilyNotSupported).
我的代码是:
public string getCSRFToken()
{
string csrfToken = "";
Json ipwRest = new Json ();
ipwRest.ContentType = "application/json";
try{
ipwRest.Post(@"http://localhost:9007/quote-and-buy-performance/api/user/token.json");
csrfToken = ipwRest.TransferredData;
Console.Out.WriteLine ("getCSRFToken->Response: " + csrfToken.ToString());
}catch(IPWorksJsonException jsonerror){
Console.Out.WriteLine (jsonerror.Message);
}
return csrfToken;
}
我还尝试了什么: