Is there a way to use the logon token created through the RESTful call to pass the username/password to openDocuments URL?
This is what I have
var token = encodeURI(this.xSAPLoginToken);
var url = gui.data.Constants.BOE_REPORT_URL + '/BOE/OpenDocument/opendoc/openDocument.jsp?iDocID=' + cuid + '&sIDType=CUID&token='+token;
window.open(url);
I've tried not encoding the token and using encodeURI and encodeURIComponent. None of what have worked.
Is there a proper way to for the URL