Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
trustedlogin2 agaisnt Worksite Web 8.2 Sp1
System
Hi all, have noticed any problem using trustedlogin2 agaisnt WorkSite Web 8.2 SP1 and WorkSite Server 8.3?
I have an aspx, which starts as follows for controling when the user is not logged:
IManSession oSession;
oSession = SessionContext.Current.Session;
if (oSession == null)
{
IManDMS oDMS = new iManage.WorkSite.ManDMS();
IManSession oS = oDMS.Sessions.Add("GARRIGUES21.GARRIGUES.COM");
IntPtr UToken = ((HttpWorkerRequest)((IServiceProvider) Context).GetService(typeof(HttpWorkerRequest))).GetUserToken();
int UT = UToken.ToInt32();
oS.TrustedLogin2(UT);
oSession = oS;
}
I'm having the error attached if you don't have worksite web opened.Obviusly if you have the IE with worksite web opened the aspx works fine.
And Also, I have the same aspx agasint Worksite Web 8.2 agaisnt the same Worksite Server 8.3, and it works always perfectly.
Have you seen something similiar? Do you have any idea about what to check?.
Thanks in advance
Javi
Find more posts tagged with
Comments
Migrateduser
Hi all, the problem seems to be fixed, in the IIS the enable anonymous access was checked.
If I'm not wrong, and you are using TustedLogin2() must to be unchecked.
cheers
Javi