Hallo,
bei meinem Plugin handelt es sich um einen Client, der in Java Swing (JRE 1.7) geschrieben wurde. Für die Integration in IBM Lotus Notes (verwendet eigene JRE 1.6) wird eine "Swing to SWT"-Integration verwendet. Das Problem mit den langsamen HTTP-Anfragen tritt auch bei einem einfachen HTTP-Aufruf mit Hilfe der Java Klassen auf.
HttpURLConnection conn = null;
ContentInputStream strm = null;
InputStream is = null;
String docurl = "
http://srvtdev03:8080";
conn = ( HttpURLConnection )(new URL( docurl ).openConnection());
conn.setRequestMethod( "GET" );
int statusCode = conn.getResponseCode();
try {
is = conn.getInputStream();
while (is.read() != -1) {
}
} catch (IOException e) {
System.out.println( "error=" + e );
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
}
}
}