Thank you very much for your help.
-We are connecting to the data base as Classic (OS authentication and authorization) and we never need to put Login and password it take OPerating system authentication.
- It is our own data base.
- Windows XP as hosting server
- Delphi 5
- This is the code, a easy Delphi CGI, It only try to open a table, it run good
in some servers
http://12.149.78.167/ra/test_error.exe/test
but in other with same configuration haver error :
Btrieve Error 171. DBI Error Code = Titan (BDE) Error 171
.
.
.
procedure TWebModule1.WebModule1WebActionItem3Action(Sender: TObject;
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
begin
tbDatabase1.AliasName := '\\ra-486\sys\appl\';
Try
tbTable1.open;
response.content := 'The table was open...'
except
On e : exception do
begin
response.content := 'Error openning...<br>' + E.Message;
end;
end;
end;
As you can see it is a very easy example, what happen ?, I'm really frustrated.
Thank you, one more time.