<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<div class="moz-text-flowed"
 style="font-family: -moz-fixed; font-size: 12px;" lang="x-western">Hi
all,
<br>
<br>
I wish to update my problem in hope to get more precise help.
<br>
I checked what is returned by the server and every time and do a manual
attempt by entering the request URL myself I get "no features were
found".
<br>
Is it because of the server or from OpenLayers?
<br>
I tried to change the name of the layer in the reuqest to something
random, and I received a message telling that the feature type was not
found.
<br>
<br>
So I guess that it is querying the server with something that exists.
But it can't get any feature from the database. Again, if anyone has
any experience of OpenLayers getting layers from geoserver with
PostGIS, please tell me if there is anything to do in the database to
make ot work.
<br>
<br>
<br>
Thank you <span class="moz-smiley-s1"><span> :) </span></span>
<br>
<br>
Marc
<br>
<br>
<br>
Tim Schaub wrote:
<br>
<blockquote type="cite">Hey Marc-
  <br>
  <br>
Marc Desharnais wrote:
  <br>
  <blockquote type="cite">To get the getfeatureInfo working. I get the
loading message in the div section 'nodeList'. The problem is that it
never seems to get an answer.
    <br>
I get the checkpoint popup when I click the map so I guess that this
part is executed well. But it stays forever with the loading message.
    <br>
So probably "wmsLayer1.getFullRequestString" is not correct or my
database is not quite right... I just have a layer with points.
    <br>
And I want to query information about thoise points in the database to
display it beside the map.
    <br>
  </blockquote>
  <br>
Since you are making an asynchronous request for the GetFeatureInfo
results, you are subject to the same origin policies that browsers
enforce.
  <br>
  <br>
This means that your GetFeatureInfo request won't go anywhere unless it
is requested with the same protocol, from the same port, and on the
same host as the request that initiated your application (see [1]).
  <br>
  <br>
If this sounds like your issue (i.e. you are making the request to
GeoServer on a different port than the request for the rest of your
application), see the FAQ on setting up a proxy host [2].&nbsp; Note that if
you are using the proxy.cgi that comes in the OL examples directory,
you will need to add your host (and port) to the accepted list (in
proxy.cgi).
  <br>
  <br>
  <blockquote type="cite"><br>
I'm using a local Geoserver with PostGIS. I would like to know too how
the getFeatureInfo query works.
    <br>
Like if I have anything I have to do specially into the database. I
figure that it's querying the database for info, but what info?
    <br>
Do I have to define what I want to be queried?&nbsp; Maybe this is off-topic
here sorry.
    <br>
  </blockquote>
  <br>
Also, use Firebug to watch the requests go out.&nbsp; Copy the request and
paste in to a new tab to make sure you are getting what you expect.&nbsp; If
you don't get what you expect, then you'll have to troubleshoot your
GeoServer configuration.
  <br>
  <br>
Hope that helps some,
  <br>
Tim
  <br>
  <br>
[1] <a class="moz-txt-link-freetext"
 href="http://www.mozilla.org/projects/security/components/same-origin.html">http://www.mozilla.org/projects/security/components/same-origin.html</a>
  <br>
[2] <a class="moz-txt-link-freetext"
 href="http://trac.openlayers.org/wiki/FrequentlyAskedQuestions#ProxyHost">http://trac.openlayers.org/wiki/FrequentlyAskedQuestions#ProxyHost</a>
  <br>
  <br>
  <br>
  <blockquote type="cite"><br>
I searched for informations on the UTIL package for openlayers but
didn't find real documentation about that.
    <br>
    <br>
Please let me know if you would like more info.
    <br>
    <br>
    <br>
Any help will be greatly appreciated.
    <br>
Thanks in advance
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
/******* CODE START HERE - !!! Note that this code is not complete. I
posted only the parts I found relevant. !!!
    <br>
&nbsp; function init(){
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var map = new OpenLayers.Map($('map'), {controls:[]} );
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OpenLayers.IMAGE_RELOAD_ATTEMPTS = 5;
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var yahooLayer = new
OpenLayers.Layer.Yahoo( "Globe (Yahoo)", {reproject: "true"} );
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addLayer(yahooLayer);
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var wmsLayer1 = new OpenLayers.Layer.WMS(
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "POSTGIS villes", <a class="moz-txt-link-rfc2396E"
 href="http://ulysse.cmc.ec.gc.ca:8081/geoserver/wms">"http://ulysse.cmc.ec.gc.ca:8081/geoserver/wms"</a>,
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; layers: 'topp:villes',
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; format: 'image/png' , transparent: "true", reproject:
"true"}
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addLayer(wmsLayer1);
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addControl(new
OpenLayers.Control.LayerSwitcher());
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addControl(new OpenLayers.Control.NavToolbar());
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addControl(new OpenLayers.Control.PanZoomBar($('map')));
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addControl(new OpenLayers.Control.MouseDefaults());
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addControl(new OpenLayers.Control.Scale($('scale')));
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addControl(new OpenLayers.Control.MousePosition({element:
$('position')}));
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.events.register('click', map, function (e) {
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OpenLayers.Util.getElement('nodeList').innerHTML =
"&lt;b&gt;T&eacute;l&eacute;chargement d'information...&lt;br&gt; Veuillez Attendre
SVP...&lt;/b&gt;";
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var url =&nbsp; wmsLayer1.getFullRequestString({
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REQUEST: "GetFeatureInfo",
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EXCEPTIONS: "application/vnd.ogc.se_xml",
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; BBOX: wmsLayer1.map.getExtent().toBBOX(),
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; X: e.xy.x,
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Y: e.xy.y,
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; INFO_FORMAT: 'text/html',
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QUERY_LAYERS: wmsLayer1.params.LAYERS,
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WIDTH: wmsLayer1.map.size.w,
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HEIGHT: wmsLayer1.map.size.h});
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OpenLayers.loadURL(url, '', this, setHTML);
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; alert("Checkpoint");
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Event.stop(e);
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; });
    <br>
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function setHTML(response) {
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; alert("before answer");
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OpenLayers.Util.getElement('nodeList').innerHTML =
response.responseText;
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; alert("after answer");
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
    <br>
    <br>
/********* CODE STOPS HERE
    <br>
_______________________________________________
    <br>
Users mailing list
    <br>
    <a class="moz-txt-link-abbreviated"
 href="mailto:Users@openlayers.org">Users@openlayers.org</a>
    <br>
    <a class="moz-txt-link-freetext"
 href="http://openlayers.org/mailman/listinfo/users">http://openlayers.org/mailman/listinfo/users</a>
    <br>
  </blockquote>
  <br>
</blockquote>
<br>
<br>
</div>
</body>
</html>