I can launch the web site successfully.
But when I try and launch the Admin tool, I get this error.
Linda:
Yes, you are correct. It was installed as part of the Server.
but now, when I try and open the Admin tool, I get this error.
System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.NullReferenceException: Object reference not set to an instance of an object.
at VaultServiceAPILib.VaultServiceAPISystem.DoLogin(Boolean bAdminLogin, HttpApplicationState has, HttpSessionState hss, String strHostname, Boolean bUseFullFiles, String strLogin, String strPassword, String strRMKey, String& strAuthToken)
at VaultService.VaultAdminService.Login(String strHostname, Boolean bUseFullFiles, String username, String strEncryptedPassword, String strRMKey, String& strAuthToken)
--- End of inner exception stack trace ---
Can you assist?
Can't Launch the Admin Tool
Moderator: SourceGear
I fofund out why this error occurs.
Sharepoint, by dafualt, turns session off. This is done by the tab <clear />in the <httpModules> section.
So for VaultService web.config I added these lines and it works now.
<httpModules>
<add name="Session" type="System.Web.SessionState.SessionStateModule"/>
</httpModules>
Thanks
Tom
Sharepoint, by dafualt, turns session off. This is done by the tab <clear />in the <httpModules> section.
So for VaultService web.config I added these lines and it works now.
<httpModules>
<add name="Session" type="System.Web.SessionState.SessionStateModule"/>
</httpModules>
Thanks
Tom