I have a problem with my webservice. You are giving this error:
RequestFailed RequestFailed - > Status: (405)
The code I'm using:
@DELETE
@Produces("text/plain")
@Path("ExcluirLista/{usuario}")
public boolean excluirTodos(@PathParam("usuario") String usuario)
{
ProdutoDAO dao = new ProdutoDAO();
return dao.excluir(usuario);
}
public boolean excluir(String usuario)
{
String sql = "delete * from listaproduto where uclogin=?";
Boolean retorno = false;
PreparedStatement pst = Conexao.getPreparedStatement(sql);
try {
pst.setString(1,usuario);
if(pst.executeUpdate()>0)
{
retorno = true;
}
} catch (SQLException ex) {
Logger.getLogger(ProdutoDAO.class.getName()).log(Level.SEVERE, null, ex);
retorno = false;
}
return retorno;
}