ログイン Web サービスを呼び出していますが、 server から取得する内容を確認できません。私はこれを得た
**http://isuite.c-entron.de/CentronService/REST
Username: qus
Password: 1**
ブラウザで確認します http://isuite.c-entron.de/CentronService/REST&&Username=qus?Password= 1
しかし、何も得られません。
次に、この 404 が取得するような ajax を使用しました。この方法で Web サービスを呼び出します。
$(document).ready(function () {
//event handler for submit button
$("#btnSubmit").click(function () {
//collect userName and password entered by users
var userName = $("#username").val();
var password = $("#password").val();
//call the authenticate function
authenticate(userName, password);
});
});
//authenticate function to make ajax call
function authenticate(userName, password) {
$.ajax
({
type: "POST",
//the url where you want to sent the userName and password to
url: "http://isuite.c-entron.de/CentronService/REST",
dataType: 'json',
async: false,
//json object to sent to the authentication url
data: '{"Username": "' + userName + '", "Password" : "' + password + '"}',
success: function () {
//do any process for successful authentication here
}
})
}
ここにフィドルがあります http://jsfiddle.net/LsKbJ/1/