Teachme 0 Newbie Poster

hi all:
can anybody help me with the following?
i'm developing a bluetooth application using c# which will run on the pc, it searches for bluetooth devices in range and sends a msg to the first one it finds.. i managed to do the searching code and to find devices in range,,now the problem is that i want to develop another small application for the mobile using j2me so it can read the msg sent by pc and enable the user to reply with another msg... can anybody help???????
here is a sample of the c# code that finds devices and sends the msg:


bluetoothClient = new BluetoothClient();
Cursor.Current = Cursors.WaitCursor;
bluetoothDeviceInfo = bluetoothClient.DiscoverDevices(10);
bluetoothClient.Connect(bluetoothDeviceInfo[0].DeviceAddress, service);
NetworkStream ns = bluetoothClient.GetStream();
ns.Write(buffer, 0, buffer.Length);
note: i'm using InTheHand library..