HI,
I am trying to run the login service when the app starts for testing purposes I have the following code running off a button click:
Login.username = 'username';
Login.password = 'password';
Login.execute();
using the console I am able to get the following information
{"code":"DBUI002","description":"database id not specified"}
so how do I specify the database ID in order to execute the call? also once i have done this do i need separate success and failure calls or will it use the specified ones in the service?
Thanks