Innlegg av Stefan Landrø

How to sign a certificate request with openssl

Today I had to issue a certificate signed with my own self-signed certificate (i.e. sign a CSR using my own CA). The best tutorial I could find is from 2001, and is a bit outdated and incomplete. I therefore ended up writing this tutorial. Create a minimal openssl CA configuration file and save it as [...]

ZIP, Java and security

The ZIP-specification is somewhat peculiar in that it is specified by a company called PKWARE and not by any of the regular standardization bodies like the IETF or W3C. The specification has undergone several revisions since its first release in 1989, and is currently at version 6.3.2. (published in 2007). One would think that support [...]

How to use Spring Web Services and REST support in conjunction with JAXB 2 annotations (part 2)

After getting some interesting feedback from an anonymous reader, I decided to transform the example in the previous post from JAXB first to XSD first. The updated code can be found in the xsdfirst branch of the memberservice project at github. What had to be done? 1. The JAXB message classes had to be deleted [...]

How to use Spring Web Services and REST support in conjunction with JAXB 2 annotations

Update Updated example application to use annotations for WS endpoint resolution Spring Webservices encourages a contract first, message oriented approach to creating Webservices. The underlying details are completely under developer control starting from the contract to the marshalling/unmarshalling details to the endpoint handling the request. The same holds for the REST support that was just [...]