<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.objectbox
        {mso-style-name:objectbox;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=EN-US link=blue vlink=purple><div class=WordSection1><p class=MsoNormal>I’m creating a simple GetFeatureInfo() request to grab info on points when a user clicks on my map, and GeoServer is now returning the following exception. <o:p></o:p></p><p class=MsoNormal style='margin-left:.5in'><span class=objectbox><?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE ServiceExceptionReport SYSTEM "http://geoserver.joetito.com:80/geoserver/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd"> <ServiceExceptionReport version="1.1.1" > <ServiceException code="InvalidPoint"> <b><span style='color:red'>X and Y incorrectly specified Details: org.geoserver.platform.ServiceException: X and Y incorrectly specified at </span></b>org.geoserver.wms.featureinfo.GetFeatureInfoKvpReader.read(GetFeatureInfoKvpReader.java:162) at org.geoserver.ows.Dispatcher.parseRequestKVP(Dispatcher.java:1157) at org.geoserver.ows.Dispatcher.dispatch(Dispatcher.java:488) at org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:231)<o:p></o:p></span></p><p class=MsoNormal><span class=objectbox><o:p> </o:p></span></p><p class=MsoNormal><span class=objectbox>Here is how I am creating the request:<o:p></o:p></span></p><p class=MsoNormal><span class=objectbox><o:p> </o:p></span></p><p class=MsoNormal>map.events.register('click', map, findFeaturesAtLocationOnClick); // Register users click<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>function findFeaturesAtLocationOnClick(event) {<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal> mouseLocation = map.getLonLatFromPixel(event.xy);<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal> var url = events.getFullRequestString({<o:p></o:p></p><p class=MsoNormal> REQUEST: "GetFeatureInfo",<o:p></o:p></p><p class=MsoNormal> EXCEPTIONS: "application/vnd.ogc.se_xml",<o:p></o:p></p><p class=MsoNormal> BBOX: map.getExtent().toBBOX(),<o:p></o:p></p><p class=MsoNormal> X: event.xy.x,<o:p></o:p></p><p class=MsoNormal> Y: event.xy.y,<o:p></o:p></p><p class=MsoNormal> INFO_FORMAT: 'text/plain',<o:p></o:p></p><p class=MsoNormal> QUERY_LAYERS: 'events',<o:p></o:p></p><p class=MsoNormal> FEATURE_COUNT: 100,<o:p></o:p></p><p class=MsoNormal> WIDTH: map.size.w,<o:p></o:p></p><p class=MsoNormal> HEIGHT: map.size.h},<o:p></o:p></p><p class=MsoNormal> wmsURL);<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal> OpenLayers.loadURL(url, '', this, setPopupHTML);<o:p></o:p></p><p class=MsoNormal>}<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>function setPopupHTML(response) {<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal> // In this function, the response contains the exception I mentioned above<o:p></o:p></p><p class=MsoNormal>}<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>This was working a while ago, but I can’t seem to figure out what I changed that is now making this fail <span style='font-family:Wingdings'>L</span><o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>Joe<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p></div></body></html>