Oracle SOA Suite- Implementing Email Notification
In this post, I am going to show how to implement email notifications in Oracle SOA Suite using BPEL process. So let's get started- Implementing email notification in Oracle SOA Suite consists of below steps: Environment- IDE- Oracle jDeveloper 11g Weblogic Server 12c Oracle SOA Suite 12c High Level Steps Keep ready email server settings. Configure & enable usermessagingdriver-email for target SOA servers via console. Setting up Email driver (usermessagingdriver-email )with email server settings via enterprise manager. Enable notifications for SOA workflows(make sure either All or EMail option is selected).. Create SOA composite application Deploy it on SOA server. Testing & done. 1. Keep ready email server settings. Keep ready your below email server settings: Outgoing Mail Server : smtp.domain.com Outgoing Mail Server Port : xxx Default From Address : username@doamin.com Outgoing Username : actualemailid@doma
I have searched and read about base64, but always I find how base 64 encoding works, I know how it works but can you please elaborate what problem does base 64 encoding solves.
ReplyDeleteThanks for posting your query.
ReplyDeleteBase64 encoding basically solves the problem of representing binary data as text, making it compatible with text-based systems, ensuring data integrity, character set compatibility, and safety for transmission in contexts like email, URLs, and filenames where binary data can cause issues. We also use base64 encoding to perform basic text obfuscation while sending the data over the network.
Hope this clarifies.