> Hi
> I am posting some files to a server via http through java. And it all
> works very well. But now i want to add a progressmonitor to my
> transfer, because they take some time.
What about writing your HTTP classes yourself ? Then it should be easy to
to implement a progress bar or similar stuff. The GET and POST methods are
not really difficult to implement.
Get yourself a copy of "curl" and run it like this:
curl -v http://an.interesting.host/with/a/file.html
It should give you an idea of the HTTP protocol...
> But i can't find any way to get notified during the transfer. Only
> before and after. All the data is transfered to the outputstream and
[quoted text clipped - 6 lines]
>
> /Jacob