aspx do not work: App-Domain could not be created

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

After restart some time is everithing ok. After some hours - some
days, problem start. Only in pool, where dll VB6 is used, aspx pages
(asp ok) does not work.

Event:
Failed to execute request because the App-Domain could not be created.
Error: 0x8007000e Not enough storage is available to complete this
operation.

Source: ASP.NET 2.0.50727.0
Event ID: 1088

OS: Windows 2003 Server SP1

HW: dual Xeon, 4GB RAM,
Server is not Domain server.
dll VB6 is used in pool where aspx pages does not work, in other pools
aspx pages work.

Any ideas?

thx
 
AlexCZ,
VB 6.0 COM Dll's are STA (Single Threaded Apartment) threading model, which
is basically incompatible with ASPX pages unless the aspcompat="true"
directive is used. At a minimum, you are likely to experience performance
issues even with this.
Peter
 
Back
Top