Tutorials

How to create a domain email address for route53 and host it for free on Zoho ?

When you are building the website on top of AWS stack, using AWS Route53 to register your domain name is usually a good idea. (Cheap and well connected) However, Route53 only work as a DNS with no integrated hosting to use an email server. You then have a couple of choices available to you to

How to create a domain email address for route53 and host it for free on Zoho ? Read More »

How to set current column value of selected RichTable row from iterator in Oracle ADF

If you read yesterday article, https://cedricleruth.com/how-to-get-current-column-value-of-selected-richtable-row-from-iterator-in-adf/ , you now know have to retrieve a column value from a table selected rows inside an Oracle ADF Java Bean. While this is useful when you need to get the current column value on a button click, you may as well need to update it with a new

How to set current column value of selected RichTable row from iterator in Oracle ADF Read More »

Screenshot of access denied in oracle adf table

How to fix “Access Denied” when showing ADF Table and other components from jsff page fragment?

One of the cleanest and most useful practices in Oracle ADF is to use jsff page fragments. They allow you to have one view composed of multiples small view fragments. It’s more precise, easier to maintain and allow you to reuse the same fragment multiple times on the same page. (Having multiple time the same […]

How to fix “Access Denied” when showing ADF Table and other components from jsff page fragment? Read More »

How to fix “failed to start The Apache HTTP Server” after renewing SSL certificate on AWS EC2 linux ?

If you followed my last article “How to host an https WordPress site on AWS EC2 with a Let’s Encrypt SSL certificate?”  you know have a Let’s Encrypt generated SSL certificate for your WordPress. Once in a while Let’s Encrypt will generate a new certificate if you scheduled the certbot-auto renew command. You’ll then need

How to fix “failed to start The Apache HTTP Server” after renewing SSL certificate on AWS EC2 linux ? Read More »

How to duplicate a Row programmatically in Oracle ADF?

Duplicating a table row is often one of the first requirement added on big customer tables in an Oracle ADF application. To do so, add a column at the start of your row with a “duplicate” button containing an action listener as follow: … actionListener=”#{YOUR_SCOPE.YOUR_BEAN.duplicateRowLine}” … In this Action Event, you will need to copy

How to duplicate a Row programmatically in Oracle ADF? Read More »

Screenshot of joke me bot conversation in messenger

How to build a Facebook Chatbot running on AWS Lambda and Claudia js Bot Builder ?

Chatbots have been around for a while now and I’ve had the opportunity to build a couple of them for clients using Oracle and AWS tools. I’m not a huge fan of brands building chatbot to use as customer support, let’s be honest, there is nothing worse than having to cope with a robot when […]

How to build a Facebook Chatbot running on AWS Lambda and Claudia js Bot Builder ? Read More »

How to host an https WordPress site on AWS EC2 with a Let’s Encrypt SSL certificate ?

Hosting a WordPress blog/website on the AWS EC2 platform can be pretty useful when you know how to maintain Linux servers and want to tinker it yourself. (Free for your account first-year / then around €10/month) This is great for a small personal blog where you’ll do the maintenance and scalability yourself. (OS, databases, and

How to host an https WordPress site on AWS EC2 with a Let’s Encrypt SSL certificate ? Read More »

How to display a please wait message when the server is processing using addBusyStateListener in ADF ?

Clients often require their ADF applications to process a lot of data or upload big files when their users click on a specific button. Those treatments can often take a couple of minutes to run and your user may lose patience or wonder why the application isn’t responding. As a best practice, you should always […]

How to display a please wait message when the server is processing using addBusyStateListener in ADF ? Read More »

Scroll to Top