connection = (StreamConnection) Connector.open(url);
_screen.updateDisplay("Connection open");
_in = connection.openInputStream();
_out = new OutputStreamWriter(connection.openOutputStream());
// Send the HELLO string.
exchange("Hello");
// Execute further data exchange here...