Hello All, I have recently integrated the 2x client in one of our android device. It works fine when configured manually through 2x client. But when i try to launch the rdp session through third party app, it throws a error message 'the specified remote connection could not be found. Verify that you have typed the correct computer name or IP address, and then try to connect again" . I have used the following code for launching the rdp session. Intent i = new Intent(Intent.ACTION_MAIN); ComponentName comp = new ComponentName("com.tux.client","com.tux.client.menus.ActFarmsList"); i.setComponent(comp); i.putExtra("External_Launch", true); i.putExtra("Save", true); i.putExtra("Server", "xxx.xxx.xxx.xxx"); i.putExtra("UserName", "administrator"); i.putExtra("Password", "password"); startActivity(i); Any idea about how to troubleshoot this.