STORAGE Exception while trying to retrieve documents from Cloud

0 votes
Any idea why i gt this error when i try to retrieve from Storage cloud ? 
My fone internet poblem or is it your server is own or something ? or any suggestions ?
 
05-21 20:34:56.063: I/System.out(16137):  Exception :com.shephertz.app42.paas.sdk.android.App42Exception: org.apache.http.conn.ConnectTimeoutException: Connect to /100.1.200.99:8080 timed out
05-21 20:34:56.063: I/System.out(16137): ERROR GOT THIS - findAllDocuments-Exception Messageorg.apache.http.conn.ConnectTimeoutException: Connect to /100.1.200.99:8080 timed out
 
 
My code is like:
Set<String> selectKeys = new HashSet<String>();
       selectKeys.add("LAT");
       selectKeys.add("LNG");
       selectKeys.add("DESC");
       storageService.setSelectKeys(selectKeys);
 
    storageService.findAllDocuments(dbName, collectionName, new App42CallBack() {
    public void onSuccess(Object response) 
    {
    Storage  storage  = (Storage )response;
    System.out.println("dbName is " + storage.getDbName());
    System.out.println("collection Name is " + storage.getCollectionName());
    ArrayList<Storage.JSONDocument> jsonDocList = storage.getJsonDocList();
   
    //AsyncTaskRunner runner = new AsyncTaskRunner();
               //runner.execute(((Storage) response).getJsonDocList());
    }
    public void onException(Exception ex) 
    {
    System.out.println("ERROR GOT THIS - findAllDocuments-Exception Message"+ex.getMessage());
    }
    });
 

 

asked May 21, 2015 in App42 Cloud API-BaaS by jingahr (31 points)

1 Answer

0 votes
Hello,

All services our running fine from our end, please make sure you device internet is running fine. If you still getting any exception than let us know, it will help us to provide better support to you.

Thanks,

Himanshu Sharma
answered May 22, 2015 by hs00105 (2,005 points)
Download Widgets
Welcome to ShepHertz Product line forum, where you can ask questions and receive answers from the community. You can also reach out to us on support@shephertz.com
...