M
MEHDI
Here is the portion of the asp pages(vb script) that fails:
SrcSafeIni = "F:\Microsoft Visual Studio\VSS\441_VSS\srcsafe.ini"
UserName ="Admin"
Password =""
'On Error Resume Next
Set objVSSDatabase = Server.CreateObject("Sourcesafe")
objVSSDatabase.Open SrcSafeIni,UserName,Password
If Err.Number <> 0 Then
Response.Write "Could Not Connect to the Repository Database"
Response.Write "<BR>"
Response.Write Err.Number & "*****" & Err.Description
Err.Clear
'Response.Write "test"
'Response.Write objVSSDatabase.DatabaseName
End If
The error is :
Error Type:
Microsoft VBScript runtime (0x800A0007)
Out of memory: 'Open'
The same script will work fine if it was adapted and saved as a vbs
file and run by double cliking on it, so this probably means that
something needs to be done to the IIS settings....
Any help will be appreciated.
Thank you
SrcSafeIni = "F:\Microsoft Visual Studio\VSS\441_VSS\srcsafe.ini"
UserName ="Admin"
Password =""
'On Error Resume Next
Set objVSSDatabase = Server.CreateObject("Sourcesafe")
objVSSDatabase.Open SrcSafeIni,UserName,Password
If Err.Number <> 0 Then
Response.Write "Could Not Connect to the Repository Database"
Response.Write "<BR>"
Response.Write Err.Number & "*****" & Err.Description
Err.Clear
'Response.Write "test"
'Response.Write objVSSDatabase.DatabaseName
End If
The error is :
Error Type:
Microsoft VBScript runtime (0x800A0007)
Out of memory: 'Open'
The same script will work fine if it was adapted and saved as a vbs
file and run by double cliking on it, so this probably means that
something needs to be done to the IIS settings....
Any help will be appreciated.
Thank you