Use of OAuth in IFS and guide to setup Postman to obtain OAuth tokens from IFS Identity Provider
How to Monitor On-Premises Applications with Azure Monitor
Quick walk through to set up Azure Monitor with custom logs to build a DIY monitoring solution for on-premise application
Working with Java Transformers in IFS
A short guide about IFS transformers and how to build a java transformer
Capturing IFS Aurena requests using Postman
How to use Postman to work with IFS Aurena
Deploying WSO2 Micro Integrator on Oracle Cloud
How to deploy WSO2 Micro Integrator on Oracle Cloud Always Free tier
Clickatell SMS Integration with IFS
This post is a reply to the IFS forum discussion which questioned about SMS integration with IFS. I did a simple POC for this and surprisingly it worked so I thought it will be a good post to return to my blog after some time. Clickatell is world leading SMS platform and supported in many... Continue Reading →
How to use DBMS_XMLDOM to create XML from PL SQL
This example shows how to create an Oracle XML object using DBMS_XMLDOM package. It includes XML declaration (Version and Charset)XML namespaceLooping through a cursor to add recursive nodes PART_CATALOG table consists of records in below structure Part_NoDescriptionUOMTEST1test1pcsTEST11Test 1pcsTEST111111VIAL DECLARE L_XMLTYPE XMLTYPE; L_DOMDOC DBMS_XMLDOM.DOMDOCUMENT; L_ROOT_NODE DBMS_XMLDOM.DOMNODE; PARTS_ELEMENT DBMS_XMLDOM.DOMELEMENT; PARTS_NODE DBMS_XMLDOM.DOMNODE; PART_ELEMENT DBMS_XMLDOM.DOMELEMENT; PART_NODE DBMS_XMLDOM.DOMNODE; PART_NO_ELEMENT DBMS_XMLDOM.DOMELEMENT;... Continue Reading →
Build a Personal Assistant bot with Integromat and Chatfuel
The Story behind... I'm a Technical consultant by profession and integrations has been my passion for several years now. It's amazing to see how fast the integration industry is evolving and today, building a complex integration does not need any coding experience and you can connect basically anything if you have the right tools. Integromat... Continue Reading →
Build a RESTful API for IFS with WSO2 and knak.it connector
I have tried several different integration tools like Mulesoft, Azure Service Bus and and some native coding with IFS but nothing worked as good (and free) as WSO2 Enterprise Integrator so far. It's a complete Integration tool kit with tons of features so you can basically integrate IFS with anything with right combination of configuration... Continue Reading →
RSA cryptography in PHP (How To?)
Being security is one of the utmost considerations in current web site/ application development process, I am sure you have spent a lot of time writing codes to handle encryption in your applications.
In this article I am trying to present one of my favorite ways to solve this issue, the RSA encryption/ decryption handling in your PHP development.
This is quite straight forward as I am using PHPSecLib package. I was using openSSL library for PHP for few years and recently started dealing with this package. It is pretty cool implementation so I started loving it.
First of all you need to get the package, it is available to download[1] and it comes with MIT license[2], GPL compatible[3].
If your intention is to use PHPSecLib only for RSA encryption and decryption I suggest including only two directories which are Crypt and Math in your production environment.
First step towards…
View original post 198 more words