Re: new feature submission for mysql-connector-java-5.0.4
[email protected] (Don Cohen) Wed, 10 Jan 2007 11:29:47 -0800
| Newsgroups | gmane.comp.db.mysql.java,gmane.comp.db.mysql.devel |
|---|---|
| Message-ID | <[email protected]> |
This is a note about the feature submission I sent on 26 Oct 2006.
When I try to compile it for java version 1.4 I find that it uses
a feature introduced in 1.5. The best way I see so far to make it
compile (and work) in 1.4 is to make the two changes below.
If anyone would like to offer a better solution I'd be happy to see
it.
BTW, I've not heard anything back about either this feature submission
or the bug fix I submitted in December. I begin to wonder whether
anyone is listening.
/src/com/mysql/jdbc/ExportControlled.java
My previous diff listed line 68 as
TrustingSSLSocketFactory.getDefault();
which I now change to
TrustingSSLSocketFactory.getDefault2();
and /src/com/mysql/jdbc/TrustingSSLSocketFactory.java line 39
which was previously listed as
public static javax.net.ssl.SSLSocketFactory getDefault() {
I now change to
public static javax.net.ssl.SSLSocketFactory getDefault2() {
--
MySQL Java Mailing List
For list archives: http://lists.mysql.com/java
To unsubscribe: http://lists.mysql.com/[email protected]