Dear All,<br>OpenLayers used together with geoserver 2, tomcat6, Sun Java 6 on Ubuntu server 64 bit.<br>while trying to use GetFeatureInfo following problems appear: <br>1) if using GetFeatureInfo like this:<br>        map.events.register(&#39;click&#39;, map, function (e) {<br>
                    document.getElementById(&#39;nodelist&#39;).innerHTML = &quot;Loading ... please wait ...&quot;;<br>                    var params = {<br>                        REQUEST: &quot;GetFeatureInfo&quot;,<br>
                        EXCEPTIONS: &quot;application/vnd.ogc.se_xml&quot;,<br>                        BBOX: map.getExtent().toBBOX(),<br>                        X: e.xy.x,<br>                        Y: e.xy.y,<br>                        INFO_FORMAT: &#39;text/html&#39;,<br>
                        QUERY_LAYERS: map.layers[0].params.LAYERS,<br>                        FEATURE_COUNT: 50,<br>                        Srs: &#39;EPSG:32638&#39;,<br>                        Layers: &#39;Moskva&#39;,<br>
                        Styles: &#39;&#39;,<br>                        WIDTH: map.size.w,<br>                        HEIGHT: map.size.h,<br>                        format: format};<br>                    OpenLayers.loadURL(&quot;<a href="http://hboard.iwk.uni-karlsruhe.de:8080/geoserver/wms">http://hboard.iwk.uni-karlsruhe.de:8080/geoserver/wms</a>&quot;, params, this, setHTML, setHTML);<br>
                //    window.open(&quot;<a href="http://hboard.iwk.uni-karlsruhe.de:8080/geoserver/wms?service=WMS&amp;version=1.1.0&amp;request=GetMap&amp;layers=Moskva&amp;styles=&amp;bbox=-125830.05,6099218.02,153008.285,6277080.521&amp;width=517&amp;height=330&amp;srs=EPSG:32638&amp;format=application/openlayers">http://hboard.iwk.uni-karlsruhe.de:8080/geoserver/wms?service=WMS&amp;version=1.1.0&amp;request=GetMap&amp;layers=Moskva&amp;styles=&amp;bbox=-125830.05,6099218.02,153008.285,6277080.521&amp;width=517&amp;height=330&amp;srs=EPSG:32638&amp;format=application/openlayers</a>&quot;); <br>
                    OpenLayers.Event.stop(e);<br>                });<br>         }<br>           <br>        // sets the HTML provided into the nodelist element<br>        function setHTML(response){<br>            document.getElementById(&#39;nodelist&#39;).innerHTML = response.responseText;<br>
        }<br><br>clicking on maps brings up &quot;Loading ... please wait ...&quot; message only and nothing else.<br><br>2) if using in a way as described in <a href="http://trac.openlayers.org/wiki/GetFeatureInfo">http://trac.openlayers.org/wiki/GetFeatureInfo</a> nothing happens at all.<br>
3) I tried to save OpenLayers html provided by geoserver locally and it does not work as well. &quot;Loading ... please wait ...&quot; message appears for a short time then disappears and nothing happens<br><br>Any help would be highly appreciated.<br>
Alex<br>