Welcome to HostingForumz.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Help - StackOverflow exception

 
   Web Hosting Problem Solving Community! (Home) -> IIS RSS
Next:  IIS 5.0 Backup automation?  
Author Message
fred1

External


Since: Nov 24, 2003
Posts: 6



(Msg. 1) Posted: Mon Nov 24, 2003 9:29 am
Post subject: Help - StackOverflow exception
Archived from groups: microsoft>public>windbg, others (more info?)

I used adplus to create one crash dump for a dllhost process. The
crash was generated by a StackOverflow exception. What I must make to
discover which is the defective asp page? What I make now?

Stack overflow - code c00000fd (first chance)
Faulting stack below

0226fb5c 00000000 00000000 asp!_chkstk+0x17
00020d30 74a33ca0 7c57b580 asp!CResponse::WriteHeaders+0x4e8
00000000 00000000 01d91f20 asp!CResponse::FinalFlush+0x11d
00000000 000bbb28 0226fd48 asp!CHitObj::ViperAsyncCallback+0x492
00000000 77aa1dc5 01d91f20 asp!CViperAsyncRequest::OnCall+0x3f
01d91f20 77a536e8 00000000 COMSVCS!STAActivityWorkHelper+0xa
00075890 00085f58 787c2b70 ole32!EnterForCallback+0x6a
00085f58 787c2b70 01d91f20 ole32!SwitchForCallback+0x12b
00085f58 787c2b70 01d91f20 ole32!PerformCallback+0x50
000769a0 787c2b70 01d91f20
ole32!CObjectContext::InternalContextCallback+0x10d
000769a0 787c2b70 01d91f20 ole32!CObjectContext::DoCallback+0x1a
00000032 00000000 0226ffec COMSVCS!STAActivityWork::DoWork+0x73
00adf364 00000032 00000000 COMSVCS!STAThread::STAThreadWorker+0x2bf
787c18f8 00adf364 00000000 KERNEL32!BaseThreadStart+0x52

 >> Stay informed about: Help - StackOverflow exception 
Back to top
Login to vote
patfilot

External


Since: Aug 24, 2003
Posts: 1478



