Sorry for the interruption. I joined the list to post a patch, because I didn't know to whom to address it.
If I call setTimeout on a Call where the url is an https url, it dies with a NullPointerException. The problem is in SSLUtils.java.
Change:
sslSocket = (SSLSocket) createSocket.invoke(null, new Object[]{});
to
sslSocket = (SSLSocket) createSocket.invoke(factory, new Object[]{});
Would someone please put this into CVS for the nightly build?
Thanks, Paul Weiss