Questions tagged [oracle-maf]

Oracle's Mobile Application Framework (MAF) is a hybrid mobile framework which leverages Java, HTML5 and JavaScript to deliver a complete MVC framework with declarative user interface definition, device features integration and built-in security.

What is Oracle MAF

Oracle Mobile Application Framework (Oracle MAF) is a hybrid-mobile framework that enables developers to rapidly develop single-source applications and deploy to the Apple iOS, Google Android platforms and Windows platform as well. Oracle MAF provides a complete MVC development framework - that leverage Java, HTML5 and JavaScript - with declarative user interface definition, device services integration and built-in security. Oracle MAF maximizes code reuse and results in faster development of compelling mobile applications.

Oracle MAF key concepts

  • Visual and declarative development
  • Mobile optimized user experience
  • Simplified access to device services
  • Code in Java and run on multiple mobile OSs
  • Offline support using encrypted SQLite
  • Built-in security for authentication, authorization and encryption support

Oracle MAF Architecture

Oracle MAF Architecture diagram

More information can be found here: http://www.oracle.com/technetwork/developer-tools/maf/overview/index.html

155 questions
6
votes
3 answers

thread safe LinkedHashMap without Collections.synchronized

I am using a LinkedHashMap and the environment is multi threaded so this structure needs to be thread safe. During specific events I need to read the entire map push to db and clear all. Most of time only writes happen to this map. This map has a…
Vik
  • 8,721
  • 27
  • 83
  • 168
5
votes
3 answers

WebLogic 12c - Error: ADRS_DOMAIN_PASSWORD environment variable not set

I'm trying to implement push notification in Oracle MAF (2.3.1) application. I need to deploy Push Server application on WebLogic server. When i try to run Integrated WebLogic Server (WL-12c) from JDeveloper 12c IDE, I'm keep getting Error: …
Wanna Coffee
  • 2,742
  • 7
  • 40
  • 66
3
votes
1 answer

How to call Javascript function on AMX page load?

I'm trying to call a Javascript function on page load using invoke action in AMX page but its throwing exception. I'm using following code. My js file contains following code: (function(){ if (!window.application) window.application =…
3
votes
0 answers

Oracle MAF iOS app rejected by Apple - IPV6 network compatible issue

I have developed an Oracle MAF iOS Mobile app and its failed calling web service when network is IPV6 compatible. I have used below code for web service calling - String restPayload = ""; RestServiceAdapter restServiceAdapter =…
Santu C
  • 2,644
  • 2
  • 12
  • 20
3
votes
1 answer

Oracle MAF : Reflect value into inputText based on multiple selectOneChoice selection

I have created three selectOneChoice component in calc.amx, based on the value changes it will do calculation and result you some output. I need to append it to same amx page as a inputText (non-editable text). Below are the my try, Calc.amx: All…
Wanna Coffee
  • 2,742
  • 7
  • 40
  • 66
3
votes
2 answers

How can I use device gestures in Oracle MAF application?

I want to use phone shake gesture in my oracle mobile app. I found an artical related to Oracle MAF device gestures here: https://wikis.oracle.com/display/ADFMobileDesign/Pattern+-+Device+Gestures But didn't found any example that how can we use…
Himanshu
  • 825
  • 2
  • 10
  • 24
2
votes
0 answers

Oracle MAF feature Constraints are not working with multiple constraint with same property

I am using multiple with same property property="user.roles" but, the fature is not rendering if that user has any one role. If I am using only one it is working. For reference, please see below code …
kgs
  • 21
  • 3
2
votes
0 answers

How to check HTTP Basic user authentication in java after IDCS login in oracle maf?

I am trying to show username and images on Springboard after login. Currently, I can retrieve username from web server without checking user authentication once service started. I am new to MAF. After login into IDCS with Web service, How to check…
2
votes
1 answer

Oracle JDeveloper 4K Display Resolution issue

After running Oracle JDeveloper on my Dell Inspiron Gaming 7567 with 4K Display resolution, I can even barely see the items on the screen - The text, icons & menus are too small for me to even start with development.
Mohammed Mukhtar
  • 1,731
  • 20
  • 18
2
votes
0 answers

Oracle MAF - using external libraries (jars)

The project I am trying to develop is a cross-platform mobile app based on Oracle MAF technology. In this particular project, I have to use very sophisticated Java code. We have tried to use Codename One before, but it has a problem of importing…
2
votes
0 answers

cordova plugin, navigator.notification.alert throwing TypeError for Windows 10

We are using apache/cordova-plugin-dialogs(that supports iOS, android and Windows platform) for displaying dialog(alert, confirm, prompt). Tried calling the alert using navigator.notification.alert and window.alert= navigator.notificationalert() But…
2
votes
1 answer

Android - Imports Greyed out and Giving Errors?

I am trying to import the following and they are getting greyed out and giving an error saying "Cannot resolve symbol" import oracle.adf.model.datacontrols.device.DeviceManagerFactory; import oracle.adf.model.datacontrols.device.DeviceManager;…
Nick R
  • 19
  • 5
2
votes
1 answer

Oracle MAF : (Signature Capture) Calling a javascript function from Managed Bean

I'm following this tutorial to get signature capture functionality in Oracle MAF application. When I tried with simple POC as explained in the tutorial, I made it work with out any issues. Same logic I have integrated into my project. Following are…
Wanna Coffee
  • 2,742
  • 7
  • 40
  • 66
2
votes
0 answers

How can I turn off Wifi using cordova?

I found that we can turn on/off wifi in native android using WifiManager class like this: WifiManager wifiManager = (WifiManager) this.getSystemService(Context.WIFI_SERVICE); wifiManager.setWifiEnabled(true); wifiManager.setWifiEnabled(false); As…
Himanshu
  • 825
  • 2
  • 10
  • 24
2
votes
1 answer

Why my javamail program not running through jdeveloper?

I am working on Oracle MAF app and using Java mail API for sending outlook meeting requests. I can successfully send mail from java command-line, but when trying same using Mobile app, the code doesn't go after where creating "MimeMessage" class…
Himanshu
  • 825
  • 2
  • 10
  • 24
1
2 3
10 11