Pre-requisites/Assumptions :
maf-application.xml:
I have defined the MCS connection details in this xml.
Datacontrol : WeatherAppDC.java
getMobileBackend() : Reads the preferences declared in maf-application.xml and prepares an MBE object to communicate with MCS.
MBE object comes from mafmcsutility.jar. It is a single point entry for all MCS communication.
anonymousLogin() : Logs the mobile app user to the MCS backend, so that the app can call the API defined/exposed via MCS.
Uses MBE object and the MBE Anonymous Key defined in the maf-application.xml.
invokeGetCitiesAPI() : This is the first method invoked from the app, so this one does the "anonymousLogin" first. Then it invokes "getCities" MCS API in a thread.
The JSON response of the API contains XML data as well, so it also uses a SAX Parser to parse the XML content and populate the "citiesForCountry" List.
invokeGetWeatherAPI() : This invokes "getWeather" MCS API in a thread. The JSON response from API contains the information in XML, so it uses a SAX Parser to parse and populate the "currentWeather" object.
TaskFlow : cities-task-flow
First taskFlow of the app. SearchCities is an AMX page to search for cities for a country.
The filter button on the below image calls "invokeGetCitiesAPI()".
ShowWeather : is a taskFlow call. It looks like :
invokeGetWeatherAPI : Is a method call activity and it calls "invokeGetWeatherAPI()".
showCurrentWeather : Is an AMX page to display the current weather details.
Javascript to enable device back button :
I have also added a custom JS to make use to Android device's back button. It has been added as a file to the taskflow defined in maf-feature.xml
That's it. Please feel free to comment if you have any questions.
A small video on how the app works runtime :
- MAF version : 2.1.3
- mafmcsutility.jar exists in the classpath of the application.
- Two REST API build and exposed from Oracle Mobile Cloud Service(MCS).
- This application is available on GitHub and can be downloaded and run from your own machine.
- This application uses 2 APIs created and exposed in MCS
- /mobile/custom/WeatherAPI/getweather?country=<CCC>&city=<AAA>
- /mobile/custom/WeatherAPI/getCities?country=<CCC>
- Part 1 : talks about creating the Mobile Backend on MCS : http://adfjava.blogspot.in/2015/10/weatherapp-with-maf-using-mcs-part-1.html
Following sections, I will talk a bit about
- maf-application.xml
- Datacontrol
- Taskflow
- Javascript to enable device back button
maf-application.xml:
I have defined the MCS connection details in this xml.
Datacontrol : WeatherAppDC.java
getMobileBackend() : Reads the preferences declared in maf-application.xml and prepares an MBE object to communicate with MCS.
MBE object comes from mafmcsutility.jar. It is a single point entry for all MCS communication.
anonymousLogin() : Logs the mobile app user to the MCS backend, so that the app can call the API defined/exposed via MCS.
Uses MBE object and the MBE Anonymous Key defined in the maf-application.xml.
invokeGetCitiesAPI() : This is the first method invoked from the app, so this one does the "anonymousLogin" first. Then it invokes "getCities" MCS API in a thread.
The JSON response of the API contains XML data as well, so it also uses a SAX Parser to parse the XML content and populate the "citiesForCountry" List.
invokeGetWeatherAPI() : This invokes "getWeather" MCS API in a thread. The JSON response from API contains the information in XML, so it uses a SAX Parser to parse and populate the "currentWeather" object.
TaskFlow : cities-task-flow
First taskFlow of the app. SearchCities is an AMX page to search for cities for a country.
The filter button on the below image calls "invokeGetCitiesAPI()".
ShowWeather : is a taskFlow call. It looks like :
invokeGetWeatherAPI : Is a method call activity and it calls "invokeGetWeatherAPI()".
showCurrentWeather : Is an AMX page to display the current weather details.
Javascript to enable device back button :
I have also added a custom JS to make use to Android device's back button. It has been added as a file to the taskflow defined in maf-feature.xml
That's it. Please feel free to comment if you have any questions.
A small video on how the app works runtime :
Excellente!
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteHi,
ReplyDeleteI wanted to consume a dummy rest service created in MCS admin console in MAF app . For that i am trying to create rest client and proxy from new wizard in JDEV.
I gave the WADL url but it is giving error that 'The specified WADL URL doesn't return a WADL for either a GET or an OPTIONS.'
Thanks in advance.
I am not sure what you mean by "new wizard in JDev". The only way I know to consume MCS published rest api is to use "mafmcsutility.jar". You need 4 details, e.g. backend id, anonymous key etc and you can connect to the rest api you want on MCS.
DeleteHello,
ReplyDeleteI tried to build the app available in GitHub but had errors because all the imports of the mafmcsutility library were on error. I checked that the mafmcsutility.jar exists in the projet properties classpath.
Is there anything that I should do before building the app that might help jdeveloper recognize the library ?
Thanks in advance.
Hi Yosra,
DeleteNot sure why, but the imports and usages of classes from mafmcsutility shows error in Jdev, I have updated the sources and references to the latest MAF version. Please do a fresh check out from Github. And change the path of mafmcsutility in jws/jpr.
- Soham
Hi,
DeleteThanks for your answer. I updated the path to all the libraries used in the project according to where they are on my jdev home.
The weather app works fine. This will help me work on my own application.
Thanks for your help again.
Yosra
This comment has been removed by the author.
ReplyDelete