Posts

Showing posts from November, 2021

Uploading Files to Object Storage using Multipart in VBCS

Image
Object Storage has become a go to alternative to store large amounts of data, hence uploading huge chunks of file has become a common requirement in Cloud. Anyone who has tried to upload a huge file to server knows the drawbacks and shortcomings of such approach, this is where the MultiPart Upload approach comes in handy. Below I try to explain the steps to achieve the same MultiPart upload to Object Storage is done in 3 phases Phase 1: Create a multi part upload request Phase 2: Upload Parts Phase 3: Commit Upload Note: Before you start building the VBCS application, make sure your object storage instance is setup and you have the bucket name for the same Let’s start into building the VBCS application  1.  Build a VBCS application and drag and drop a File upload component to the same              2. Set up below properties for File Picker component      a.       Selection Mode : Single 3. ...

Mavenize an Oracle ADF Application

Image
To Mavenize an Oracle ADF Application first step would be to Setup Maven in Jdeveloper after this we Mavenize Oracle ADF Application . Follow below steps to Setup Maven in Jdeveloper 1.> Navigate to Tools > Preferences > Maven > Settings 2.> Get user settings file path - For me it is : C:\Users\username\.m2\settings.xml 3.> Navigate to path and modify settings file server tag as below  <servers>     <server>     <id>maven.oracle.com</id>     <username>OracleUserName</username>     <password>OraclePwd</password>     <configuration>       <basicAuthScope>         <host>ANY</host>         <port>ANY</port>         <realm>OAM 11g</realm>       </basicAuthScope>       <httpConfiguration>       ...