Pages within Weblogic Administration Console (11g) use a REST-like URLs. I would need to access the contents of a specific URL within my Weblogic administration Console in code, for instance like:
http://myWLserver.com:10000/console/console.portal?_nfpb=true&_pageLabel=DomainConfigGeneralPage&DomainConfigGeneralPortlethandle=com.bea.console.handles.JMXHandle%28%22com.bea%3AName%3DMYPAGE_001%2CType%3DDomain%22%29
But before that, I need to login to the console first in my code, similar to what we do in the login page.
How can I authenticate myself and login to the console in Java?

