- Dave
$B>.;3(B $BK!9'(B wrote:
>
> Dear JavaSecurity Administrator
>
> We are planning to develop a server application system on JavaWebServer1.1.
> And we have a problem that SSL handshake procedure takes very long
> time(about 7 seconds). Is this SSL's normal speed on JavaWebServer ? Or do
> we make some mistakes ?
>
> Our client side method source code is like following:
>
> -----
> public void SSLSendData(String message){
> URL url = new URL("https://JavaWebServer:7070/xxx");
> URLConnection urlc = url.openConnection();
> OutputStream os = urlc.getOutputStream();
> PrintWriter pw = new PrintWriter(new OutputStreamWriter(os));
> pw.println(message);
> ...
> }
> -----
>
> Thanks.
>
> ----------
> Noritaka Koyama<koyama@okilab.oki.co.jp>
> Oki Electric Inductry Co.,Ltd. Media Network Laboratories.
> Shibaura 4-10-3, Minato-ku, Tokyo 108-8551, Japan