BlackBerryForums.com : Your Number One BlackBerry Community
     

»Sponsored Links


BlackBerryApps.com Best Sellers



Closed Thread
 
LinkBack Thread Tools
  (#1 (permalink)) Old
John Goche Offline
New Member
 
Posts: 1
Join Date: Jan 2006
Model: 7100T
Default Blackberry and SSL - 01-19-2006, 09:27 AM

Hello,

I am using the BlackBerry J2ME emulator to establish an
SSL connection. While connected I accept the certificate,
write some data, then read some data from the input stream
as follows. However, after reading is.available() number of
bytes (see code below), the input stream is starts returning
garbage (not the bytes I see when I connect from my C++
SSL library code).

What am I supposed to do so that is.getBytes() does not
return junk bytes after returning int is.available() number of
bytes? Am I supposed to close() and then reopen() the input
streams? Should I buffer them somehow using producer and
consumer threads? I tried increasing the receive buffer size
but it did not help. What should I do to fix this problem.
Alternatively, anyone know of any good SSL libraries
out there that work (given that I am not having much
luck with the BlackBerry one?). What am I
doing wrong?

class Foo {

private SecureConnection sc;
private InputStream is;
private OutputStream os;

boolean open(String host, String port) {

try {

String str = "ssl://" + host + ":" + port;

sc = (SecureConnection) Connector.open(str);

//sc.setSocketOption(SocketConnection.LINGER, 5);
//sc.setSocketOption(SocketConnection.KEEPALIVE, 1);
sc.setSocketOption(SocketConnection.RCVBUF, 6000);

is = sc.openInputStream();

os = sc.openOutputStream();

return true;

} catch (IOException e) {

Dialog.alert("Could not open secure connection.");

}

return false;

}

// ...

private synchronized byte[] getBytes(int size) {

if (size > 0) {

byte[] bytes = new byte[size];

int count = 0;

int val;

try {

while (count < size) {

if ((val = is.read(bytes, count, size - count)) == -1) {

connectionClosed();

}

count += val;

}

} catch (IOException e) {

networkReadError();

}

return bytes;

}

return null;

}

}

--

Thanks,

JG
   
Sponsored Links
Please Login or Register to Remove these Advertisements!

Closed Thread


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





Copyright © 2004-2009 BlackBerryFAQ.com, BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of Research In Motion Limited.