Skip to main content
Make sure the following are set in <%K2WS_Dir>OutOfOfficeWeb.config:

<system.web>
...
<authentication mode="Windows" />
...
<identity impersonate="true" />
</system.web>
...
<appSettings>
<add key="ConnectionString" value="Data Source=<K2 server>; initial catalog=K2; Integrated Security=SSPI;pooling=true;enlist=false;Min Pool Size=5" />
</appSettings>
I didn't think using windows Integrated Security (WIA) could be done with OoO. Good to know - thanks Frank!
Also change debug to false in web.config.

<compilation defaultLanguage="vb" debug="false" />

Default set up has <identity impersonate="false" />.
What's the operating difference by setting it to impersonate to true for OOO?

Reply