G
Guest
Does anyone knows of any issues/problems associated with sending xml file via
https?
I have a button which exports data records using DataSet.GetXML() method
and sending it over the https and clients (outside the firewall) apparently
having problems with obtaining the xml file. Following is a snippet of the
actual code which generates the xml for export.
HttpContext.Current.Response.ClearContent();
HttpContext.Current.Response.ContentType = "text/xml";
HttpContext.Current.Response.AddHeader("content-disposition","attachment;
filename=" + exportFileName);
HttpContext.Current.Response.Output.Write(dataSet.GetXml());
HttpContext.Current.Response.End();
Apparently the error "Internet Explorer cannot download myPage.aspx from
www... Internet explorer was not able to open this Internet site. ...."
Is it the issue with https or is it the client's firewall settings which
could have prevented this type of data streaming (xml)?
Any suggestion is greatly appreciated.
Calvin
https?
I have a button which exports data records using DataSet.GetXML() method
and sending it over the https and clients (outside the firewall) apparently
having problems with obtaining the xml file. Following is a snippet of the
actual code which generates the xml for export.
HttpContext.Current.Response.ClearContent();
HttpContext.Current.Response.ContentType = "text/xml";
HttpContext.Current.Response.AddHeader("content-disposition","attachment;
filename=" + exportFileName);
HttpContext.Current.Response.Output.Write(dataSet.GetXml());
HttpContext.Current.Response.End();
Apparently the error "Internet Explorer cannot download myPage.aspx from
www... Internet explorer was not able to open this Internet site. ...."
Is it the issue with https or is it the client's firewall settings which
could have prevented this type of data streaming (xml)?
Any suggestion is greatly appreciated.
Calvin