oracle-maf

Oracle maf and oracle af

青春壹個敷衍的年華 提交于 2019-12-25 08:58:25
问题 Some information required about MAF. How many platforms it will support? I have read in some blogs, for client side(Mobile) they are using web frameworks and for Business logic they are using java and cordova for interact with Mobile functionalities. Here business logic(JAVA) mean client side business logic or server side? Using MAF directly(From mobile) we can access database, without interaction of webservices? Is there any wrapper between Mobile and oracle database? in case without wrapper

Why java date is not parsable?

江枫思渺然 提交于 2019-12-24 17:28:36
问题 I am developing a mobile application using oracle MAF. Oracle MAF provides its date component and if I select a date then output is like : 2015-06-16T04:35:00.000Z for selected date Jun 16, 2015 10:05 AM . I am trying to convert this format to "Indian Standard Time" with .ical (ICalendar Date format) which should be like 20150613T100500 for the selected date Jun 16, 2015 10:05 AM . I am using code below: SimpleDateFormat isoFormat = new SimpleDateFormat("yyyyMMdd'T'HHmmss"); isoFormat

WebLogic 12c - Error: ADRS_DOMAIN_PASSWORD environment variable not set

孤街醉人 提交于 2019-12-22 12:32:10
问题 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: ADRS_DOMAIN_PASSWORD environment variable not set. in console log. Seeems it is not creating domain at all. I have also attached complete Build log on below for your reference, Adding environment variable to WLST script USER_MEM_ARGS = -Xms32m -Xmx1024m

Unable to import javax.activation in Jdeveloper for MAF

两盒软妹~` 提交于 2019-12-12 02:39:31
问题 I am trying to deploy an Oracle MAF app to the iOS platform. I am using Java Mail to receive emails from the gmail server. I am trying to to identify mails that have attachments. However I get the following error. java.lang.ClassCastException: com.sun.mail.imap.IMAPInputStream cannot be cast to javax.mail.Multipart When I identify the mime type of the message as "multipart/mixed", I am trying to cast the object into Multipart. I understand that this question has been asked before but I have

ADAL For Java on Mobile Devices: Prompt is Not Allowed

北慕城南 提交于 2019-12-12 02:17:13
问题 I've a Java program using ADAL4J that works great on a non-mobile device but when deployed to any mobile devices via Oracle MAF (which deploys as Cordova, HTML5, CSS), it fails on the AuthenticationContext method. The error is: com.microsoft.aad.adal.AuthenticationException: Prompt is not allowed and failed to get token: Here is the main code: service = Executors.newFixedThreadPool(1); String url = AUTHORIZATION_ENDPOINT + tenantId + "/oauth2/authorize"; //Next line is where it fails

Installing plugman … Error Code : INTERNAL_ERROR jdeveloper

南笙酒味 提交于 2019-12-12 01:36:21
问题 I have just started developing with Oracle MAF and created a mobile app project as per the tutorial. When I tried to deploy it to device, get the following issue and it fails. Any directions, resolutions & help, appreciated. [11:29:51 AM] ---- Deployment started. ---- [11:29:51 AM] Target platform is (Android). [11:29:51 AM] Beginning deployment of MAF application "Application1" to Android using profile "Android1". [11:29:57 AM] Checking state of Android Debug Bridge server... [11:30:02 AM]

How to change Oracle MAF's default springboard icon and alignment?

半世苍凉 提交于 2019-12-11 13:16:00
问题 How can I convert given springboard toggle button from: This -- Right aligned menu icon, opens dropdown menu on click To This -- Left aligned with bars icon, directly open spring board on click. 回答1: We can also do the following to achieve this. Disable the default Springboard toggle button by unchecking the "Show Springboard Toggle button". Drag and drop the method gotoSpringboard() method from ApplicationFeatures data control as a command link in the primary facet in all the pages. Remove

How to include custom font in Oracle MAF OEPE

允我心安 提交于 2019-12-11 07:04:27
问题 I am completely new to the Oracle MAF, I am using the OEPE environment to develop the app. I want to include native font files in the application (Like what we do in android - include it in assets folder and refer to the file in program). I failed to find any useful data about it except this link https://community.oracle.com/message/12669272#12669272 unfortunatly I am not enough familiar with this to understand, please help me i need to add native language text to the header and for a content

How to convert the JSON array to List to create DataControl in oracle MCS?

浪子不回头ぞ 提交于 2019-12-08 09:52:47
问题 Iam trying to create a List View for the below Json code {"ImageList" :[ { "ENO":"87", "ENAME" : "john", "EJOB":"clerk", },{ "ENO":"21", "ENAME" : "Abdul", "EJOB":"Manager", } ] } This the DataControl Program This DataControl is invoked by another Class Runnable mcsJob = new Runnable(){ public void run(){ try { CustomAPI customApi = mobileBackend.getServiceProxyCustomApi(); MCSRequest request = new MCSRequest(mobileBackend.getMbeConfiguration()); request.setConnectionName(mafConnection);

thread safe LinkedHashMap without Collections.synchronized

倖福魔咒の 提交于 2019-12-07 22:27:38
问题 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 limit 50 entries. I am using Oracle MAF and it does not have Collections.syncronizedMap available. So, what are things I need to put in synchronized blocks to make sure writing and reading doesn't hit me concurrentModificationException etc Few