Estou tentando fazer a seguinte chamada e estou tendo problemas : .....................
parametros={ "documentId" : 10 };
$.ajax({
async:false, contentType : 'application/json', type : 'POST', dataType : 'json', url: 'http://spon3018:8080/api/public/ecm/document/deleteDocument', data: parametros,
success: function (resposta) {
alert("OK - DOCUMENTO CRIADO");
}, error: function(erro){ alert("obtivermos problema"); }
});
Estou conseguindo o seguinte erro:
responseText : "RESTEASY003210: Could not find resource for full path: http://spon3018:8080/api/public/ecm/document/deleteDocument"
Todos os métodos GET funcionam normalmente. Já tentei com outros métodos (createDocument) e também tenho a mesma resposta.
O que fazer ??