Hi,

I have been trying to use Jetty with RC3 and not having any
luck.
Today I pinned it down to a problem with trying to convert
a
SocketListener to a String!  The following short program
crashes
in exactly the same way as Jetty...  Any ideas how to fix
this?

Thank you,
-Will


===============snip=====================
import java.net.*;
public class CrashBSD
{
    static public void main( String args[] )
    {
        try
        {
            ServerSocket ss = new ServerSocket( 0, 4 );
            System.out.println( ss );
        } 
        catch ( Exception e ) { System.out.println( e );
System.exit( 1 ); }
    }
}

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to