<div dir="ltr">Hello,<div><br></div><div>Your python script should also send the below, it will force the browse to download the content.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
Content-Disposition: attachment; filename=file_name.json</blockquote><div><br></div><div>If you don't have control over the server you could try HTML5:</div><div><a href="http://updates.html5rocks.com/2011/08/Saving-generated-files-on-the-client-side">http://updates.html5rocks.com/2011/08/Saving-generated-files-on-the-client-side</a></div>
<div><br></div><div>There are a couple of libraries which make this work in older IE too by using Flash. </div><div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jul 31, 2014 at 11:46 PM, VictoriaH <span dir="ltr"><<a href="mailto:bhudspeth@edac.unm.edu" target="_blank">bhudspeth@edac.unm.edu</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I have OpenLayers request that calls a python function that returns a<br>
GeoJSON formatted text. I can display the text contents in an alert box, but<br>
would like to instead force the browser to offer the text as a GeoJSON file<br>
to be downloaded. I would appreciate any help that anyone can offer on how<br>
to do this...<br>
<br>
My python script successfully returns a  "Content-Type: application/json\n"<br>
text to the browser, and my request and response code look like this so far:<br>
<br>
                var PM_request = OpenLayers.Request.GET({<br>
                    url:'scripts/geoTiff2GeoJSON_edited.py',<br>
                    callback:processData,<br>
                    params:coords<br>
                    //headers:{"Content-Type": "application/json\n"}<br>
                });<br>
<br>
                function processData(PM_request) {<br>
                    var PMjson = new<br>
OpenLayers.Format.JSON().read(PM_request.responseText);<br>
                    //console.log(PMjson);<br>
                    alert("Result is:" + PM_request.responseText);<br>
                }<br>
<br>
<br>
I would like to add functionality to the processData function above that<br>
opens a download window of some sort where once can acquire the GeoJSON<br>
file...<br>
<br>
Thank you,<br>
<br>
VickH<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://osgeo-org.1560.x6.nabble.com/How-to-force-browser-to-download-a-file-with-a-OpenLayers-request-response-tp5154502.html" target="_blank">http://osgeo-org.1560.x6.nabble.com/How-to-force-browser-to-download-a-file-with-a-OpenLayers-request-response-tp5154502.html</a><br>

Sent from the OpenLayers Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.osgeo.org">Users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a><br>
</blockquote></div><br></div>