Date:  09/06/2002 12:00:00 PM Msg ID:  000867
From:  Gary Thread:  000867
Subject:  FW_Enter not releasing program/procedure
I am using FW2.11 and this is my fw_enter.prg
<%
Local llRet
 Set Procedure To FWFUNCTS
 Do DefDlls
 If Type('pcAppPath') <> 'C'
  Public pcAppPath, pcAuxPath1, pcAuxPath2, pcSysAccKey, pcSubKey
  Do FWLoadPaths
 Endif
 Do FWLoadKey
 llRet = !File("ECHold.txt")
 If !llRet
     Response.Write('<H3>Claims system is suspended for maintenance</H3>')
 Endif
 Set Procedure To
Return llRet
%>
 
If I change some function in FWFuncts.prg, recompile, and try to transfer the new fxp to the server, it gives me a sharing violation.
 
If I end the channel, or stop and restart FW, I can transfer fine.
How can I find out what is causing this fxp to stay open, while all other fxps are released properly?
 
Gary