How to trace MobileFirst 7.1 server queries under Network tab while debugging Android devices with Chrome? -


since mobilefirst 6.3, couldn't find network queries server when debugging mobilefirst app on android chrome desktop. how can enable them ?

enter image description here

see here: mobilefirst 6.3 network debug issue

the xhr requests have been moved javascript layer native layer, , why not see them in network tab in chrome dev tools.

you can bring them back, must not forget remove code app when go production. not supported , can break/stop working @ moment, effect may happen app not supported.

add following bottom in common\js\initoptions.js:

wl.androidprofiledata[wl.epfield.support_wl_native_xhr] = false; wl.iphoneprofiledata[wl.epfield.support_wl_native_xhr] = false; wl.ipadprofiledata[wl.epfield.support_wl_native_xhr] = false; wl.windowsphone8profiledata[wl.epfield.support_wl_native_xhr] = false; 

should work.


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -