Hi Techies,
I am getting some problem while invoking Team site DCT from http servlet.
Actually I am invoking servlet doGet() that will make call to DCT.
In the servlet I am authenticating team site using CSSDK API. Authentication is successful. I am getting session String from CSSDK client
String sessiostring= client.getContext().getSessionString();
and I am setting to cookie like
Cookie cookie = new Cookie(TICKET_NAME, sessiostring);
Cookie = new Cookie(ROLE_PARAM, ROLE_VALUE);
cookie = new Cookie(USER_PARAM, usr);
cookie = new Cookie(WHICH_UI_PARAM, WHICH_UI_VALUE);
Now I am making call to DCT response.sendRedirect(
http://server/DCTVapth)
But instead of opening DCT form I am getting teamsite login Screen.
Please help me that how to avoid teamsite login screen & access DCT directly without sending username & password in the URL.
Thanks in advance
Regards,
Nageswar