I'm new here, and I hope you could help me.
I've developed a codenameone app built to iOS which works fine on the simulator. I submmited to apple but they rejected with this message:
"Specifically, we found the username and password fields to be unresponsive. Please refer to the attached screenshot."
The first view is a login form, username and password.
the code codenameone used is:
@Override
protected void onMain_BtnEntrarAction(final Component c, ActionEvent event) {
String usuario = findTxtUsuario().getText().trim();
String password = findTxtPassword().getText().trim();
if (usuario.compareTo("") == 0 || password.compareTo("") == 0) {
Dialog.show("Ecobiocar SAS", "Ingrese Usuario y Contraseña", "OK", null);
} else {
ConnectionRequest cr = new ConnectionRequest() {
Hashtable h;
boolean valido = false;
@Override
protected void postResponse() {
valido = Boolean.valueOf(h.get("success").toString());
if (valido) {
Storage.getInstance().writeObject("usuario", h);
showForm("Servicios", null);
} else {
Dialog.show("Ecobiocar SAS", "Usuario NO Válido", "OK", null);
}
}
@Override
protected void readResponse(InputStream input) throws IOException {
JSONParser p = new JSONParser();
h = p.parse(new InputStreamReader(input));
}
};
cr.setUrl("https://www.domainname.com/dirname/servletName");
cr.setPost(true);
cr.addArgument("task", "1");
cr.addArgument("usrname", usuario);
cr.addArgument("password", password);
InfiniteProgress prog = new InfiniteProgress();
Dialog dlg = prog.showInifiniteBlocking();
cr.setDisposeOnCompletion(dlg);
NetworkManager.getInstance().addToQueue(cr);
}
}
Thanks in advance.
I'm guessing domainname.com isn't the real domain and doesn't have a standard certificate as Steve mentioned Apple is very picky about SSL/Certificates.