RE: socket read errors

2006-02-03 Thread James Rome
"Are you using Solaris? Is it possible that your MTU at the OS level wasn't set to a large number?" Well, It is a Solaris server talking to my Linux server. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

RE: socket read errors

2006-02-03 Thread Duan, Nick
Are you using Solaris? Is it possible that your MTU at the OS level wasn't set to a large number? ND -Original Message- From: James Rome [mailto:[EMAIL PROTECTED] Sent: Friday, February 03, 2006 9:30 AM To: Tomcat Users List Subject: socket read errors My servlet that verifies presente

Re: socket read errors

2006-02-03 Thread James Rome
I found out what is causing this. My read is done with the following code: BufferedReader rdr = new BufferedReader( new InputStreamReader(input)); String rdstr; while ((rdstr = rdr.readLine()) != null) { sb.append(rdstr + "\n"); } I always get the full presented certificate, but