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


NETWORK INSTRUMENT GIGASTOR- 2U (2X) XEON E5-2630- 64 GB PC3 RAM picture

NETWORK INSTRUMENT GIGASTOR- 2U (2X) XEON E5-2630- 64 GB PC3 RAM

$356.99



Super-Micro P4DC6+ Motherboard with 2 Xeon i processors with SCSI RAID picture

Super-Micro P4DC6+ Motherboard with 2 Xeon i processors with SCSI RAID

$200.00



POSEIDON XEON D-1500 PRODRIVE TECH BOX picture

POSEIDON XEON D-1500 PRODRIVE TECH BOX

$500.00



Trenton 92-506313-XXX W/ 2x Intel Xeon Processors & 4GB DDR2 RAM picture

Trenton 92-506313-XXX W/ 2x Intel Xeon Processors & 4GB DDR2 RAM

$439.99



1 pc  used   X5DPL-IGM-DC server motherboard Xeon picture

1 pc used X5DPL-IGM-DC server motherboard Xeon

$734.27



 Processor Socket LGA1366 ServerCPU Matching pair Intel Xeon X5680 3.33GHz SLBV5 picture

Processor Socket LGA1366 ServerCPU Matching pair Intel Xeon X5680 3.33GHz SLBV5

$55.09







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