Hi,
We are developing a n-tier solution with IIS/ASP, MTS and Oracle. We are using VB components in the MTS that are accessing the datbase with ADO / Oracle OLE DB.
In the test case we have to methods in the the same object. If we access any one of the methods from the ASP-page we have no problem. If we access both of them the rpcss.exe and mtx.exe process grows forever.
ASP-file-1
set obj=server.createobject("our_component"
obj.gethtml(id)
set obj=nothing
---
runs fine for hours hammered by Web Application Stress Tool.
---
ASP.file-2
set obj=server.createobject("our_component"
obj.getmetatags(id)
set obj=nothing
---
also runs fine for hours hammered by Web Application Stress Tool.
---
ASP.file-3
set obj=server.createobject("our_component"
obj.gethtml(id)
obj.getmetatags(id)
set obj=nothing
---
The mtx.exe and rpcss.exe grows until the application stops.
Even if we:
ASP-file-4
set obj=server.createobject("our_component"
obj.gethtml(id)
set obj=nothing
set obj=server.createobject("our_component"
obj.getmetatags(id)
set obj=nothing
---
The problem still occours. The mtx.exe and rpcss.exe grows.
Our solutions is in some respects based on FMStocks.
We are running WinNT4.0SP6a, hotfix Q265433, MDAC 2.60.6526.3, Oracle OLE DB 8.1.7.10.
Any ideas are welcome!
/J
We are developing a n-tier solution with IIS/ASP, MTS and Oracle. We are using VB components in the MTS that are accessing the datbase with ADO / Oracle OLE DB.
In the test case we have to methods in the the same object. If we access any one of the methods from the ASP-page we have no problem. If we access both of them the rpcss.exe and mtx.exe process grows forever.
ASP-file-1
set obj=server.createobject("our_component"
obj.gethtml(id)
set obj=nothing
---
runs fine for hours hammered by Web Application Stress Tool.
---
ASP.file-2
set obj=server.createobject("our_component"
obj.getmetatags(id)
set obj=nothing
---
also runs fine for hours hammered by Web Application Stress Tool.
---
ASP.file-3
set obj=server.createobject("our_component"
obj.gethtml(id)
obj.getmetatags(id)
set obj=nothing
---
The mtx.exe and rpcss.exe grows until the application stops.
Even if we:
ASP-file-4
set obj=server.createobject("our_component"
obj.gethtml(id)
set obj=nothing
set obj=server.createobject("our_component"
obj.getmetatags(id)
set obj=nothing
---
The problem still occours. The mtx.exe and rpcss.exe grows.
Our solutions is in some respects based on FMStocks.
We are running WinNT4.0SP6a, hotfix Q265433, MDAC 2.60.6526.3, Oracle OLE DB 8.1.7.10.
Any ideas are welcome!
/J