| When GeoServer generates a new missing wps.xml file it starts with:
<wps>
<id>WPSInfoImpl-749ce9ad:14ed9bdaa2b:-8000</id>
<enabled>true</enabled>
However all other built-in services simply have the name of the service as id, e.g.:
<wfs>
<id>wfs</id>
<enabled>true</enabled>
<name>WFS</name>
My guess is that this is happening in the xstream loader, the legacy one used to set the id, the new one does not and some automatic machinery is setting the UUID based id. While probably not harmful, some uniformity would be appreciated. |