Every other time I do an http delete then get, the get request hangs... The same code works throughout the application at least most of the time. When I pause the XNIO threads in the debugger after the first delete, one is in epoll and the other is in FileChannelImpl.transferFrom(ReadableByteChannel, long, long) line 644 and the second one is in epoll. After the second time, they are both there. Eventually the first one ends up in Throwable.fillInStackTrace(int) seemingly after a ClosedChannelException in that same transferFrom method. Then it goes back to that transferFrom. Until I hit stop, my laptop fan continues to rise. I don't know much about undertow but I'm thinking it is a bug in it or maybe xnio I suppose... Can anyone confirm?
var url = "/contacts/"+strId+".json";
$.get(url, function(data){
//console.log(data);
$("#frmName").val(data['name']);
$("#frmAddress").val(data['address']);
$("#frmPhone").val(data['phone']);
$("#frmEmail").val(data['email']);
});