Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi Advance Thanks for your help.

Status
Not open for further replies.

savi

Programmer
Oct 17, 2002
18
0
0
US
Hi

Advance Thanks for your help.

I called a CSP page from JSP page, I have a link in JSP for CSP, When I open new IE browser window for JSP application and click that CSP link first time it works fine. But if I click second time from the same browser, I did not get the page instead of that getting "The Page cannot be found" error page. If I open new browser and run again its working fine. I am guessing this is some kind of session issue going on here. But I am not sure about this.
I am using the codes in my CSP like

Set SessionManager = Server.CreateObject("CrystalEnterprise.SessionMgr")
Set oEnterpriseSession = SessionManager.Logon(UserID, Password, APS,"secEnterprise")

Set IStore = oEnterpriseSession.Service("","InfoStore")
Set LogonTokenMgr = oEnterpriseSession.LogonTokenMgr
strLogonToken = LogonTokenMgr.CreateLogonToken("", 1, 500)

Response.Cookies("WCSLOGONTOKEN") = strLogonToken

and calling reports through url.

could any one please help me for this issue.

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top