Menu
  • HOME
  • TAGS

Why java date is not parsable?

java,hybrid-mobile-app,oracle-maf

You need to parse the value from 2015-06-16T04:35:00.000Z UTC to a java.util.Date SimpleDateFormat from = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"); from.setTimeZone(TimeZone.getTimeZone("UTC")); Date start_date_time = from.parse("2015-06-16T04:35:00.000Z"); Which gives us a java.util.Date of Tue Jun 16 14:35:00 EST 2015 (for me). Then, you need to format this in IST SimpleDateFormat outFormat = new SimpleDateFormat("yyyyMMdd'T'HHmmss"); outFormat.setTimeZone(TimeZone.getTimeZone("IST"));...

Displaying an remote image in Oracle Mobile Application Framework

oracle-maf

You have to add (a part) of the external URL to your whitelist. That whitelist can be found in your maf-application.xml -> Security -> Remote URL Whitelist More info and an example can be found on this blog: http://adf4beginners.com/2015/05/maf-unable-to-display-image-url/ Nice video about it whitelists in Oracle MAF: http://oraclesworld.com/oracle_remote/21__Core___Remote_URLs_and_Whitelists_in/147583/...

Why my javamail program not running through jdeveloper?

java,javamail,jdeveloper,hybrid-mobile-app,oracle-maf

Deploying java project on Web logic server as a web service (as a .war package) worked for me.

How can I use device gestures in Oracle MAF application?

hybrid-mobile-app,oracle-maf

Added a custom cordova shake plugin to my MAF application and invoke it from javascript file which was included on application home page feature. You can get cordova plugin and its usage techniques from here: https://github.com/leecrossley/cordova-plugin-shake...

ADF Mobile How to use VideoCapturePlus plugin or any video recorder plugin

oracle-adf-mobile,oracle-maf

APIDemo Its application example from oracle its have video recorder...

Why Jdeveloper not listing earlier IOS version?

xcode,jdeveloper,hybrid-mobile-app,oracle-maf

For starters, your phone (3GS) isn't supported for Oracle MAF. Here you can view the Oracle MAF certification matrix: http://www.oracle.com/technetwork/developer-tools/maf/documentation/maf201cert-2298202.html But you should be able to use the iOS simulator for iOS 6.X. Have you verified that you have installed the iOS 6.X simulator in XCode (read this if needed)?...