Je suis en train de faire un appel ajax de jquery pour un service rest. Le reste du service est utilisé à droite à partir d'un tutoriel de mkyong du blog, celui-ci: http://www.mkyong.com/webservices/jax-rs/integrate-jackson-with-resteasy/
Le service fonctionne, mais lorsque je tente de faire un appel de jQuery, dans Firebug il y a un code d'état 200, mais dans la section réponse, rien.
Voici la page html avec l'appel ajax:
<html>
<head>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
</head>
<body>
<button id="ajax">ajax call</button>
<button id="json">json</button>
<script type="text/javascript">
$('#json').click(function(){
alert('json');
$.getJSON("http://localhost:8080/restws/json/product/get",
function(data) {
alert(data);
});
});
$('#ajax').click(function(){
alert('ajax');
$.ajax({
type: "GET",
dataType: "json",
url: "http://localhost:8080/restws/json/product/get",
success: function(data){
alert(data);
}
});
});
</script>
</body>
</html>
Je ne peux pas la comprendre où je suis allé mal, pourriez-vous s'il vous plaît dites-moi ce que je fais de mal?
Merci!