I have an Xcelsius model with Live Office connections which will be posted on an intranet site external to BO Enterprise, and I'd like to bypass the authentication so that the user does not have to enter credentials. It is my understanding this can be done by passing a logon token from a JSP (or .net) page. I am using the following code, and I believe I'm really close to getting this to work, however I currently get an error when the dashboard loads : <br><br>
"soapenv:Client: The service cannot be found for the endpoint reference (EPR) http://<server>:<port>/dswsbobje/services/session" <br><br>
I do get a successful connection/session to the CMS. Any help anyone can provide is much appreciated! <br><br>
Here is the code I'm using in the JSP: <br><br>
<code>
<%@ page import="com.crystaldecisions.sdk.exception.SDKException, <br>
com.crystaldecisions.sdk.framework.*, <br>
com.crystaldecisions.sdk.occa.infostore.*, <br>
com.crystaldecisions.sdk.occa.security.*, <br>
java.net.*, <br>
com.crystaldecisions.Enterprise.*, <br>
com.crystaldecisions.sdk.plugin.admin.*" <br>
%> <br>
<%@ page import="java.sql.*"%> <br>
<% <br>
<br>
<br>
//----
Create BO Session and redirect to Infoview <br>
<br>
IEnterpriseSession enterpriseSession; <br>
String serializedSession = ""; <br>
<br>
/* * Set Enterprise Logon credentials. */ <br>
final String BO_CMS_NAME = "server"; <br>
final String BO_AUTH_TYPE = "secEnterprise"; <br>
final String BO_USERNAME = "username"; <br>
final String BO_PASSWORD = "password"; <br>
<br>
ILogonTokenMgr logonTokenMgr; <br>
String defaultToken = ""; <br>
<br>
/* <br>
Log onto Enterprise and serialize the Enterprise Session. <br>
*/ <br>
<br>
boolean loggedIn = true; <br>
<br>
try { <br>
enterpriseSession = CrystalEnterprise.getSessionMgr().logon(BO_USERNAME,BO_PASSWORD, BO_CMS_NAME, <br>BO_AUTH_TYPE); <br>
serializedSession = enterpriseSession.getSerializedSession(); <br>
<br>
logonTokenMgr = enterpriseSession.getLogonTokenMgr(); <br>
defaultToken = logonTokenMgr.getDefaultToken(); <br>
<br>
} <br>
catch (Exception error) <br>
{ <br>
loggedIn = false; <br>
} <br>
<br>
//----
If login successful <br>
<br>
if(loggedIn) { //only insert successful logins <br>
<br>
String Flashvars="CELogonToken=" + defaultToken + "&CEWebServiceURL=http://<server>::8080/dswsbobje/services/session"; <br>
<br>
String output = ""; <br>
<br>
output = output + "<PARAM NAME=movie VALUE='test.swf'>"; <br>
<br>
output = output + "<PARAM NAME=quality VALUE=high>"; <br>
<br>
output = output + "<PARAM NAME=FlashVars var='\"" + Flashvars + "\"'>"; <br>
<br>
output = output + "<EMBED src='test.swf' flashvars='\" " + Flashvars + "\"' quality=high bgcolor=#FFFFFF WIDTH='800' <br>HEIGHT='600' NAME='myMovieName'
<br>
ALIGN=\"\" TYPE='application/x-shockwave-flash' <br>PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'></EMBED></OBJECT>";
<br>
out.println(output); <br>
<br>
} <br>
<br>
//----
If login failed <br>
else { <br>
<br>
out.println("Failed!"); <br>
<br>
} <br>
<br>
<br>
%> <br>