Although Geoserver has its own valid Security system, exposing it directly to the internet still raises concerns, especially if Geoserver is being used to host corporate data. One source of these concerns is that Geoserver offers numerous Services that have to be closed properly, and a single unintended mistake in closing these Services might lead to an unauthorised access to the Services or sensitive data. This is in the same vein as a Database (Oracle or PostgreSQL ) which has its own security system, but it will be foolhardy to make it accessible to the Internet instead of in the backend of an application where it rightfully belongs.

Geoserver Logo

Georepublic recently completed a project that relied heavily on Geoserver’s WFS-T service with data coming from PostGIS . Since a WFS-T request entails getting both the attribute data as well as the geographic component of a feature, extra care has to be done for security to ensure that none of the data are exposed.

Seasar Logo

Part of the requirements also of the project is to use the Seasar Web Framework ( Super Agile (SA) Struts2 ) in the creation of the application. And in order to place Geoserver into the backend, a Seasar Proxy service was created that receives the WFS-T xml request and passes it on into the Geoserver for actual processing. Afterwards, the Proxy receives the Geoserver response, which is then passed back to the original requesting agent.

With Java, getting the WFS-T request string is done by just creating a BufferedReader for the HTTPServletRequest class:

HttpServletRequest request = RequestUtil.getRequest();
BufferedReader reader      = request.getReader();

and then writing the request string to Geoserver via an OutputStreamWriter:

URL geoURL = new URL(getGeoServerURL());
geoConn    = (HttpURLConnection) geoURL.openConnection();

geoConn.setRequestProperty("Content-Type", "text/xml");

wr = new OutputStreamWriter(geoConn.getOutputStream(),
                            REQUEST_ENCODE_NAME);
wr.write(getRequestMessage());
wr.flush();

while the response of Geoserver is also read by just an InputStream:

in = geoConn.getInputStream();

+---------+           +---------+            +-----------+            +---------+
|         |           |         |            |           |            |         |
| WFS-T   | =======>  | Seasar  |  =======>  | Geoserver |  =======>  | PostGIS |
| Request |           | Proxy   |            | WFS-T     |            |         |
|         |           | Service |            |           |            |         |
|         |           |         |            |           |            |         |
+---------+           +---------+            +-----------+            +---------+

But the good thing with using Seasar is that for the authentication of the Proxy service above, all that is needed is to use Seasar’s Interceptors. An Interceptor class, as the name implies, intercepts service requests of the Seasar application, and executes a particular logic first before handling it over to the requested service, depending on the logic. Interceptors are commonly used for authentication, with the login information is checked in the Session State first before going to the requested service. And since the Proxy service for Geoserver is just a regular Seasar service, it benefits right away with the authentication Interceptor.

+---------+           +---------+            +-----------+            +---------+
|         |           |         |            |           |            |         |
| WFS-T   | =======>  | Seasar  |  =======>  | Geoserver |  =======>  | PostGIS |
| Request |    |      | Proxy   |            | WFS-T     |            |         |
|         |    |      | Service |            |           |            |         |
|         |    |      |         |            |           |            |         |
+---------+    |      +---------+            +-----------+            +---------+
               |
               |
               |          +-------------+
               |          |             |
               |          | Seasar      |
               L------->  | Interceptor | ( Session Authentication )
                          | Class       |
                          |             |
                          +-------------+

So with this setup, the Geoserver is placed in the backend of a Seasar application, with only the WFS-T Proxy service exposed. And this Proxy service can only be truly accessed when a user already has a login information found in the Session State which the Interceptor class will check.

Author

Related articles

treemap.png
ENGINEERING
Leaflet example with WFS-T
December 15, 2012
wolfgang-hasselmann-P7L5011nD5s-unsplash.jpg
ENGINEERING
PostGIS and pgRouting template
February 7, 2011
mohit-kumar-6M9xiVgkoN0-unsplash.jpg
Geospatial Data

Efficiently collect, manage and exploit geospatial data to benefit from ubiquitous location information.