Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / January 2006

Tip: Looking for answers? Try searching our database.

Blackberry and SSL

Thread view: 
John Goche - 19 Jan 2006 01:24 GMT
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
John Goche - 19 Jan 2006 15:54 GMT
Hello,

I am have done some more testing on this
BlackBerry SecureConnection code with the
4.1.10.170 JDE...

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

is = sc.openInputStream();

is.available() returns 0

I call is.read() to read X bytes.

I call is.available() returns 2^14 + 4 - x.

I call is.read() to read is.available() bytes.

is.available() returns 0.

I call is.read() and I read some junk.

After the junk, I see the original X bytes
I had originally read.

After that, I get network read errors when
trying to read more bytes.

It is as though the SSL library is not decoding
my data properly. So now I am going to try the
Nokia API, the J2SE API, and look for addon
Java SSL libraries which I might be able to
include as alternative source code as part
of my project if they only work properly.

Any feedback welcome,

Regards,

JG


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.