O.k., newguy question...
I am logging onto CE and I create the session object then call the logon and pass the username, pass, aps, and authent; like this:
<%
Option Explicit
dim user, pass, aps, auth, sm, es, logontokenmgr, logontoken
aps=Request.ServerVariables("WCS_NAME_SERVER"
user=request.form("txtUser"
pass=request.form("txtPass"
auth=request.form("txtAuth"
set sm=createobject("CrystalEnterprise.SessionMgr"
response.write "sm done<br>"
set es=sm.Logon(user,pass,aps,auth)
response.write "es done<br>"
However, I get an error at the "Set es" line for:
"Plugin Manager error: Unable to locate the requested plugin Enterprise on the server."
What did I miss?
Chris
DFW Crystal User Group
I am logging onto CE and I create the session object then call the logon and pass the username, pass, aps, and authent; like this:
<%
Option Explicit
dim user, pass, aps, auth, sm, es, logontokenmgr, logontoken
aps=Request.ServerVariables("WCS_NAME_SERVER"
user=request.form("txtUser"
pass=request.form("txtPass"
auth=request.form("txtAuth"
set sm=createobject("CrystalEnterprise.SessionMgr"
response.write "sm done<br>"
set es=sm.Logon(user,pass,aps,auth)
response.write "es done<br>"
However, I get an error at the "Set es" line for:
"Plugin Manager error: Unable to locate the requested plugin Enterprise on the server."
What did I miss?
Chris
DFW Crystal User Group