hi i have deploy my website on a shared hosting onn which ii7 is running, my web application i build in .net framwork 3.5, i have a download button on which i run this code to download selected file from server

code onclick event:

  try
            {

                string strRequest = Convert.ToString(Request.QueryString.Get("file"));

                if (!string.IsNullOrEmpty(strRequest))
                {

                    System.IO.FileInfo file = new System.IO.FileInfo(strRequest);
                    if (file.Exists)
                    {
                        Response.Clear();
                        Response.ContentType = ReturnExtension(System.IO.Path.GetExtension(file.Name));

                        Response.AppendHeader("Content-Disposition", "attachment; filename=" + file.Name);

                        Response.TransmitFile(strRequest);

                        Response.End();

                        HttpContext.Current.ApplicationInstance.CompleteRequest();
                        //DownloadFile(file.FullName, file.Name);

                    }
                    else
                    {
                        Response.Write("This file does not exist.");
                    }

                }
                else
                {
                    Response.Write("Please provide a file to download.");
                }
            }
            catch(HttpException ex)
            {
                Response.Write(ex.Message);
            }

i have localy deploy my application on iis 6 on which it is running fine,but on shared hosting server when i click button it givr following unhandle exception

Exception:

Server Error in '/muftp' Application.
The handle is invalid. (Exception from HRESULT: 0x80070006 (E_HANDLE))
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: The handle is invalid. (Exception from HRESULT: 0x80070006 (E_HANDLE))

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[COMException (0x80070006): The handle is invalid. (Exception from HRESULT: 0x80070006 (E_HANDLE))]

[HttpException (0x80004005): An error occurred while communicating with the remote host. The error code is 0x80070006.]
   System.Web.Hosting.IIS7WorkerRequest.RaiseCommunicationError(Int32 result, Boolean throwOnDisconnect) +2737528
   System.Web.Hosting.IIS7WorkerRequest.FlushCore(Boolean keepConnected, Int32 numBodyFragments, IntPtr[] bodyFragments, Int32[] bodyFragmentLengths, Int32[] bodyFragmentTypes) +85
   System.Web.Hosting.IIS7WorkerRequest.FlushCachedResponse(Boolean isFinal) +392
   System.Web.HttpResponse.UpdateNativeResponse(Boolean sendHeaders) +922
   System.Web.HttpRuntime.FinishRequestNotification(IIS7WorkerRequest wr, HttpContext context, RequestNotificationStatus& status) +159


Version Information: Microsoft .NET Framework Version:2.0.50727.4211; ASP.NET Version:2.0.50727.4205 

kindly tell me why this error is occur.

This is a code of Download.aspx

link|improve this question

65% accept rate
An error occurred while communicating with the remote host. The error code is 0x80070006. – David Heffernan Oct 12 '11 at 11:59
I am going to guess this is a permission problem because of your shared hosting. – Ramhound Oct 12 '11 at 11:59
Please tell me what permission should be given? – Salman Roy Oct 13 '11 at 8:28
feedback

1 Answer

EDIT: Missed the part about the page loading fine initially. I'm not exactly sure what's being passed in from your querystring, but have you tried using Server.MapPath? So instead of

System.IO.FileInfo file = new System.IO.FileInfo(strRequest);

you have

System.IO.FileInfo file = new System.IO.FileInfo(Server.MapPath(strRequest));

Let me know if that helps.

link|improve this answer
no its not a version probelm i think if it is a version probelm whole site will give same error but it is not the case, every thing is working fine except this , i more investigate the problem and i found that this error produced when i use Page.Redirect("download.aspx"); i try another mehtod i open a download.aspx in javascript popup window it works fine.i still cant understand the poblem,this method only work fine in firefox in internet explorer only popup open and download dialog not appear :( – Salman Roy Oct 13 '11 at 8:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.