Hi all. I've a simlpe pojo class:
public class MyClass
{
public DataHandler getFile()
{
return new DataHandler(new FileDataSource(new File("/tmp/myfile")));
}
}
I've published that pojo as a WebService.
The problem is that, on the client side, the file is always truncated at
12123 bytes.
How can I solve this issue?
Thanks,
Massimiliano
