0

I'm trying to connect to IBM FileNet from my ASP.Net application using Kerberos. My AppPool is running under LocalSystem account. There is a "Trust computer for delegation" permission at AD. There is impersonation enabled at IIS for application. But I'm still getting

SecurityException: WSE594: InitializeSecurityContext call failed with the following error message: A specified logon session does not exist. It may already have been terminated.

What am I missing?

abarisone
  • 3,707
  • 11
  • 35
  • 54
Horosho
  • 647
  • 1
  • 8
  • 22

1 Answers1

0

I don't have enough points to comment, so I have to post an answer instead.

You are not really giving enough information here. Your error is a WSE error, and may not have anything to do with FileNet.

It may help to answer these questions:

  1. Have you already set up FileNet for Kerberos SSO and tested to ensure it works?
  2. What version of FileNet are you running? (If you still have access to FEM, you can use it to test Kerberos.
  3. Why are you using WSE? MS cut support (a long time ago) and has replaced it with WCF. I only ask as you might find it easier to implement WCF.

You might want to give Implementing Kerberos a read.

  • Thank you! Yes, i've allready set up SSO and ensured it works by accessing FileNet with FEM using integrated login. I'm using WSE because .Net API is using it. My FileNet version is 5.0 – Horosho Dec 09 '15 at 07:13