473,785 Members | 2,784 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Server.Execute generates "Thread was being aborted"

Hi,

Long story short, we use "Server.Execute " to grab the output from an
ASPX page ...

Server.Execute( "page.aspx" , textWriter);

We've noticed that intermittantly, we get a "Thread was being aborted"
error when this method is called.

Anyone any ideas where to start looking?
Is this likely to be caused by a problem in the "page.aspx" ?
Thanks for any help
Meil
Oct 11 '08 #1
5 2842
Possibly, it's difficult to say without seeing code.

--
Regards,
Alvin Bruney

Want a free copy of VS 2008 w/ MSDN premium subscription?
Details at http://msmvps.com/blogs/alvin/Default.aspx

Auther Plug
OWC Blackbook now on download at www.lulu.com/owc

"Neil" <gi*******@gmai l.comwrote in message
news:e4******** *************** ***********@p59 g2000hsd.google groups.com...
Hi,

Long story short, we use "Server.Execute " to grab the output from an
ASPX page ...

Server.Execute( "page.aspx" , textWriter);

We've noticed that intermittantly, we get a "Thread was being aborted"
error when this method is called.

Anyone any ideas where to start looking?
Is this likely to be caused by a problem in the "page.aspx" ?
Thanks for any help
Meil
Oct 11 '08 #2
most likely the page is doing a redirect, which will cause this error.

-- bruce (sqlwork.com)

Neil wrote:
Hi,

Long story short, we use "Server.Execute " to grab the output from an
ASPX page ...

Server.Execute( "page.aspx" , textWriter);

We've noticed that intermittantly, we get a "Thread was being aborted"
error when this method is called.

Anyone any ideas where to start looking?
Is this likely to be caused by a problem in the "page.aspx" ?
Thanks for any help
Meil
Oct 11 '08 #3
My guess would be that page.aspx makes a call to Response.End or
Response.Redire ct

George.

"Neil" <gi*******@gmai l.comwrote in message
news:e4******** *************** ***********@p59 g2000hsd.google groups.com...
Hi,

Long story short, we use "Server.Execute " to grab the output from an
ASPX page ...

Server.Execute( "page.aspx" , textWriter);

We've noticed that intermittantly, we get a "Thread was being aborted"
error when this method is called.

Anyone any ideas where to start looking?
Is this likely to be caused by a problem in the "page.aspx" ?
Thanks for any help
Meil
Oct 11 '08 #4
I've a stack trace from catching the exception when "Server.Execute "
is called:

at System.Web.Http Context.InvokeC ancellableCallb ack(WaitCallbac k
callback, Object state)
at System.Web.UI.P age.AsyncPageBe ginProcessReque st(HttpContext
context, AsyncCallback callback, Object extraData)
at ASP.range_rx_in dex_aspx.BeginP rocessRequest(H ttpContext context,
AsyncCallback cb, Object data)
at System.Web.Http ServerUtility.E xecuteInternal( IHttpHandler
handler, TextWriter writer, Boolean preserveForm, Boolean
setPreviousPage , VirtualPath path, VirtualPath filePath, String
physPath, Exception error, String queryStringOver ride)
at System.Web.Http ServerUtility.E xecute(String path, TextWriter
writer, Boolean preserveForm)
at System.Web.Http ServerUtility.E xecute(String path, TextWriter
writer)
at HttpProxy.Execu teLocal(String url, Dictionary`2
queryStringVari ables, Boolean keepOriginalVar iables, Boolean cachable)
at HttpProxy.Execu teLocal(String url, Boolean cachable)
at RetrieveContent .CallHttpProxy( )
at RetrieveContent .RefreshContent ()
at ASP.range_index _aspx.RenderCon tent(Boolean fromHistory)

I've looked at the page in question, "range_rx_index _aspx", but
haven't found any obvious "Response.Redir ect" or "Response.E nd".
Anyone any advice on how to track this one down?

Cheers
Neil
Oct 12 '08 #5
On 12 Oct, 16:55, Neil <gibbon...@gmai l.comwrote:
I've a stack trace from catching the exception when "Server.Execute "
is called:

* at System.Web.Http Context.InvokeC ancellableCallb ack(WaitCallbac k
callback, Object state)
* at System.Web.UI.P age.AsyncPageBe ginProcessReque st(HttpContext
context, AsyncCallback callback, Object extraData)
* at ASP.range_rx_in dex_aspx.BeginP rocessRequest(H ttpContext context,
AsyncCallback cb, Object data)
* at System.Web.Http ServerUtility.E xecuteInternal( IHttpHandler
handler, TextWriter writer, Boolean preserveForm, Boolean
setPreviousPage , VirtualPath path, VirtualPath filePath, String
physPath, Exception error, String queryStringOver ride)
* at System.Web.Http ServerUtility.E xecute(String path, TextWriter
writer, Boolean preserveForm)
* at System.Web.Http ServerUtility.E xecute(String path, TextWriter
writer)
* at HttpProxy.Execu teLocal(String url, Dictionary`2
queryStringVari ables, Boolean keepOriginalVar iables, Boolean cachable)
* at HttpProxy.Execu teLocal(String url, Boolean cachable)
* at RetrieveContent .CallHttpProxy( )
* at RetrieveContent .RefreshContent ()
* at ASP.range_index _aspx.RenderCon tent(Boolean fromHistory)

