• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

ClientAbortException throw at the end of REST request

 
Greenhorn
Posts: 3
Objective C Java Google App Engine
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I''ve run into an error that I'm struggling to address. Basically the web application is a REST application that takes data in as a large POST, stores it in a database, and returns the stored data to the user in the response as XML using JAX-RS. This is repeated thousands of times. The data is stored, and the client gets the full response.

Other than the JBoss server logs getting spammed with the following warnings/errors, there are no problems. Both the web application and client do not report errors, and run fine.

It sounds like this error often happens when the client ends the conversation by clicking "back" or canceling a download. Since this conversation is all automated and I'm not sure where the conversation is getting cut abruptly, I don't feel comfortable ignoring this error.

I'm returning XML via JAX-RS using the following call



The client is calling the REST service with Jersey using this code



Very quickly after starting the process I get the following warnings in my JBoss AS7 logs:



the warnings quickly turn to errors and return



Any ideas on how to fix this?
 
reply
    Bookmark Topic Watch Topic
  • New Topic