Problem in connection making at server side
I wrote the following piece of code while working with bluetooth jsr-82 and j2me.
statusform.append("before Connector.open...");
lserver = (L2CAPConnectionNotifier) Connector.open( url );
statusform.append("Before acceptAndOpen");
request = lserver.acceptAndOpen();
where statusform is a form on which im displaying these texts.
url is: String url = "btl2cap://localhost:" + uuid.toString() +";name="+appName+";ReceiveMTU=1024;TransmitMTU=1024";
where uuid is "102030405060708090A0B0C0D0E0F011" .
Problem is that "before Connector .open" is shown on the form but "Before acceptAndOpen" is not. Can anyone plz tell me what could possibly the reason behind it?
Thanks
Message was edited by:
AqueelAhmad

