|
Home > Archive > IIS ASP > June 2006 > 403 on ASP page
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| erica.cooksey@gmail.com 2006-06-30, 1:23 pm |
| I am having a great deal of trouble with this, hopefully someone can
help me out!
I have a JNI Java applet that accesses an ASP page. The page looks like
this:
Dim myObj
Set myObj=Server.CreateObject("myDLL.myClass")
myObj.Execute()
Set mObj = Nothing
This is accessed numerous times throughout the run of the applet. For
the first x number of accesses, this works fine. However, after an
indeterminate number of accesses, the page returns a 403 and I am no
longer able to call myDLL. Does anyone know what could be the cause of
this?
Thanks,
Erica
| |
| Steven Burn 2006-06-30, 7:20 pm |
| HTTP 403 is a standard forbidden error, meaning the server it is running on
could simply have anti-hammer methods in place .... or is borking whilst the
code is running.
Have you checked for resource leaks in the DLL?, Event Viewer?, IIS logs?
--
Regards
Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk
Keeping it FREE!
<erica.cooksey@gmail.com> wrote in message
news:1151691490.843036.174840@i40g2000cwc.googlegroups.com...
> I am having a great deal of trouble with this, hopefully someone can
> help me out!
>
> I have a JNI Java applet that accesses an ASP page. The page looks like
> this:
>
> Dim myObj
> Set myObj=Server.CreateObject("myDLL.myClass")
> myObj.Execute()
> Set mObj = Nothing
>
> This is accessed numerous times throughout the run of the applet. For
> the first x number of accesses, this works fine. However, after an
> indeterminate number of accesses, the page returns a 403 and I am no
> longer able to call myDLL. Does anyone know what could be the cause of
> this?
>
> Thanks,
> Erica
>
|
|
|
|
|