編集: url が犯人だと思います。作業中のlogin.htmlケースで、ログに記録されました:
FINE: セキュリティ チェック リクエスト POST /SesamaMaven/protected/admin/j_security_check
そして、私が得たAJAXバージョンで:
FINE: セキュリティチェックリクエスト POST /SesamaMaven/
Glassfish で JDBCRealm を使用して認証を構成しましたが、次のように通常の login.html で動作しているようです。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Login Form</title>
</head>
<body>
<form method="post" action="j_security_check">
<p>You need to log in to access protected information.</p>
<table>
<tr>
<td>User name:</td>
<td><input type="text" name="j_username" /></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="j_password" /></td>
</tr>
</table>
<p><input type="submit" value="Login" /></p>
</form>
</body>
</html>
私の問題は、AJAX で同じものを実装しようとすると、機能しないことです。それを機能させる可能性はありますか?
HTML
<form class="navbar-form pull-right">
<input class="span2" type="text" placeholder="Email" name="j_username" id="username">
<input class="span2" type="password" placeholder="Password" name="j_password" id="password">
<button type="button" class="btn" id="btnSignIn">Sign in</button>
</form>
JS
$('#btnSignIn').click(function() {
$.ajax({
type: "POST",
contentType: "application/text",
url: "j_security_check",
// This is the type what you are waiting back from the server
dataType: "text",
async: false,
crossDomain: false,
data: {
j_username: "admin",
j_password: "paSSWORD"
},
success: function(data, textStatus, xhr) {
alert('Thanks for your signin in! ' + xhr.status);
window.location = "/SesamaMaven/protected/adminWelcome.html";
},
error: function(jqXHR, textStatus, errorThrown) {
console.log(textStatus, errorThrown);
window.location = "/SesamaMaven/index.html";
alert(' Error in signIn-process!! ' + textStatus);
}
});
});
質問
1) 正しい contentType: "application/text" は何ですか?
2) URL タグは正しいものですか、それともアクションを使用する必要がありますか?
3)そのような場合、パラメーターのユーザー名とパスワードはどうですか?
Glassfish は認証を試みますが、ユーザーとパスワードがありません。