I made a blackberry app which authenticates the user when he logs in but, once you log in you can't log out.
I need a logout button for the blackberry menu button.
I'm using basic authentication in java.
httpConn.setRequestProperty("Authorization", "Basic " + new String(encoded));
The encoded string is the "user:password"
I'm developing this app with the eclipse plugin.
Any ideas, tutorials or code?
Appreciated