B4J Question [abmaterial]can't login in ipad or iphone

liulifeng77

Active Member
Licensed User
Longtime User
I traced the session("IsAuthorized") , in the abmapplication, it's true, but navigate to the InitialPage, it's null.
It works well in computer and android browser.
 

liulifeng77

Active Member
Licensed User
Longtime User
I used abmsessioncreator.but can't login.
I test the demo in the iphone and ipad(even mac os in vmware), it can navigate to the aboutpage,and after a while, turn to the login page automatically.
It seems abmsessioncreator doesn't work.

anybody have the same trouble?
 
Last edited:
Upvote 0

alwaysbusy

Expert
Licensed User
Longtime User
do this:

replace in the StarServer() method:

srvr.AddFilter("/js/b4j_ws.js", "ABMSessionCreator", False)

with:

srvr.AddFilter("/js/b4j_ws.min.js", "ABMSessionCreator", False)

Make sure you are now using the new html files in your browser! Easiest way is to increase your AppVersion in ABMShared:

Public AppVersion As String ="4" ' <--- plus 1

Or you will have to manually refresh (e.g. F5 on your desktop browser)
 
Upvote 0
Top