Date:  11/07/2009 11:35:51 AM Msg ID:  004051
From:  FoxWeb Support Thread:  004050
Subject:  Re: procedure not releasing in fw_exit
You must release the object, class (not classlib) and procedure in this order.
 

release oPortal

clear class EzCellClassObj

release procedure EzCellClass

 
FoxWeb Support Team
support@foxweb.com email
Sent by Ali Koumaiha on 11/07/2009 09:06:21 AM:
1 Server License
Win 2k3 running IIS
Foxweb 4.3
VFP 9 SP2
Foxweb running as Service (DLL)

only things unchecked in the configuration of FoxWeb are:
- Full paths in URLs (not checked)
- Keep PRG files (not checked)





in my fw_enter.prg
set procedure to (gcServerPath+"EzCellERP\Prg\EzCellClass") additive
public oPortal

oPortal = createobject("EzCellBizObj")
..
..
..



in my fw_exit.prg:
Set procedure to
set classlib to
release oPortal


However, when i modify EzCellClass.prg and i try to compile it, it wont let me unless i stop foxweb, compile, then, restart foxweb...

its a pain to do that..

what am i doing wrong?