Icon View Incident Report

Serious Serious
Reported By: Elaya Raja
Reported On: 3/2/2004
For: Version 4.04 Build 1
# 1609 Invalid Requests to the Database Server Result in an #15002 Error Uncompressing Data Exception

See code below. The error code should be 11308 Invalid Request.

with MySession do
   begin
   SessionName:='Remote';
   SessionType:=stRemote;
   RemoteEncryption:=true;
   RemoteAddress:='192.168.1.13';
   RemotePort:=12005;   // Wrong Port
   RemoteUser:='Admin';
   RemotePassword:='DBAdmin';
   open;
   try
     AddRemoteUser('Test','Test123456','Test User',true); // ******
     AddRemoteDatabaseUser('ElayaDB','Test',[drRead,drInsert,
                           drUpdate,drDelete]);
   finally
      Close;
   end;
end;



Resolution Resolution
Fixed Problem on 3/3/2004 in version 4.05 build 1
Image