JSSE does not support InputStream.available()
My program is checking the InputStream.available() method to see if there is any data ready to be read (so it would not block).
This works fine with a regular socket but with a JSSE socket the available() method always returns 0. Is this a limitation or a known bug? Is there a workaround?
Thanks
Dan

