Creating SSLContext for up-to-date HTTPS communiction with client certificate


Deprecated: Calling get_class() without arguments is deprecated in /var/www/wordpress/wp-includes/class-wp-http.php on line 329

If you try to implement with Java the client side for a HTTPS communication with client authenification and google for it, you will find  many examples. But with most of the examples you find, have the one or other problem, if you really try it. That’s why I want to wrap it up and bring […]

Continue reading


Reliable restart of the weblogic server

Everyone doing CI using an application server knows the problem: After some time you get OutOfMemoryError because of the excessive deployments. The solution for this is to restart the application server periodically. But before you can start the application server, you must be sure to shut the application server down. This can be done for […]

Continue reading


Setting up a own CA for the enterprise

Inside an enterprise there are a lot of machines communicating with each other. It is necessary to keep these communications secure and private. This can be achieved through encryption. In the enterprise SOA the most important protocol is HTTP. The encrypted version is HTTPS and needs at least one certificate. The certificate is the host […]

Continue reading


Using certificates for authentication at M2M communication

Most bigger companies are today building up a enterprise SOA. On of the key characteristic of the enterprise SOA is the machine to machine communication. The communication between the machines has to be secured. Important is 1.) to keep the the content of the sent messages private 2.) ensure only the authorized machine can invoke […]

Continue reading


Encrypted credentials in Maven with jasypt

When developing enterprise applications it is best practice check in the source code into a version control system. Additionally to the code also configuration settings and credentials are often checked in. This is usually no problem  for test environments, but configurations for the production environments perhaps should not be readable for everyone having access to […]

Continue reading


Tunneling SSH over HTTPS with Apache 2.4 and virtual hosts

Usually SSH uses port 22 to connect to the host. But sometimes there are reasons to hide the SSH connection and use port 443 instead. Apache is able to tunnel the SSH connection over HTTPS. If you search for it, you find a lot of examples how to do it and even more posts where […]

Continue reading


Bringing Apache virtual hosts and and conf together

With Apache 2.4 the configuration structure of apache changed. In the configuration folder of apache there are now subfolders conf mods sites The mods folder is quite clear. With links in the enabled folder the modules can be activated. Most web application like phpmyadmin, wordpress, owncloud, svn put their configuration like in apache 2.2 to […]

Continue reading


OSB: Configurable basic authentication

Basic authentication is still a very common approach for securing web services. It is widely supported and can be tested with a browser. If used over a HTTPS connection also the credentials are encrypted. To use basic authentication the usual way with OSB it is necessary to select ‘Basic’ at the authentication section and a […]

Continue reading


OSB: Configuration with custom XQuery functions

The OSB supports a mechanism of customization. Unfortunately this mechanism is very limited and is not able to change all values. There are hundreds of situations where some kind of configuration is needed and which can’t be solved with customization: A configurable value need to be added to a request Username and password can’t be […]

Continue reading


Finding differences in two Open-Office-Writer documents

If you write documents and get feedback from different persons on different versions it is a great pain to merge the documents and changes together. Microsoft Word has a functionality that works quite well. But the function to compare documents in Open Office Writer has  never work for me the way I expected. Fortunately OO […]

Continue reading