Error executing VSSDatabase.Open(..)
I am tring to access VSS from asp.net.. It worked before. It find the right user , using impersonation, I deny anonymous users and when I check if the server path exits and it returns "true", which means it finds the path to the server from ASP.NET C#/ but when I do:
VSSDatabase vssDb = new VSSDatabaseClass();
vssDb.Open(@"\\TEST\VSS\US\srcsafe.ini","IMBack"," ");
VSSItem objProject = vssDb.get_VSSItem("$/TESTProject",false);
it gives an exception The SourceSafe database path \\TEST\VSS\US\srcsafe.ini does not exist. Please select another database.
It worked once. Cant make it work now.. Does anybody know why it is happening, even though it finds the path
to the server but it fails on vssDb.Open(...);
Thank you very much
|