Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Extension GetFeatureInfo] Revoir la procédure de contrôle des exceptions des requêtes *getFeatureInfo* #281

Open
lowzonenose opened this issue Nov 7, 2020 · 1 comment
Assignees

Comments

@lowzonenose
Copy link
Contributor

lowzonenose commented Nov 7, 2020

Capturer correctement les exceptions sur une requête getFeatureInfo sur des données raster.

Capture-20201107142358-656x620

Une requête getFeatureInfo peut répondre en 200, mais avec une exception dans le contenu de la réponse.

Exemple de requête :
https://wxs.ign.fr/an7nvfzojv5wa96dsga5nk8w/geoportail/v/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetFeatureInfo&FORMAT=image%2Fpng&TRANSPARENT=TRUE&QUERY_LAYERS=VILLAGESETAPE&LAYERS=VILLAGESETAPE&INFO_FORMAT=text%2Fhtml&I=50&J=50&CRS=EPSG%3A3857&STYLES=&WIDTH=101&HEIGHT=101&BBOX=385233.65734953526%2C6001785.588203129%2C632278.1327672249%2C6248830.06362082

Exemple d'exception :

<?xml version="1.0" encoding="UTF-8"?>
<ServiceExceptionReport version="1.3.0" xmlns="http://www.opengis.net/ogc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/ogc https://wxs.ign.fr/geoportail/v/schemas/wms/1.3.0/exceptions_1_3_0.xsd">
<ServiceException>java.lang.RuntimeException: (...)</ServiceException>
</ServiceExceptionReport>

Actuellement, les exceptions sont capturées en recherchant des mots clés dans la réponse :

// a t on une exception ?
if (resp.trim().length === 0 ||
     resp.indexOf("java.lang.NullPointerException") !== -1 ||
     resp.indexOf("java.lang.RuntimeException") !== -1 ||
     resp.indexOf("not queryable") !== -1) {
     // rien à afficher
     exception = true;
}

Il serait judicieux de changer la manière de rechercher les exceptions dans la réponse du service...
En plus de ne pas afficher les messages d'exceptions techniques, un message d'information utilisateur serait à mettre en place.

@lowzonenose
Copy link
Contributor Author

L'implémentation est à faire sur le fichier : src/OpenLayers/GfiUtils.js
Un parser est disponible dans la fonction : displayInfo afin de tester la balise ServiceExceptionReport

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants