01-14-2013 04:10 PM
Hi,
I need to develop an enterprise application with bellow features in the first phase of development:
I targeted BB 10 HTML5WebWorks is my development environment. I want to make sure either bellow features will be supported by webworks or not.
1. Apps Login page – Captures all credentials entered by user.
2. Inactivity and Session Aging – Prompts for re-entry of password after 15 minute inactivity on application.
3. Broadcast Notification – On user login to Application, displays broadcast notifications sent from server.
4. User Favorites- User can create a list of favorite Web Apps and store them for easy access during later use.
Could you please guide me, what are the above features support by BB 10 HTML5WebWorks and which are not.
Solved! Go to Solution.
01-14-2013 04:46 PM
4. User Favorites- User can create a list of favorite Web Apps and store them for easy access during later use:
HTML5 handle it very well with local storage which persists across multi-invocation of the the appli, but is erased if user deletes the appli then re-install it.
For instance to save the var foto="http://www.mydomain.com/myphoto", call javascript function: localStorage.setItem("keyfoto",foto);
later restore with
localStorage.getItem("keyfoto")
01-14-2013 05:28 PM
hi,
"1. Apps Login page – Captures all credentials entered by user."
The Apps Login Page will come from server and i need to display it on WebView. When user submit the page i need to grab user credintials from that page.
Will it be possible using HTML5WebWorks?
01-16-2013 09:24 AM
1. Apps Login Page: You can create an HTML login page as your landing page for the App(In much the same way you would a website login page). Check credentials on your server that were posted ie: username/password then redirect to the appropriate page if there login is successfull. Does that make sense?
Does this answer point 1?
01-16-2013 09:45 AM
Thank erikjohnzon for your suggestion.