I've looked at the page in question, "range_rx_index _aspx", but
haven't found any obvious "Response.Redir ect" or "Response.E nd".
Anyone any advice on how to track this one down?

Cheers

Neil
Noticed that the page being executed is missing a image, which
generates a 404, which is being handled by our custom 404 page. Could
this be the cause of the aborted thread?

Cheers
Neil
Oct 12 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
6510
by: Elliot M. Rodriguez | last post by:
A few of our customers cannot access one of the pages on our vb.net asp.net site. The problems are limited to only a few people, but these people have the problem regularly. The page in question is a simple details page from a link selected from another page. The details page calls a procedure that calls our database, returns a recordset, and does some simple binding to some web controls. This page works for most of our customers. For...
3
2947
by: Stephen Miller | last post by:
I have an ASP.Net application that sends a NetworkStream to a .Net Service, which has a TcpListener listening on a port for the ASP.Net client. When it receives a request it creates a new thread with the AddressOf a class that runs a long data intensive process that can take between 1-15 minutes and results in the creation of a uniquely named file. Meanwhile, I want my ASP.Net application to sit and wait until the file appears at a...
5
2031
by: Alan Silver | last post by:
Hello, I have a page that is supposed to do some checking, and if OK, set a session variable before redirecting to another page. The following code is a simplified version, I have hard-coded the basket ID and removed a load of extra checking... public partial class GoToCheckout : Page { public void Page_Load(Object o, EventArgs e) { try {
4
6074
by: hitendra15 | last post by:
Hi following is the code which sends file to the browser means user can download file, but the code generates error message Thread Being Aborted., will any one put their thoughts protected void SendFileToBrowser(string strpath) { try { FileInfo objFileInfo = new FileInfo(strpath);
4
2902
by: R.A.M. | last post by:
Hello, Could you help me plase? I have an ASP.NET page with "Search" button; when button is clicked Search_Click is called; here's the code: protected void Search_Click(object sender, EventArgs e) { Debug.WriteLine("WWWPage.Search_Click()"); ... try
1
3018
by: R.A.M. | last post by:
Hello, Could you help me plase? I am describing my problem second time because I haven't got a solution. I have an ASP.NET page with "Search" button; when button is clicked Search_Click is called; here's the code: protected void Search_Click(object sender, EventArgs e) { Debug.WriteLine("WWWPage.Search_Click()"); ...
4
4921
by: Totto | last post by:
Hi, I'm doing a server.transfer from a click event of a button, but an exception is raised with "Thread was being aborted" Anyone know why? Thanks Tor
2
2680
by: =?Utf-8?B?RGFuZGFuIFpoYW5n?= | last post by:
I used Response.Redirect("other.aspx") in my application. This will arise the exception "Thread is being aborted". How can i get rid of this exception? BTW, i can not use the Response.Redirect("other.aspx",false)
1
3228
by: active | last post by:
When I run an app outside of the IDE I get the exception Thread was being aborted Does that error mean something to you? Any idea what might be causing it? ++++++++++++++++
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10152
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8974
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7500
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3650
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2880
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.