Devan Namboothirippad wrote:
hi,
I work on a Java based e-mail server. When I send mails to a Java-based
SMTP Server from my SMTP Client, I get SocketException (saying "Software
caused connection abort" on the windows platform and "Broken pipe" on
Linux.). But when I s
hi,
I work on a Java based e-mail server. When I send mails to a Java-based
SMTP Server from my SMTP Client, I get SocketException (saying "Software
caused connection abort" on the windows platform and "Broken pipe" on
Linux.). But when I send mails to Postfix, my clie
to connect sockets
at the same time:
private static synchronized Socket doConnect(String host, int port)
{
return new Socket host, port);
}
But it doesn't work. I still get the same SocketException.
Is this a bug in the implementation? I'm using the Sun Java JDK
RC2 on a Linux PC