java - Logging into WSO2 from an android device -


i followed set instructions in wso2 documentation.

i have following in commonutilities.java

public static boolean debug_mode_enabled = true; public static boolean local_notifications_enabled = true; public static boolean gcm_enabled = false;  public static string server_ip = "172.16.0.186";  public static string server_port = "9443"; public static string server_protocol = "https://"; public static string api_version = "1.0.0"; 

when try log in following crash:

w/system.err(29531): java.io.ioexception: wrong version of key store. w/system.err(29531): @ com.android.org.bouncycastle.jcajce.provider.keystore.bc.bckeystorespi.engineload(bckeystorespi.java:805) w/system.err(29531): @ java.security.keystore.load(keystore.java:589) w/system.err(29531): @ org.wso2.emm.agent.utils.httpconnectorutils.getcertifiedhttpclient(httpconnectorutils.java:56) w/system.err(29531): @ org.wso2.emm.agent.utils.httpconnectorutils.postdata(httpconnectorutils.java:238) w/system.err(29531): @ org.wso2.emm.agent.utils.httpconnectorutils.sendwithtimewait(httpconnectorutils.java:107) w/system.err(29531): @ org.wso2.emm.agent.utils.httpconnectorutils.getclientkey(httpconnectorutils.java:89) w/system.err(29531): @ org.wso2.emm.agent.authenticationactivity$12.doinbackground(authenticationactivity.java:444) w/system.err(29531): @ org.wso2.emm.agent.authenticationactivity$12.doinbackground(authenticationactivity.java:1) w/system.err(29531): @ android.os.asynctask$2.call(asynctask.java:288) w/system.err(29531): @ java.util.concurrent.futuretask.run(futuretask.java:237) w/system.err(29531): @ android.os.asynctask$serialexecutor$1.run(asynctask.java:231) w/system.err(29531): @ java.util.concurrent.threadpoolexecutor.runworker(threadpoolexecutor.java:1112) w/system.err(29531): @ java.util.concurrent.threadpoolexecutor$worker.run(threadpoolexecutor.java:587) w/system.err(29531): @ java.lang.thread.run(thread.java:841) v/serverutils(29531): 172.16.0.186posting '{password=xxx, username=leahmckelvey}' https://172.16.0.186:9443/emm/api/devices/clientkey v/serverutils(29531): posting 'password=xxx&username=leahmckelvey' https://172.16.0.186:9443/emm/api/devices/clientkey e/serverutils(29531): failed register on attempt 1 e/serverutils(29531): java.lang.nullpointerexception e/serverutils(29531): @ org.wso2.emm.agent.utils.httpconnectorutils.postdata(httpconnectorutils.java:279) e/serverutils(29531): @ org.wso2.emm.agent.utils.httpconnectorutils.sendwithtimewait(httpconnectorutils.java:107) e/serverutils(29531): @ org.wso2.emm.agent.utils.httpconnectorutils.getclientkey(httpconnectorutils.java:89) e/serverutils(29531): @ org.wso2.emm.agent.authenticationactivity$12.doinbackground(authenticationactivity.java:444) e/serverutils(29531): @ org.wso2.emm.agent.authenticationactivity$12.doinbackground(authenticationactivity.java:1) e/serverutils(29531): @ android.os.asynctask$2.call(asynctask.java:288) e/serverutils(29531): @ java.util.concurrent.futuretask.run(futuretask.java:237) e/serverutils(29531): @ android.os.asynctask$serialexecutor$1.run(asynctask.java:231) e/serverutils(29531): @ java.util.concurrent.threadpoolexecutor.runworker(threadpoolexecutor.java:1112) e/serverutils(29531): @ java.util.concurrent.threadpoolexecutor$worker.run(threadpoolexecutor.java:587) e/serverutils(29531): @ java.lang.thread.run(thread.java:841) e/authenticationactivity(29531): result null in getoauthclientinfo()

is there overlooked? testing environment. trying set demo company, can't seem past login.


Comments