Hi.
We have code for creating web links that works "kind of". See the code snippet below. When a user is using the Web Client, and they click on a link created by the interntals of Integrity, the user sees a page that allows them to view the item and switch to "edit item" from the left hand menu.
When a user clicks on an link created from the function below, the browser forces the user to login again. Our users want all links to function the same - whether those links are created by the internals of Integrity, or created by our custom scripts. So, how do we get the "Session Information", or whatever is needed, to make the links that we create in our scripts to function like the links created by Integrity?
Please advise.
-Sean
function GetWebLinkForItem(anID)
{
var weblink = new java.lang.StringBuffer();
weblink.append("http://");
weblink.append(eb.getHostname());
weblink.append(":7001/im/issues?selection=" );
weblink.append( anID.toString());
return weblink + "";
}