File:C:\Documents and Settings\All Users.WINDOWS\Application Data\Wild Media Server\wms.dat
Fout laden:Access violation at address 00405A04 in module 'wms.exe'. Read of address FFFFFFFA.
Load Back-up?
No entry to be found in the log book, so no clue as to what is the reason and at what time it occured.
Version 1.08.3 (and all versions before that)
Extra information (not sure if it's of any importance): The following script runs every 10 minutes because wms doesn't allways read the properties of all recordings. Yesterday I disabled the statement WmsDatabaseAutoSave in a desperate attempt to find the source of the problem. But this didn't make any difference.
Code: Select all
var
i: Integer;
AllVideoFolder: TWmsScriptMediaItem;
begin
AllVideoFolder := WmsFindMediaFolder(mfVideoAllMoviesItemID);
if (AllVideoFolder <> nil) then
for i := 0 to AllVideoFolder.ChildCount - 1 do
begin
if VarToStr(AllVideoFolder.ChildItems[i].Properties[mpiTimeLength]) > '1' then try
AllVideoFolder.ChildItems[i].Properties[mpiTimeLength]:='01:00:00.000';
except end;
if VarToStr(AllVideoFolder.ChildItems[i].Properties[mpiTimeLength]) = '' then try
AllVideoFolder.ChildItems[i].RetrieveProperties;
except end;
end;
WmsLogMessage(mtiInfo,"read properties");
//WmsDatabaseAutoSave;
ProcessMediaResult := True
end.