Hi,
Indeed there seems to be issue with the Browser 7.3.1.37 on passing username and password
Code:
xmlHttpReq.open("GET", url,true, user, pass); //does not work
What you can do to workaround this problem is to generate Authorization header by yourself.
You'll need base64 encoded username and password pair separated by semicolon. I was using following library and it worked OK.
http://www.webtoolkit.info/javascript-base64.html
Code:
var auth = Base64.encode(user+':'+pass);
Then in XMLHttpRequest set custom Authorization Header and declare it to be "Basic" type.
Code:
xmlHttpReq.setRequestHeader("Authorization", "Basic "+auth);
Please note that in URL authentication support was dropped intentionally. If your widget was using it, please start using the workaround.
http://www.developer.nokia.com/Commu...in_Browser_7.3
Br,
Ilkka