Cannot Login to OpenERP in android
问题 With reference to the question here, Android OpenErp Search Request XMLRPC I am trying to establish a search and login request to OPENERP from my android project. This what I am doing, private URI uri; uri = URI.create("http://192.168.100.29:8069"); client = new XMLRPCClient(uri); Array[] arr; arr = (Array[]) client.call("search", "DevDB", "admin", "password", "product.product", "execute"); HttpResponse response; response = client.execute(postMethod); String res = null; if (null != response)