我有一个ASP.NET Web服务,它公开了一个名为DoLogin
的方法[WebService(Namespace = "http://rtns.ism.ec/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
[ScriptService]
public class UserManagerService : WebServiceBase
{
[WebMethod(EnableSession=true)]
[ScriptMethod]
public ResponseBase<bool> DoLogin(LoginCredentials Credentials)
{
Credentials.IpAddress = HttpContext.Current.Request.UserHostAddress;
Credentials.ServerID = Environment.MachineName;
Credentials.SystemID = WebConfigurationManager.AppSettings["SYSTEM_ID"];
Credentials.UserAgent = HttpContext.Current.Request.UserAgent;
try
{
DataResponse<User> resp = UserManager.LoginUser(Credentials);
if (resp.Code)
{
FormsAuthentication.SetAuthCookie(Credentials.Email, true);
HttpContext.Current.Session.Add(Constants.Identifiers.USER_SESSION_INFO_IDENTIFIER, resp.Data);
}
return resp;
}
catch (Exception _ex)
{
ISM.Essentials.Business.LogManager.SaveLog(_ex);
return new ResponseBase<bool> { Message = MessageManager.Instance[Constants.Messages.E_GENERIC_FAILURE, Credentials.CultureID] };
}
}
}
我有一个JQuery客户端,可以进行调用:
function loginSubmitHandler() {
var objeto = {
Email: $('#txtUser').val(),
Password: $('#txtPassword').val(),
CultureID: $('#hddCulture').val()
};
utils.startAjaxCall('../Services/UserManagerService.asmx/DoLogin', { Credentials: objeto }, function(data) {
if (data.d.Code) {
window.location.replace('home.aspx');
}
else
{
utils.alert(locals.Information, locals.Accept, data.d.Message);
}
});
return false;
}
当我使用错误的凭据登录时,将显示包含从服务器发送的消息的警报。如果我提供正确的凭据,页面将重定向到home.aspx
自从以下浏览器开始以来,此代码的工作正常100%:
我刚买了一台Mac(有史以来第一次),当我试图访问我的网站时,我发现了一个额外的行为。我提供了正确的登录凭据,我被重定向到主页,但FormsAuthentication机制重定向回登录页面。
似乎忽略了从服务器返回的Auth cookie。
这不是跨域cookie的问题,因为我在同一个Web应用程序/域中调用Web服务器。
有关如何让Safari for Mac接受Ajax Web服务调用中返回的cookie的任何想法吗?
答案 0 :(得分:3)
问题可能是safari不会使用非ASCII字符设置cookie。尝试对cookie值使用encodeURIComponent()函数。这是一个类似问题的链接: Strange problem with cookies in Safari and Asp.net