$.ajax({
url:'http://192.168.1.2:8080/ConstructionHub/user/createuser?',
data:{firstName:fname,lastName:lname,uname:uname,password:cpassword,phoneno:phno,address:address,street:street,city:city,state:state,country:country,postbox:postbox,zip:zip,url:url,search:search,weblink:weblink,email:email,roles:roles},
dataType:'xml',
contentType:'application/x-www-form-urlencoded',
crossDomain:true,
timeout:10000,
async: false,
cache: false,
type:'POST',
success:function(data){
if($(data).find("isException").text() == "false")
{
//alert('No Exceptions found');
if($(data).find("message").text() == "true")
onTrue();
else
onFalse();
}
else
{
alert($(data).find("message").text());
}
},
error:function(XMLHttpRequest,textStatus, errorThrown) {
// alert("Error status :"+textStatus);
// alert("Error type :"+errorThrown);
alert("Error message :"+XMLHttpRequest.responseXML);
}
});
上記は、投稿に使用するコードです。