Wireless development

Moderators: None (Apply to moderate this forum)
Number of threads: 207
Number of posts: 313

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Bluetooth connection not working on US Nokia phones from J2ME Midlet ( Posted by mariraja on 14 Jul 2009 at 3:01 AM
Hi All,

We are developing a J2ME midlet (MIDP 2.0 ,CLDC 1.1)which makes bluetooth connection to other devices.The bluetooth connection is working perfectly on indian nokia phones with Airtel as carrier.But when we deploy the same midlet on Nokia E71 US phone with carrier as AT&T ,the bluetooth connection is not working.The sample code is as follows:

public void run(){

try{
StreamConnection connection = (StreamConnection)Connector.open(btConnectionURL);

//
// open an input stream to get some data
//

InputStream in = connection.openInputStream();

byte[] serialData;
readData = true;
while(readData == true){
int lengthavai=0;
lengthavai = in.available();

if(lengthavai > 0){

serialData = new byte[lengthavai];
int length = in.read(serialData);

System.out.println("data read: " + new String(serialData));

dataViewForm.append(new String(serialData));
}
}

in.close();
connection.close();

}catch(IOException ioe){
ioe.printStackTrace();
}


when we try to connect on US Phones,the execution hangs at the following line of code:
StreamConnection connection = (StreamConnection)Connector.open(btConnectionURL);

No exception is caught.

Our midlet is not signed.

In the Forums it is said that the problem is with the unsigned midlet.AS some of the US carriers block the secure API usage on Unsigned midlet.

But our question is, if we buy a code signing certificate from Verisign or Thawte and sign the midlet, will this problem be solved.

Any other alternative solutions for this ???

Immediate help will be appreciated.


Thanks,
Mari raja



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.