Releases: mapcode-foundation/mapcode-rest-service
Releases · mapcode-foundation/mapcode-rest-service
2.2.4.0
2.2.3.19
2.2.3.18
2.2.3.17
Completely refactored the source tree to create JARs for all classes in the WAR file. This
was needed to allow running the service from the command-line using java
only.
This version can be used to run the service stand-alone, without Tomcat, on a local machine.
This allows you, for example, to use the XML services from within your own local MS Excel sheet.
See the README.md on how to do this.
2.2.3.16
2.2.3.14
2.2.3.13
Added additional XML support. You can prefix methods now with xml, to make
the default output XML, rather than JSON. This is particularly useful if you
need to use an XML service, but you can't specify the correct HTTP header.
Works with Google spreadsheets and Microsoft Excel.
In Google spreadsheets use the =IMPORTXML function, e.g.
=IMPORTXML("http://api.mapcode.com/mapcode/xml/codes/52.376514,4.908543";"//local")
In Microsoft Excel, use the =WEBSERVICE function.
2.2.3.12
- Added full XML support, next to JSON. Use the HTTP Accept header to specify
the expected format: application/json or application/xml. (This features allows
users of MS Excel to use the "=WEBSERVICE()" function, on Windows.) - Added unit tests to test the REST services.
- Added debug mode (parameter debug=true), which prevents writing to the trace database.
- Fixed content type on GET operations to accept anything.