Mittwoch, 11. März 2015

Oracle ALTA UI

Das Oracle MAF ermöglicht ja die Nutzung eines neuen UI namens "ALTA UI"

WHAT IS ORACLE ALTA UI?

The all-new Oracle Alta UI system was used to develop the most recent Oracle Cloud products, the latest versions of Oracle Fusion Applications, a number of innovative mobile applications, with many more to come.
  • Fully redesigned UI component set and interactions
  • Fresh visual design complements modern layout approach
  • UI conducive to responsive design techniques
  • Native Mobile UI

    Es gibt auch eine Demo-Seite zu ALTA UI.

iOS - xcode deployment from JDeveloper



This tutorial (3:07 min) shows how to deploy a MAF (Mobile Application Framework) App for iOS directly from xCode if deployment from JDeveloper fails.
At the time of recording latest versions available were MAF 2.1 and xCode 6.1









Danke an meinen Kollegen Tino Albrecht, der dieses Tutorial erstellte.

Freitag, 20. Februar 2015

MAF 2.1 available - new features - some have changed

Since the end of Jan 2015 MAF 2.1 is available - the biggest change: it leverages JDK8 and has a handfull of new features, which can be found here.

I started to get acquainted with MAF 2.1 and experinced the following changes:


My environment:

Windows7 - MAF 2.1 - JDEV 12.1.3 - requires JDK 8 (jdk1.8...)

The setting up is described in this document:
Oracle JDeveloper 12c (12.1.3) Tutorials - Setting Up Mobile Application FrameworkIn short:
1. Download latest JDEV 12.1.3
2. Load MAF 2.1 extension (Help -> check for updates -> extensions ->Mobile Application Framework)
3. Download JDK 1.8
4. Restart JDEV 12.1.3
Once you have done that, MAF 2.1 is only "triggered" but not "fully loaded" (you can see this in Help-> About-> Extensions-> sarch for "mobile" and scroll to the status column to the far right....
5. Now you have to Create a MAF application... and your are prompted to enter the JDK8  location (for windows like: c:\java\jdk1.8.0_31\bin\java.exe)
I experienced, that the steps in the documentation does not work:
Doc: Choose File->New->Application
my SOLUTION:
New Application -> Within "General" -> "Mobile Application Framework Application" -> OK -> Name of Application step to follow...
Only then the MAF 2.1 is "fully loaded".
----
Taskflow:
To create a taskflow (linkage between the pages of the app) the creation is different from ADF Mobile (and MAF 2.0?)
You'll have to create a new feature in "maf_feature.xml" like a page and then go to "content"-tab and create an item (like "my_taskflow) and in "type" switch to "taskflow".
----
Device Access:
"Device Access" (in "maf_application.xml") is now called "Plugins"

more to follow...

Freitag, 14. November 2014

Oracle MAF - App offline mode and sync with APAM

Thanks to Steve Davelaar the A-Team has launched a new (open source) JDev/MAF 12.1.3 extension called APAM (A-Team Mobile Persistence Accelerator) to achieve working with an App in offline mode - and lateron sync with the host (data); in the A-team blog it is described as follows:

AMPA is a lightweight persistence and data synchronization framework that works on top of Oracle Mobile Application Framework (MAF). It eases the consumption of RESTful services, and provides a complete persistence layer that allows you to use the mobile application in offline mode. You can read and write data while not connected to the internet, and synchronize any pending data changes later when you are online again. The design-time wizards that are integrated with JDeveloper enable you to build a fully functional mobile application within minutes. 

Furthermore AMPA includes an easy way to make use of RESTful/JSON services utilising a declarative wizard.
For more pls consult the A-team blog.
The sources are available at GITHub as being an open source framework.
Go to the AMPA GitHub Home Page and click on the Download ZIP button to download the source code to your computer.

Sorry for cross posting - but you might not have heard about this.

Samstag, 8. November 2014

Challenge: Certificates from the cloud - error: "Certificate was issued by an unrecognized entity"

My environment: Windows7 - JDEV 12.1.3 - MAF 2.0.0.0.41....

When developing with MAF version 12.1.3 I came across the challenge using certificates.

The error on my app was: "Certificate was issued by an unrecognized entity"

My usecase is a MAF app consuming my REST service in the cloud... (How to consume a Rest Service - dok in German)
so I had to download/extract the certificate of the cloud environment to put it in the MAF app.

In JDEV in my MAF project under "Application Resources" and "Resources" - "Security" we can find the certificate store "cacerts".

I used OPENSSL to extract the certificate from the host in the cloud.

I had to make use of HOST:PORT which reads as follows:

https://javatrial1111db-deoracletria22222.db.us2.oraclecloudapps.com:443

in command line (on an Ubuntu/Linux machine) I had to use:

openssl s_client -connect javatrial0564-deoracletrial40319.java.us2.oraclecloudapps.com:443 -showcerts

I copied the certificate (between BEGIN CERTIFICATE and END CERTIFICATE inkl. the BEGINN... and END...) to a textfile, named it "new_cert" and copied it next to my "keytool", which resides in the ..[JAVA-HOME]/jdk/bin directory.
BTW: The "keytool" is used to manipulate certificates (create/copy/add/change...).
Then I also copied the "cacerts" file from JDEV MAF project to the /jdk/bin directory.
You'll find "cacerts" in the MAF project directory.
Mine reads C:\JDeveloper\mywork\JDEV12103\MyMobileApp\resources\security

So having BOTH copied to the /jdk/bin directory I started to work with the "keytool".
Command window:

keytool -importcert -keystore cacerts -file new_cert -storepass changeit -noprompt

Thats it.
The basic steps I got from Pervasync Blog posted here - thanks to him!! and thanks to Jürgen Menge for some hints!