Hello :)
I try to start jira in web browser component in swing application.
It's not problem but I would like to login JIRA from code without login form. I do that by soap services.
It's possible to merge soap session with http session? (When jira page is open user is login)?
Thanks for your help!!!
The solution for this problem is using HttpClient and invoke jira page as POST with os_username and os_password parameteres. The response return the cookis with the JSESSIONID.
After that is necessery to set JSESSIONID in cookies tree of web browser component.
Soap is just a protocol OVER http. So a "soap session" IS a HTTP session.
Excerpt from real code:
JiraSoapServiceServiceLocator loginLocator = new JiraSoapServiceServiceLocator(); JirasoapserviceV2SoapBindingStub loginStub = (JirasoapserviceV2SoapBindingStub) loginLocator.getJirasoapserviceV2(); loginStub._setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, loginEndpoint); String token = loginStub.login(user, passwd); // this is the token required by all soap services ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank for the answer.
I have the same code to login but, I my application I have :
WebBrowserComponent webBrowserComponent = new WebBrowserComponent(); webBrowserComponent.navigate("url_to_jira"); panel.add(webBrowserComponent);
This code open jira page and requiring loging. I would like to login by sopa service and modify http head
or page DOM, or cookies to open jira page as logged user.
It is possible?
As WebBrowserComponent I using Native Swing - The DJ project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.