CarstenHollmann

Results 20 comments of CarstenHollmann

The insertion of is supported via InsertResult since this commit: 7f4c76034ce7f08ac46eabb6fe0698d11f61aeaa

The [SWE Service Model Implementation Standard (SWES)](http://www.opengeospatial.org/standards/swes) defines the "SWES Extensions Points" (chapter 18) which allows to add further parameter/information to the requests/responses. The SOS 2.0 requests/responses are based on...

The SOS internal representation of SWE Extension is defined in this [package](https://github.com/52North/SOS/tree/develop/core/api/src/main/java/org/n52/sos/ogc/swes). And in the [AbstractServiceRequest](https://github.com/52North/SOS/blob/develop/core/api/src/main/java/org/n52/sos/request/AbstractServiceRequest.java) you can set the decoded internal representation of the SWE Extension to the request....

The used logging framework [logback](http://logback.qos.ch/) provides some [filter functionality](http://logback.qos.ch/manual/filters.html). Maybe with this it is possible to write the invalid request log statements into a separate log file. Invalid XML request...

Hi Marco, depending on the request, you can defined different filter parameters in the requests to get the information you are interested in. For example in the GetObservation request you...

Hi Marco, what you have described is _authentication and authorization_ which is not yet implemented in the 52N SOS but there are discussions in some projects how such a mechanism...

Hi @federicascolari, currently there is no script available that provides the SQL statements for an InsertObservation request. What is your exact workflow? Insert the sensor via InsertSensor and then insert...

Hi, you can run a SOS container by using the docker configuration files from the development bracnch: https://github.com/52North/SOS/tree/develop/docker/default-config and run the following command: `docker run -p 8080:8080 -v ./config:/etc/sos 52north/sos:latest`...

The config file which is used in the last image (5.1.0) does not enable the transactional operations by default and the transactional security is activated. Therefore, we have updated the...

Hi, in the SOS 4.4.x several extensions resulted in a SQL query being sent to the db for each inserted observation to prevent duplicate data. But this "check" can be...