Re: [OpenLayers-Users] Difficulties with GetFeatureInfo

2008-12-25 Thread mpriour
I have added it to my sandbox, opened a ticket and submitted patch. The patch has been reviewed and modified and you can see the current progress of it at: http://trac.openlayers.org/ticket/1812 glad to know that others are in someway interested in this. Matt Priour From: Eric Lemoine (via

Re: [OpenLayers-Users] Difficulties with GetFeatureInfo

2008-07-09 Thread Matt Priour
AM To: mpriour [EMAIL PROTECTED]; users@openlayers.org Subject: Re: [OpenLayers-Users] Difficulties with GetFeatureInfo Matt, i had never tried Format.GML with GetFeatureInfo responses. And indeed that'd be great to have support for this. Do you plan to contribute your work for integration

Re: [OpenLayers-Users] Difficulties with GetFeatureInfo

2008-07-09 Thread Eric Lemoine
On Wed, Jul 9, 2008 at 1:12 PM, Matt Priour [EMAIL PROTECTED] wrote: Yes, I do plan on contributing back to this wonderful OpenLayers development effort. I'll write up a ticket and submit a patch when I have it working properly. Pleased to hear that :-) Thanks. -- Eric

[OpenLayers-Users] Difficulties with GetFeatureInfo

2008-07-08 Thread Rick Wayne
Hullo all, I'm using OpenLayers and GeoServer, and am having some trouble with getting XML data out of GetFeatureInfo. If I ask GeoServer for INFO_FORMAT of application/vnd.ogc.gml, I get a response back, and it has the data I desire. But I cannot access those data as XML. I have to get

Re: [OpenLayers-Users] Difficulties with GetFeatureInfo

2008-07-08 Thread Bruce
Lemoine [EMAIL PROTECTED] To: Rick Wayne [EMAIL PROTECTED]; users@openlayers.org Sent: Tuesday, July 08, 2008 4:41 PM Subject: Re: [OpenLayers-Users] Difficulties with GetFeatureInfo Hi. Have you tried using OpenLayers.Format.GML for de-serializing the response text into feature objects? Eric

Re: [OpenLayers-Users] Difficulties with GetFeatureInfo

2008-07-08 Thread Arnd Wippermann
: [OpenLayers-Users] Difficulties with GetFeatureInfo Hullo all, I'm using OpenLayers and GeoServer, and am having some trouble with getting XML data out of GetFeatureInfo. If I ask GeoServer for INFO_FORMAT of application/vnd.ogc.gml, I get a response back, and it has the data I desire. But I

Re: [OpenLayers-Users] Difficulties with GetFeatureInfo

2008-07-08 Thread mpriour
I was actually struggling with this same problem this past month. You should use: var xmlResponse = new OpenLayers.Format.XML().read(response.responseText); this will convert the text into a valid xml object. From there you can do whatever you want to it. I am writing some convience methods