----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: DotNetKasi Message 1 in Discussion Hi, I am invoking a thread to perform a backgorund process of converting PDF pages into images. Everything works fine in development evironment (Win XP, IIS 5.0, Framework 2.0). But the same is not working in staging server (Windows 2003 Server, IIS 6.0, Framework 2.0) when the application is accessed from IE. The method attached to the thread is not at all getting invoked when the application is accessed. I removed all of the code inside the method and had a simple procedure call, even then the result is same (so no issues with the image conversion process). But the same is working fine when the application is run during debug mode from VS 2005 IDE. What could be the reason? Please let me know your thoughts. Following is the sample code that invokes the method for image generation. Code Snippet Thread thread = new Thread(new ThreadStart(this.ImageAsync)); thread.IsBackground = true; thread.Start(); Thanks in Advance, Kasi ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
