On Sep 30, 2006, at 4:31 AM, class acts wrote:
Hello all,

  I'm trying to connect a Socket to a server using mina with jzlib
compression enabled.

if (false) {
                                        // cannot get zlib compression to work
                                        ZOutputStream zOut = new 
ZOutputStream(socket.getOutputStream(),
                                                        JZlib.Z_SYNC_FLUSH);
                                        ZInputStream zIn=new 
ZInputStream(socket.getInputStream());

                                        socket_out = new BufferedWriter(new 
OutputStreamWriter(zOut));
                                        socket_in = new BufferedReader(new 
InputStreamReader(zIn));
                                } else {
                                        socket_out = new BufferedWriter(new 
OutputStreamWriter(
                                                        
socket.getOutputStream()));
                                        socket_in = new BufferedReader(new 
InputStreamReader(socket
                                                        .getInputStream()));
                                }

When I try to connect to the server it connects but no data is passed
in either direction, also no errors are thrown either.

Using mina on the client-side isn't an option either.

Can you post a more complete test case that the developers could run to see your issue?

Thanks!

-pete


--
[EMAIL PROTECTED] - http://fotap.org/~osi



Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to