Tutorials

How to implement a global retry fault policy in SOA BPEL?

Implementing a global common fault policy is essential when building a SOA BPEL Composites architecture. As your number of production BPEL instances grows, the risk of losing critical data due to a BPEL process crashing in production increases. Especially with large architecture where unexpected usage surge can trigger slowness and failures. Implementing a simple retry

How to implement a global retry fault policy in SOA BPEL? Read More »

Azure DevOps release pipeline test and deploy screenshot

How to create a CI/CD pipeline for Java on Azure Devops?

Continuous integration(CI) and continuous delivery(CD) pipelines have become the norm in software engineering. In the corporate world, a CI/CD pipeline is especially useful to ensure your entire development team is following the best quality guidelines and drastically shorten the deployment cycle to satisfy your customers. Thus why all Cloud providers are now providing their CI/CD […]

How to create a CI/CD pipeline for Java on Azure Devops? Read More »

How to display a custom menu for logged in or admin users in WordPress?

WordPress as a CMS is getting more attractive in its new versions as more and more developers start using WordPress as a tool to run niche membership solutions. One of the first things you’ll need to implement is to display a custom menu depending on your user. For instance, you could promote landing page links […]

How to display a custom menu for logged in or admin users in WordPress? Read More »

How to update WordPress core version from Unix Command Line CLI ?

If you are hosting a WordPress installation on a Linux server you may encounter issues updating your WordPress version from the WordPress administration panel. A good way to handle periodic WordPress updates is by running a weekly Unix command line in your linux cron. To do so, you’ll first need to install the WordPress CLI

How to update WordPress core version from Unix Command Line CLI ? Read More »

Screenshots of JDeveloper https credential configurationto fix SunCertPathBuilderException

How to configure JDeveloper to trust an SSL certificate and fix PKIX path building failed when connecting to an Https URL?

There are multiple reasons to want your JDeveloper 11g/12c installation to connect to an HTTPS URL. You could, for example, need an application you’re developing to connect to a web service over SSL or configure a Maven install that connect to an HTTPS nexus URL. I you try to do so with the default installation […]

How to configure JDeveloper to trust an SSL certificate and fix PKIX path building failed when connecting to an Https URL? Read More »

How to migrate an SVN repository to GIT and your company Gitlab?

Companies often want to implement a Jenkins or Gitlab pipeline to improve their development quality and automate their continuous testing. Companies will then often migrate their source control software from SVN to GIT and Gitlab. Following John Albin great article available here https://john.albin.net/git/convert-subversion-to-git and Gitlab documentation I migrated a couple of SVN repository to GIT

How to migrate an SVN repository to GIT and your company Gitlab? Read More »

How to fix Unresolved Webapp Library references defined in weblogic.xml Extension-Name: adf.oracle.domain.webapp, exact-match: false when deploying ADF application in Weblogic?

The following error can occur when deploying an Oracle ADF to a newly installed weblogic 12c or 11g server : Most of the times this error is simply occurring because your WebLogic server wasn’t installed with the Oracle ADF Runtime libraries. To fix this, install the following on top of your fresh WebLogic server installation:

How to fix Unresolved Webapp Library references defined in weblogic.xml Extension-Name: adf.oracle.domain.webapp, exact-match: false when deploying ADF application in Weblogic? Read More »

How to convert org.apache.myfaces.trinidad.model.UploadedFile to java.io.File in Java?

It’s pretty common to have to convert an org.apache.myfaces.trinidad.model.UploadedFile to a java.io.File when working with an ADF <af:inputFile>. Working with a java.io.File being the only way to retrieve values from a CSV. Here is a simple code snippet to do so : View the code on Gist.

How to convert org.apache.myfaces.trinidad.model.UploadedFile to java.io.File in Java? Read More »

Scroll to Top