(Msg. 2) Posted: Mon Nov 24, 2003 11:04 am
Post subject: Re: Help - StackOverflow exception [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

You can try:

dc 01d91f20 (3rd parameter to ::OnCall)

That said, I think you are hitting a bug b/c the ASP page is no longer
executing. It has completed execution and this thread is getting ready to
pipe the results to the wire but the result set is too large. Have you
installed the latest updates?

Pat

"Fred" <fred.DeleteThis@tbiz.com.br> wrote in message
news:95a83e37.0311240629.64de40f2@posting.google.com...
 > I used adplus to create one crash dump for a dllhost process. The
 > crash was generated by a StackOverflow exception. What I must make to
 > discover which is the defective asp page? What I make now?
 >
 > Stack overflow - code c00000fd (first chance)
 > Faulting stack below
 >
 > 0226fb5c 00000000 00000000 asp!_chkstk+0x17
 > 00020d30 74a33ca0 7c57b580 asp!CResponse::WriteHeaders+0x4e8
 > 00000000 00000000 01d91f20 asp!CResponse::FinalFlush+0x11d
 > 00000000 000bbb28 0226fd48 asp!CHitObj::ViperAsyncCallback+0x492
 > 00000000 77aa1dc5 01d91f20 asp!CViperAsyncRequest::OnCall+0x3f
 > 01d91f20 77a536e8 00000000 COMSVCS!STAActivityWorkHelper+0xa
 > 00075890 00085f58 787c2b70 ole32!EnterForCallback+0x6a
 > 00085f58 787c2b70 01d91f20 ole32!SwitchForCallback+0x12b
 > 00085f58 787c2b70 01d91f20 ole32!PerformCallback+0x50
 > 000769a0 787c2b70 01d91f20
 > ole32!CObjectContext::InternalContextCallback+0x10d
 > 000769a0 787c2b70 01d91f20 ole32!CObjectContext::DoCallback+0x1a
 > 00000032 00000000 0226ffec COMSVCS!STAActivityWork::DoWork+0x73
 > 00adf364 00000032 00000000 COMSVCS!STAThread::STAThreadWorker+0x2bf
 > 787c18f8 00adf364 00000000 KERNEL32!BaseThreadStart+0x52<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: Help - StackOverflow exception 
Back to top
Login to vote
fred2

External


Since: Nov 24, 2003
Posts: 2



(Msg. 3) Posted: Mon Nov 24, 2003 12:41 pm
Post subject: Re: Help - StackOverflow exception [Login to view extended thread Info.]
Archived from groups: microsoft>public>inetserver>iis (more info?)

I already had attemped this before. Looks at the reply:

0:002> dc 01d91f20
01d91f20 749f7cc8 00000002 017d2220 00000000 .|.t.... "}.....
01d91f30 0003021a 00001000 01d90178 01d90178 ........x...x...
01d91f40 00000000 00000000 00000000 00000000 ................
01d91f50 00000000 00000000 00000000 00000000 ................
01d91f60 00000000 00000000 00000000 00000000 ................
01d91f70 00000000 00000000 00000000 00000000 ................
01d91f80 00000000 00000000 00000000 00000000 ................
01d91f90 00000000 00000000 00000000 00000000 ................

The server is with following installed software:
Ms Windows 2k sp4
MDAC 2.8
Oracle Clien 8.1.7

Before the DLLHOST starting to fall, I had observed an enormous amount
of threads inactive with calls in the MSDAORA.

What I would have to make?

Thanks,

Fred.


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 >> Stay informed about: Help - StackOverflow exception 
Back to top
Login to vote
patfilot

External


Since: Aug 24, 2003
Posts: 1478



(Msg. 4) Posted: Mon Nov 24, 2003 12:54 pm
Post subject: Re: Help - StackOverflow exception [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

It looks like the template has unloaded (which would not cause the problem).
The MSDAORA threads are just idle worker threads that are unlikely to be
related to this problem.

I would suggest opening a support incident w/MS-Support and seeing if there
is a hotfix for this.

Pat

"Frederico Lima" <fred DeleteThis @tbiz.com.br> wrote in message
news:%236K19IrsDHA.1884@TK2MSFTNGP10.phx.gbl...
 > I already had attemped this before. Looks at the reply:
 >
 > 0:002> dc 01d91f20
 > 01d91f20 749f7cc8 00000002 017d2220 00000000 .|.t.... "}.....
 > 01d91f30 0003021a 00001000 01d90178 01d90178 ........x...x...
 > 01d91f40 00000000 00000000 00000000 00000000 ................
 > 01d91f50 00000000 00000000 00000000 00000000 ................
 > 01d91f60 00000000 00000000 00000000 00000000 ................
 > 01d91f70 00000000 00000000 00000000 00000000 ................
 > 01d91f80 00000000 00000000 00000000 00000000 ................
 > 01d91f90 00000000 00000000 00000000 00000000 ................
 >
 > The server is with following installed software:
 > Ms Windows 2k sp4
 > MDAC 2.8
 > Oracle Clien 8.1.7
 >
 > Before the DLLHOST starting to fall, I had observed an enormous amount
 > of threads inactive with calls in the MSDAORA.
 >
 > What I would have to make?
 >
 > Thanks,
 >
 > Fred.
 >
 >
 > *** Sent via Developersdex <a style='text-decoration: underline;' href="http://www.developersdex.com" target="_blank">http://www.developersdex.com</a> ***
 > Don't just participate in USENET...get rewarded for it!<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Help - StackOverflow exception 
Back to top
Login to vote
fred2

External


Since: Nov 24, 2003
Posts: 2



(Msg. 5) Posted: Mon Nov 24, 2003 3:06 pm
Post subject: Re: Help - StackOverflow exception [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Pat,

I have an account in Ms Support Premier, I will pass to them the
problem. You know where I you obtain symbol file for vbscript.dll?

Thanks for your help,

Fred.



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 >> Stay informed about: Help - StackOverflow exception 
Back to top
Login to vote
patfilot

External


Since: Aug 24, 2003
Posts: 1478



(Msg. 6) Posted: Mon Nov 24, 2003 4:46 pm
Post subject: Re: Help - StackOverflow exception [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If the symbol file was not on the symbol server, then there may not be a
public version. You should ask the support engineer if there is one
available.

Pat

"Frederico Lima" <fred RemoveThis @tbiz.com.br> wrote in message
news:OYex5ZssDHA.2440@TK2MSFTNGP12.phx.gbl...
 > Pat,
 >
 > I have an account in Ms Support Premier, I will pass to them the
 > problem. You know where I you obtain symbol file for vbscript.dll?
 >
 > Thanks for your help,
 >
 > Fred.
 >
 >
 >
 > *** Sent via Developersdex <a style='text-decoration: underline;' href="http://www.developersdex.com" target="_blank">http://www.developersdex.com</a> ***
 > Don't just participate in USENET...get rewarded for it!<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Help - StackOverflow exception 
Back to top
Login to vote
Display posts from previous:   
   Web Hosting Problem Solving Community! (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]