ClientSession cs = null;
try {
// Send a request to the server to open a connection
connection = Connector.open(_url);
cs = (ClientSession) connection;
cs.connect(null);
updateStatus("[CLIENT] OPP session created");
// Send a file with meta data to the server
final byte filebytes[] = "[CLIENT] Hello..".getBytes();
final HeaderSet hs = cs.createHeaderSet();