I am using the print map code from the wiki and opening the printed image in a new browser window (for testing I am just opening a Blackle page):<br><br>new OpenLayers.Request.issue({method:&#39;POST&#39;, url:printURL, params:{width:size.w, height:size.h, tiles:tiles_json}, callback: function(request) {alert(request.status); alert(request.responseText); window.open(&#39;<a href="http://www.blackle.com">http://www.blackle.com</a>&#39;,&#39;_blank&#39;);}});<br>
<br>All works as expected in Firefox. Internet Explorer 6 throws an &quot;Unknown name&quot; error at a line outside of my js file, never alerts the status code or responseText, and never opens a new window. Internet Explorer 7 returns status code 122, empty responseText, and then opens a new window, which according to <a href="http://www.codebelay.com/blog/?p=194">http://www.codebelay.com/blog/?p=194</a> occurs because IE7 is limiting the size of GET strings. The solution is to do a POST, which is what I&#39;m doing...<br>
<br>Has anyone else seen this behavior and found a solution?<br>