Hello everyone.
I have an issue with
file upload using WF 28.0.0.final.
I use restEasy as JAX-RS implementation
I have some JAX-RS resources that receive files
but i get the following error :
[org.jboss.resteasy.core.providerfactory.DefaultExceptionMapper] (default task-1)
RESTEASY002375: Error processing request POST xxxxxxxx :
java.io.IOException: UT010029: Stream is closed
I'd like to know what causes this error ?
I ran into this solution that do not seem to work :
Edit the standalone.xml file : within the http-listener element, add attributes read-timeout and write-timeout like folowing.
<http-listener ... read-timeout="600000" write-timeout="600000" ... />
Any help would be welcomed.