BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 05-07-2009, 11:10 AM   #1
udioster
New Member
 
Join Date: May 2009
Model: 9000
PIN: N/A
Carrier: celcom
Posts: 1
Default BlackBerry and J2ME OBex push support

Please Login to Remove!

I was writing a simple J2ME app sending an inventation (Obex push message) to the desired Device according to it's BT Mac address.
It works great on almost all the phones I tried it on, the problem with the BB is that each time I try to search for it's services I have to enter a Pass key for pairing. Even if I guess (correctly) the service on the blackberry I can't send the message without pairing the device before hand.
is there any possible way to bypass the Passkey? to push a message without the pairing process? again, it is possible on each and every other Nokia \ Sony Ericsson \ Motorola devices I tried it on.

Here is the relevent piece of code (read this code assuming the BTMAC and the port are valid. For getting the service URL In the actual code I used the classic way that from some reason would pop up annoying Passkey message before I could reach the service URL):

public boolean SendObexInvitation(String BTMAC, String msg)
{
port = 'q';
// create the file content
String file_content = new String(FILE_CONTENT1 + msg + FILE_CONTENT2 + NSOF_URL + FILE_CONTENT3);
try
{
searchService(BTMAC);
synchronized (o)
{
o.wait();
}

if (port == 'q')
return false;
//create the service URL
String service_url = new String(SERVICE_HEADER + BTMAC + SERVICE_FOOTER + port);
ClientSession cs = (ClientSession) Connector.open(service_url);

HeaderSet hs = cs.createHeaderSet();

// now let's send the connect header
cs.connect(hs);
String text = new String (file_content);
hs.setHeader(HeaderSet.NAME, FILE_NAME);
hs.setHeader(HeaderSet.TYPE, FILE_TYPE);

Operation putOperation = cs.put(hs);
OutputStream outputStream = putOperation.openOutputStream();
outputStream.write(text.getBytes(ENCODING));
// file push complete

outputStream.close();
putOperation.close();

cs.disconnect(null);

cs.close();

return (true);
}
catch(Exception exp)
{
System.out.println("couldn;t make it!");
}
return false;
}
}
Offline  
Closed Thread



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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Chroma 6312 DC Electronic Load Mainframe  picture

Chroma 6312 DC Electronic Load Mainframe

$239.96



Hp Agilent 70001A Mainframe 70420A Opt 201 Test Set  picture

Hp Agilent 70001A Mainframe 70420A Opt 201 Test Set

$500.00



Tektronix TM506 Modular 6-bay Mainframe Compartment for power 6-Slot READ DESCRP picture

Tektronix TM506 Modular 6-bay Mainframe Compartment for power 6-Slot READ DESCRP

$124.95



NATIONAL INSTRUMENTS NI PXI-1056 MAINFRAME  picture

NATIONAL INSTRUMENTS NI PXI-1056 MAINFRAME

$600.00



HEWLETT PACKARD 70001A MAINFRAME (MY1) picture

HEWLETT PACKARD 70001A MAINFRAME (MY1)

$375.00



Tektronix TM5006A Power Module Mainframe (PK33) picture

Tektronix TM5006A Power Module Mainframe (PK33)

$150.00







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.