From nikolay.samofatov at red-soft.biz Sun Oct 23 15:23:55 2011 From: nikolay.samofatov at red-soft.biz (Nikolay Samofatov) Date: Mon, 24 Oct 2011 02:23:55 +0400 Subject: Fix for bug 6695402 Message-ID: <4EA493FB.9000506@red-soft.biz> Hello, All! The fix for JDK6 and JDK7 is pretty necessary as Russian tax office uses Russian names for its web service definitions. /** * Adds line breaks to enforce a maximum 72 bytes per line. */ static void make72Safe(StringBuffer line) { int length = line.length(); if (length > 72) { int index = 70; while (index < length - 2) { // Nikolay Samofatov 2011-10-24: avoid breaking UTF8 sequences while (line.charAt(index) >= 128 && line.charAt(index) < 192) index--; line.insert(index, "\r\n "); index += 72; length += 3; } } return; } -- Nikolay Samofatov, MBA Red Soft Corporation +7 495 668 3735 From Alan.Bateman at oracle.com Mon Oct 24 02:23:29 2011 From: Alan.Bateman at oracle.com (Alan Bateman) Date: Mon, 24 Oct 2011 10:23:29 +0100 Subject: Fix for bug 6695402 In-Reply-To: <4EA493FB.9000506@red-soft.biz> References: <4EA493FB.9000506@red-soft.biz> Message-ID: <4EA52E91.3090508@oracle.com> On 23/10/2011 23:23, Nikolay Samofatov wrote: > Hello, All! > > The fix for JDK6 and JDK7 is pretty necessary as Russian tax office > uses Russian names for its web service definitions. It's probably best to bring this up on the security-dev list, and also go through the "How to contribute" page [1] to get familiar with how to contribute fixes. -Alan. [1] http://openjdk.java.net/contribute/ From isvirkina at issart.com Wed Oct 26 07:04:20 2011 From: isvirkina at issart.com (Svirkina, Irina) Date: Wed, 26 Oct 2011 21:04:20 +0700 Subject: JDBC 4.1/JDBC 4.0 Compatibility Test Suite Message-ID: Hello everybody, Not sure it's right mailing list, but I already asked my question in * conformance-discuss. Have no answer till the moment.* I need to check, does specific JDBC driver support JDBC 4.0, JDBC 4.1. specification, so I was looking for Compatibility Test Suite (CTS). I was managed to find just API Test Suite 1.3.1 ( http://www.oracle.com/technetwork/java/jdbctestsuite-1-3-1-140675.html), but I guess this is CTS for JDBC 3.0. Could you tell me where I can get Compatibility Test Suite for JDBC 4.0 and JDBC 4.1 -- thanking you in advance