SlideShare a Scribd company logo
1 of 25
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |
Oracle Mobile Cloud Service Overview
Alice Liu
lzhmails@163.com
6/25, 2015
Oracle Confidential – Internal/Restricted/Highly Restricted
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |
Agenda
What is Mobile Cloud Service?
Features and Platform APIs
Getting started with Client SDK Android
Demo
1
2
Oracle Confidential – Internal/Restricted/Highly Restricted 3
3
4
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |4
What is Mobile Cloud Service?
Mobile Cloud Service is a cloud-based service that provides a
unified hub for developing, deploying, maintaining, monitoring, and
analyzing your mobile applications and the resources that they rely on.
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |
Describe the MCS developer portal components
Mobile Backends: This is area where mobile client developers will
spend most of their time. A mobile backend is all the backend
services that a specific mobile application will consume.
Storage: Mobile developers use this function to manage custom
storage collectors for use across mobile backends. This is useful
when mobile developers want to store data collected from devices
that do not have a backend available to map or store. E.g. GPS,
Notes, Photos, Videos etc
User Management: Used by mobile developers to create and store
user credentials for B2C use cases or where there may not be a user
credential store to federate
Connectors: This is area where the service developers spend time in
defining, creating, securing and testing connections to backend
systems. This could be via REST, SOAP or via connectors to legacy
APIs
APIs: This is the area where service developers can design, test,
implement, shape and deploy custom API into the API Catalog . Click
on mobile backend
5
What is Mobile Cloud Service?
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |6
What is Mobile Cloud Service?
Mobile Cloud Service is a cloud-based service that provides a
unified hub for developing, deploying, maintaining, monitoring, and
analyzing your mobile applications and the resources that they rely on.
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |7
Features and Platform APIs
• Send push notifications to both iOS and Android mobile devices
• Store application data in the cloud so it’s protected and easy to
get at
• Cache locally store REST resources to optimize application
performance
• Provide user login capabilities and test real users and roles
• Gather usage data and generate analytics reports
• Monitor health and troubleshoot problems
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |8
Features and Platform APIs
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |9
Getting started with Client SDK Android
The official Android Client SDK tutorial is available now:
http://docs-uat.us.oracle.com/cloud/latest/mobilecs_gs/MCSUA/GUID-B9B3FEB0-7B52-4691-B410-4D8DF70D793
Pre-requisites
1. Android
Android SDK installed
Android Platform Tools 19.0.3
2. iOS
Mac OS X 10.9.x (Mavericks)
Xcode 5.1.x
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |10
Getting started with Client SDK Android
1. Create an Android Gradle Application with Android Studio
a. Download and install Android Studio https://developer.anroid.com/sdk/installing/studio.html
b. Download and install Stand-alone SDK Tools version of Android SDK:
http://developer.android.com/sdk/installing/index.html
c. Create an Android Gradle application, and use the Stand-alone SDK instead the one comes with
Android Studio
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |11
Getting started with Client SDK Android
a. Get IDMSDK project
b. Unzip it and put the IDMSDK folder under your application's main directory
c. Edit file settings.gradle in project directory, change it to:
include ':app',':IDMSDK'
d. Edit file build.gradle in src directory, change dependencies settings to:
dependencies {
compile project(':IDMSDK')
compile fileTree(dir: 'libs', include: ['*.jar'])
}
e. Click "Sync project with Gradle files" in Android Studio Tools tab Android's sub menu (Or you can
choose to do this later)
Link IDMSDK project to your app
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |12
Getting started with Client SDK Android
Add MCS Config file
a. Create a folder named "assets" under app/src/main/
b. Add oracle_mobile_cloud_config.xml to app/src/main/assets folder, and you will need to change:
mbeName, mbeVersion, oAuthTokenEndPoint, oAuthClientId, oAuthClientSecret, oAuthLogoutUrl base on your
MCS Env settings.
<mobileBackend>
<mbeName>test</mbeName>
<mbeVersion>1.0</mbeVersion>
<default>true</default>
<appKey>1ccba599-8e48-44e1-ba8b-7e70f5a3f57f</appKey>
<baseUrl>http://blr2203087.idc.oracle.com:7201</baseUrl>
<enableAnalytics>true</enableAnalytics>
<enableLogger>true</enableLogger>
<identityDomain>mob1</identityDomain>
<oAuthTokenEndPoint>http://slc07grb.us.oracle.com:14100/oam/oauth2/tokens</oAuthTokenEndPoint>
<oAuthClientId>eac8b447-014c-4b60-9c0e-5451dda448bc</oAuthClientId>
<oAuthClientSecret>dFdupZuGGhyJCrWGTaWc</oAuthClientSecret>
</mobileBackend>
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |13
Getting started with Client SDK Android
Setup Mobile Backend
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |14
Getting started with Client SDK Android
Add/Define User and Roles
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |15
Getting started with Client SDK Android
Create a Storage Collection (Optional, only need it when working with Storage SDK)
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |16
Getting started with Client SDK Android
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |17
Getting started with Client SDK Android
Add permissions to AndroidMainfest.xml
add at least these permissions
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission
android:name="android.permission.WRITE_INTERNAL_STORAGE"/>
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION" />
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |18
Getting started with Client SDK Android
Build the Android Application
Click on Android Studio Tool bar, or like below to Sync Project with Gradle Files
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |19
Getting started with Client SDK Android
Run the Android Application
start emulator with command: emulator -avd YourAvdNameHere -http-proxy http://cn-
proxy.jp.oracle.com:80
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |20
Demo
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |21
Demo
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |22
•http://docs-uat.us.oracle.com/cloud/latest/mobilecs_gs/MCSUA/toc.htm
•The official Android Client SDK tutorial is available now:
http://docs-uat.us.oracle.com/cloud/latest/mobilecs_gs/MCSUA/GUID-B9B3FEB0-7B52-
4691-B410-4D8DF70D7933.htm#MCSUA-GUID-B9B3FEB0-7B52-4691-B410-
4D8DF70D7933
• http://developer.android.com/training/index.html
• http://www.vogella.com/tutorials/android.html
References:
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |
Q&A
Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |

More Related Content

What's hot

Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-InSteeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-InVMware Tanzu
 
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik HarabiEclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik HarabiRafik HARABI
 
Re-­Think Mobile… Beyond Mobile­‐First: Oracle Mobile Strategy and Overview
Re-­Think Mobile… Beyond Mobile­‐First: Oracle Mobile Strategy and OverviewRe-­Think Mobile… Beyond Mobile­‐First: Oracle Mobile Strategy and Overview
Re-­Think Mobile… Beyond Mobile­‐First: Oracle Mobile Strategy and OverviewGuatemala User Group
 
GlueCon 2018: Are REST APIs Still Relevant Today?
GlueCon 2018: Are REST APIs Still Relevant Today?GlueCon 2018: Are REST APIs Still Relevant Today?
GlueCon 2018: Are REST APIs Still Relevant Today?LaunchAny
 
WebSphere Connect and API Discovery
WebSphere Connect and API DiscoveryWebSphere Connect and API Discovery
WebSphere Connect and API Discovery Arthur De Magalhaes
 
Camunda BPM - Said Mengi
Camunda BPM - Said MengiCamunda BPM - Said Mengi
Camunda BPM - Said Mengikloia
 
Speed time to value with CA IAM solutions deployed on Docker, Kubernetes, and...
Speed time to value with CA IAM solutions deployed on Docker, Kubernetes, and...Speed time to value with CA IAM solutions deployed on Docker, Kubernetes, and...
Speed time to value with CA IAM solutions deployed on Docker, Kubernetes, and...CA Technologies
 
REST API Doc Best Practices
REST API Doc Best PracticesREST API Doc Best Practices
REST API Doc Best PracticesMarta Rauch
 
Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)DMIMarketing
 
Heroku webcastdeck+20130828
Heroku webcastdeck+20130828Heroku webcastdeck+20130828
Heroku webcastdeck+20130828Heroku
 
How does the WSO2 App Factory Contribute to the Quick Deleivery of a Solution
How does the WSO2 App Factory Contribute to the Quick Deleivery of a SolutionHow does the WSO2 App Factory Contribute to the Quick Deleivery of a Solution
How does the WSO2 App Factory Contribute to the Quick Deleivery of a SolutionWSO2
 
Modern Application Development for the Enterprise
Modern Application Development for the EnterpriseModern Application Development for the Enterprise
Modern Application Development for the EnterpriseJuarez Junior
 
Why react native has become the winning choice for cross platform development
Why react native has become the winning choice for cross platform developmentWhy react native has become the winning choice for cross platform development
Why react native has become the winning choice for cross platform developmentShelly Megan
 
CA World 2015 Using Docker and Containers to create Bespoke Systems Under Test
CA World 2015 Using Docker and Containers to create Bespoke Systems Under Test CA World 2015 Using Docker and Containers to create Bespoke Systems Under Test
CA World 2015 Using Docker and Containers to create Bespoke Systems Under Test Ian Kelly
 
Rest api best practices – comprehensive handbook
Rest api best practices – comprehensive handbookRest api best practices – comprehensive handbook
Rest api best practices – comprehensive handbookKaty Slemon
 
Hands-on cloud-native Java with MicroProfile, Kubernetes and Istio at Javantura
Hands-on cloud-native Java with MicroProfile, Kubernetes and Istio at JavanturaHands-on cloud-native Java with MicroProfile, Kubernetes and Istio at Javantura
Hands-on cloud-native Java with MicroProfile, Kubernetes and Istio at JavanturaJamie Coleman
 
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...CA Technologies
 
SAP BusinessObjects Embedded analytics
SAP BusinessObjects Embedded analyticsSAP BusinessObjects Embedded analytics
SAP BusinessObjects Embedded analyticsIngo Hilgefort
 

What's hot (20)

Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-InSteeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
 
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik HarabiEclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
 
Re-­Think Mobile… Beyond Mobile­‐First: Oracle Mobile Strategy and Overview
Re-­Think Mobile… Beyond Mobile­‐First: Oracle Mobile Strategy and OverviewRe-­Think Mobile… Beyond Mobile­‐First: Oracle Mobile Strategy and Overview
Re-­Think Mobile… Beyond Mobile­‐First: Oracle Mobile Strategy and Overview
 
GlueCon 2018: Are REST APIs Still Relevant Today?
GlueCon 2018: Are REST APIs Still Relevant Today?GlueCon 2018: Are REST APIs Still Relevant Today?
GlueCon 2018: Are REST APIs Still Relevant Today?
 
WebSphere Connect and API Discovery
WebSphere Connect and API DiscoveryWebSphere Connect and API Discovery
WebSphere Connect and API Discovery
 
Camunda BPM - Said Mengi
Camunda BPM - Said MengiCamunda BPM - Said Mengi
Camunda BPM - Said Mengi
 
SAP Business Objects Software development Kit
SAP Business Objects Software development Kit SAP Business Objects Software development Kit
SAP Business Objects Software development Kit
 
Speed time to value with CA IAM solutions deployed on Docker, Kubernetes, and...
Speed time to value with CA IAM solutions deployed on Docker, Kubernetes, and...Speed time to value with CA IAM solutions deployed on Docker, Kubernetes, and...
Speed time to value with CA IAM solutions deployed on Docker, Kubernetes, and...
 
REST API Doc Best Practices
REST API Doc Best PracticesREST API Doc Best Practices
REST API Doc Best Practices
 
Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)Portal Integration with SAP BusinessObjects (SDK)
Portal Integration with SAP BusinessObjects (SDK)
 
Heroku webcastdeck+20130828
Heroku webcastdeck+20130828Heroku webcastdeck+20130828
Heroku webcastdeck+20130828
 
How does the WSO2 App Factory Contribute to the Quick Deleivery of a Solution
How does the WSO2 App Factory Contribute to the Quick Deleivery of a SolutionHow does the WSO2 App Factory Contribute to the Quick Deleivery of a Solution
How does the WSO2 App Factory Contribute to the Quick Deleivery of a Solution
 
Modern Application Development for the Enterprise
Modern Application Development for the EnterpriseModern Application Development for the Enterprise
Modern Application Development for the Enterprise
 
Why react native has become the winning choice for cross platform development
Why react native has become the winning choice for cross platform developmentWhy react native has become the winning choice for cross platform development
Why react native has become the winning choice for cross platform development
 
CA World 2015 Using Docker and Containers to create Bespoke Systems Under Test
CA World 2015 Using Docker and Containers to create Bespoke Systems Under Test CA World 2015 Using Docker and Containers to create Bespoke Systems Under Test
CA World 2015 Using Docker and Containers to create Bespoke Systems Under Test
 
Rest api best practices – comprehensive handbook
Rest api best practices – comprehensive handbookRest api best practices – comprehensive handbook
Rest api best practices – comprehensive handbook
 
Hands-on cloud-native Java with MicroProfile, Kubernetes and Istio at Javantura
Hands-on cloud-native Java with MicroProfile, Kubernetes and Istio at JavanturaHands-on cloud-native Java with MicroProfile, Kubernetes and Istio at Javantura
Hands-on cloud-native Java with MicroProfile, Kubernetes and Istio at Javantura
 
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
 
CA API Developer Portal
CA API Developer PortalCA API Developer Portal
CA API Developer Portal
 
SAP BusinessObjects Embedded analytics
SAP BusinessObjects Embedded analyticsSAP BusinessObjects Embedded analytics
SAP BusinessObjects Embedded analytics
 

Viewers also liked

Viewers also liked (12)

OAAMとTAP統合
OAAMとTAP統合OAAMとTAP統合
OAAMとTAP統合
 
Oam mobile-social-overview
Oam mobile-social-overviewOam mobile-social-overview
Oam mobile-social-overview
 
Using OWSM Assertions and Policies
Using OWSM Assertions and PoliciesUsing OWSM Assertions and Policies
Using OWSM Assertions and Policies
 
Introduction to OAuth2.0
Introduction to OAuth2.0Introduction to OAuth2.0
Introduction to OAuth2.0
 
Oauth2 and OWSM OAuth2 support
Oauth2 and OWSM OAuth2 supportOauth2 and OWSM OAuth2 support
Oauth2 and OWSM OAuth2 support
 
Layer 7 and Oracle -
Layer 7 and Oracle - Layer 7 and Oracle -
Layer 7 and Oracle -
 
Adf mobile overview
Adf mobile overviewAdf mobile overview
Adf mobile overview
 
Developing Web Services With Oracle Web Logic Server
Developing Web Services With Oracle Web Logic ServerDeveloping Web Services With Oracle Web Logic Server
Developing Web Services With Oracle Web Logic Server
 
Iam suite introduction
Iam suite introductionIam suite introduction
Iam suite introduction
 
Oracle API Gateway Installation
Oracle API Gateway InstallationOracle API Gateway Installation
Oracle API Gateway Installation
 
Oracle api gateway overview
Oracle api gateway overviewOracle api gateway overview
Oracle api gateway overview
 
Oracle API Gateway
Oracle API GatewayOracle API Gateway
Oracle API Gateway
 

Similar to Oracle mcs overview 1029

Building Better Mobile Backends with Oracle Mobile Cloud Service
Building Better Mobile Backends with Oracle Mobile Cloud Service	Building Better Mobile Backends with Oracle Mobile Cloud Service
Building Better Mobile Backends with Oracle Mobile Cloud Service Guatemala User Group
 
Oracle Mobile Solution Overview
Oracle Mobile Solution OverviewOracle Mobile Solution Overview
Oracle Mobile Solution OverviewMee Nam Lee
 
Securing your Applications for the Cloud Age
Securing your Applications for the Cloud AgeSecuring your Applications for the Cloud Age
Securing your Applications for the Cloud AgeArtur Alves
 
Complete Visibility into Docker Containers with AppDynamics
Complete Visibility into Docker Containers with AppDynamicsComplete Visibility into Docker Containers with AppDynamics
Complete Visibility into Docker Containers with AppDynamicsAppDynamics
 
Slidedeck MCS Demo eines Anwendungsfalles - DOAG2015
Slidedeck MCS Demo eines Anwendungsfalles - DOAG2015Slidedeck MCS Demo eines Anwendungsfalles - DOAG2015
Slidedeck MCS Demo eines Anwendungsfalles - DOAG2015Nadine Schoene
 
B3 getting started_with_cloud_native_development
B3 getting started_with_cloud_native_developmentB3 getting started_with_cloud_native_development
B3 getting started_with_cloud_native_developmentDr. Wilfred Lin (Ph.D.)
 
Oracle ADF Architecture TV - Design - Architecting for ADF Mobile Integration
Oracle ADF Architecture TV - Design - Architecting for ADF Mobile IntegrationOracle ADF Architecture TV - Design - Architecting for ADF Mobile Integration
Oracle ADF Architecture TV - Design - Architecting for ADF Mobile IntegrationChris Muir
 
Introduction To Cloud Foundry - SpringPeople
Introduction To Cloud Foundry - SpringPeopleIntroduction To Cloud Foundry - SpringPeople
Introduction To Cloud Foundry - SpringPeopleSpringPeople
 
OOW15 - Oracle E-Business Suite Technology: Latest Features and Roadmap
OOW15 - Oracle E-Business Suite Technology: Latest Features and RoadmapOOW15 - Oracle E-Business Suite Technology: Latest Features and Roadmap
OOW15 - Oracle E-Business Suite Technology: Latest Features and Roadmapvasuballa
 
Oracle Mobile Cloud / Bot
Oracle Mobile Cloud / BotOracle Mobile Cloud / Bot
Oracle Mobile Cloud / BotMee Nam Lee
 
API Design – More than just a Payload Definition
API Design – More than just a Payload DefinitionAPI Design – More than just a Payload Definition
API Design – More than just a Payload DefinitionPhil Wilkins
 
Building Cloud Native Applications with Oracle Autonomous Database.
Building Cloud Native Applications with Oracle Autonomous Database.Building Cloud Native Applications with Oracle Autonomous Database.
Building Cloud Native Applications with Oracle Autonomous Database.Oracle Developers
 
Building and Deploying Cloud Native Applications
Building and Deploying Cloud Native ApplicationsBuilding and Deploying Cloud Native Applications
Building and Deploying Cloud Native ApplicationsManish Kapur
 
Cloud Native Meetup Santa Clara 07-11-2019 by Manish Kapur
Cloud Native Meetup Santa Clara 07-11-2019 by Manish KapurCloud Native Meetup Santa Clara 07-11-2019 by Manish Kapur
Cloud Native Meetup Santa Clara 07-11-2019 by Manish KapurOracle Developers
 
SAP Kapsel Plugins For Cordova
SAP Kapsel Plugins For CordovaSAP Kapsel Plugins For Cordova
SAP Kapsel Plugins For CordovaChris Whealy
 
Android Technology – Packaging and Life cycles
Android Technology – Packaging and Life cyclesAndroid Technology – Packaging and Life cycles
Android Technology – Packaging and Life cyclesPrateek Aggarwal
 
Solving todays problems with oracle integration cloud
Solving todays problems with oracle integration cloudSolving todays problems with oracle integration cloud
Solving todays problems with oracle integration cloudHeba Fouad
 
Quickly Build a Native Mobile App for Your Community Using Salesforce Mobile SDK
Quickly Build a Native Mobile App for Your Community Using Salesforce Mobile SDKQuickly Build a Native Mobile App for Your Community Using Salesforce Mobile SDK
Quickly Build a Native Mobile App for Your Community Using Salesforce Mobile SDKSalesforce Developers
 

Similar to Oracle mcs overview 1029 (20)

Oracle mobile cloud service
Oracle mobile cloud serviceOracle mobile cloud service
Oracle mobile cloud service
 
Building Better Mobile Backends with Oracle Mobile Cloud Service
Building Better Mobile Backends with Oracle Mobile Cloud Service	Building Better Mobile Backends with Oracle Mobile Cloud Service
Building Better Mobile Backends with Oracle Mobile Cloud Service
 
Oracle Mobile Solution Overview
Oracle Mobile Solution OverviewOracle Mobile Solution Overview
Oracle Mobile Solution Overview
 
Securing your Applications for the Cloud Age
Securing your Applications for the Cloud AgeSecuring your Applications for the Cloud Age
Securing your Applications for the Cloud Age
 
Complete Visibility into Docker Containers with AppDynamics
Complete Visibility into Docker Containers with AppDynamicsComplete Visibility into Docker Containers with AppDynamics
Complete Visibility into Docker Containers with AppDynamics
 
Slidedeck MCS Demo eines Anwendungsfalles - DOAG2015
Slidedeck MCS Demo eines Anwendungsfalles - DOAG2015Slidedeck MCS Demo eines Anwendungsfalles - DOAG2015
Slidedeck MCS Demo eines Anwendungsfalles - DOAG2015
 
B3 getting started_with_cloud_native_development
B3 getting started_with_cloud_native_developmentB3 getting started_with_cloud_native_development
B3 getting started_with_cloud_native_development
 
Oracle ADF Architecture TV - Design - Architecting for ADF Mobile Integration
Oracle ADF Architecture TV - Design - Architecting for ADF Mobile IntegrationOracle ADF Architecture TV - Design - Architecting for ADF Mobile Integration
Oracle ADF Architecture TV - Design - Architecting for ADF Mobile Integration
 
Introduction To Cloud Foundry - SpringPeople
Introduction To Cloud Foundry - SpringPeopleIntroduction To Cloud Foundry - SpringPeople
Introduction To Cloud Foundry - SpringPeople
 
Appium solution artizone
Appium solution   artizoneAppium solution   artizone
Appium solution artizone
 
OOW15 - Oracle E-Business Suite Technology: Latest Features and Roadmap
OOW15 - Oracle E-Business Suite Technology: Latest Features and RoadmapOOW15 - Oracle E-Business Suite Technology: Latest Features and Roadmap
OOW15 - Oracle E-Business Suite Technology: Latest Features and Roadmap
 
Oracle Mobile Cloud / Bot
Oracle Mobile Cloud / BotOracle Mobile Cloud / Bot
Oracle Mobile Cloud / Bot
 
API Design – More than just a Payload Definition
API Design – More than just a Payload DefinitionAPI Design – More than just a Payload Definition
API Design – More than just a Payload Definition
 
Building Cloud Native Applications with Oracle Autonomous Database.
Building Cloud Native Applications with Oracle Autonomous Database.Building Cloud Native Applications with Oracle Autonomous Database.
Building Cloud Native Applications with Oracle Autonomous Database.
 
Building and Deploying Cloud Native Applications
Building and Deploying Cloud Native ApplicationsBuilding and Deploying Cloud Native Applications
Building and Deploying Cloud Native Applications
 
Cloud Native Meetup Santa Clara 07-11-2019 by Manish Kapur
Cloud Native Meetup Santa Clara 07-11-2019 by Manish KapurCloud Native Meetup Santa Clara 07-11-2019 by Manish Kapur
Cloud Native Meetup Santa Clara 07-11-2019 by Manish Kapur
 
SAP Kapsel Plugins For Cordova
SAP Kapsel Plugins For CordovaSAP Kapsel Plugins For Cordova
SAP Kapsel Plugins For Cordova
 
Android Technology – Packaging and Life cycles
Android Technology – Packaging and Life cyclesAndroid Technology – Packaging and Life cycles
Android Technology – Packaging and Life cycles
 
Solving todays problems with oracle integration cloud
Solving todays problems with oracle integration cloudSolving todays problems with oracle integration cloud
Solving todays problems with oracle integration cloud
 
Quickly Build a Native Mobile App for Your Community Using Salesforce Mobile SDK
Quickly Build a Native Mobile App for Your Community Using Salesforce Mobile SDKQuickly Build a Native Mobile App for Your Community Using Salesforce Mobile SDK
Quickly Build a Native Mobile App for Your Community Using Salesforce Mobile SDK
 

Recently uploaded

定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一ra6e69ou
 
SELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANYSELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANYdizinfo
 
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy GirlsCall Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy GirlsPooja Nehwal
 
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...makika9823
 
Online Social Shopping Motivation: A Preliminary Study
Online Social Shopping Motivation: A Preliminary StudyOnline Social Shopping Motivation: A Preliminary Study
Online Social Shopping Motivation: A Preliminary StudyAJHSSR Journal
 
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service 👖
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service  👖CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service  👖
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service 👖anilsa9823
 
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...baharayali
 
Impact Of Educational Resources on Students' Academic Performance in Economic...
Impact Of Educational Resources on Students' Academic Performance in Economic...Impact Of Educational Resources on Students' Academic Performance in Economic...
Impact Of Educational Resources on Students' Academic Performance in Economic...AJHSSR Journal
 
Website research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazineWebsite research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazinesamuelcoulson30
 
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCR
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCRStunning ➥8448380779▻ Call Girls In Paharganj Delhi NCR
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCRDelhi Call girls
 
Add more information to your upload Tip: Better titles and descriptions lead ...
Add more information to your upload Tip: Better titles and descriptions lead ...Add more information to your upload Tip: Better titles and descriptions lead ...
Add more information to your upload Tip: Better titles and descriptions lead ...SejarahLokal
 
O9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenO9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenSapana Sha
 
Call Girls In Noida Mall Of Noida O9654467111 Escorts Serviec
Call Girls In Noida Mall Of Noida O9654467111 Escorts ServiecCall Girls In Noida Mall Of Noida O9654467111 Escorts Serviec
Call Girls In Noida Mall Of Noida O9654467111 Escorts ServiecSapana Sha
 
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779Delhi Call girls
 
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...AJHSSR Journal
 
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCRElite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCRDelhi Call girls
 
c Starting with 5000/- for Savita Escorts Service 👩🏽‍❤️‍💋‍👨🏿 8923113531 ♢ Boo...
c Starting with 5000/- for Savita Escorts Service 👩🏽‍❤️‍💋‍👨🏿 8923113531 ♢ Boo...c Starting with 5000/- for Savita Escorts Service 👩🏽‍❤️‍💋‍👨🏿 8923113531 ♢ Boo...
c Starting with 5000/- for Savita Escorts Service 👩🏽‍❤️‍💋‍👨🏿 8923113531 ♢ Boo...gurkirankumar98700
 
Top Call Girls In Telibagh ( Lucknow ) 🔝 8923113531 🔝 Cash Payment
Top Call Girls In Telibagh ( Lucknow  ) 🔝 8923113531 🔝  Cash PaymentTop Call Girls In Telibagh ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment
Top Call Girls In Telibagh ( Lucknow ) 🔝 8923113531 🔝 Cash Paymentanilsa9823
 

Recently uploaded (20)

定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
 
Bicycle Safety in Focus: Preventing Fatalities and Seeking Justice
Bicycle Safety in Focus: Preventing Fatalities and Seeking JusticeBicycle Safety in Focus: Preventing Fatalities and Seeking Justice
Bicycle Safety in Focus: Preventing Fatalities and Seeking Justice
 
SELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANYSELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANY
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Masudpur
Delhi  99530 vip 56974  Genuine Escort Service Call Girls in MasudpurDelhi  99530 vip 56974  Genuine Escort Service Call Girls in Masudpur
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Masudpur
 
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy GirlsCall Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
 
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
 
Online Social Shopping Motivation: A Preliminary Study
Online Social Shopping Motivation: A Preliminary StudyOnline Social Shopping Motivation: A Preliminary Study
Online Social Shopping Motivation: A Preliminary Study
 
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service 👖
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service  👖CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service  👖
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service 👖
 
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
 
Impact Of Educational Resources on Students' Academic Performance in Economic...
Impact Of Educational Resources on Students' Academic Performance in Economic...Impact Of Educational Resources on Students' Academic Performance in Economic...
Impact Of Educational Resources on Students' Academic Performance in Economic...
 
Website research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazineWebsite research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazine
 
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCR
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCRStunning ➥8448380779▻ Call Girls In Paharganj Delhi NCR
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCR
 
Add more information to your upload Tip: Better titles and descriptions lead ...
Add more information to your upload Tip: Better titles and descriptions lead ...Add more information to your upload Tip: Better titles and descriptions lead ...
Add more information to your upload Tip: Better titles and descriptions lead ...
 
O9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenO9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking Men
 
Call Girls In Noida Mall Of Noida O9654467111 Escorts Serviec
Call Girls In Noida Mall Of Noida O9654467111 Escorts ServiecCall Girls In Noida Mall Of Noida O9654467111 Escorts Serviec
Call Girls In Noida Mall Of Noida O9654467111 Escorts Serviec
 
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
 
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
 
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCRElite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
 
c Starting with 5000/- for Savita Escorts Service 👩🏽‍❤️‍💋‍👨🏿 8923113531 ♢ Boo...
c Starting with 5000/- for Savita Escorts Service 👩🏽‍❤️‍💋‍👨🏿 8923113531 ♢ Boo...c Starting with 5000/- for Savita Escorts Service 👩🏽‍❤️‍💋‍👨🏿 8923113531 ♢ Boo...
c Starting with 5000/- for Savita Escorts Service 👩🏽‍❤️‍💋‍👨🏿 8923113531 ♢ Boo...
 
Top Call Girls In Telibagh ( Lucknow ) 🔝 8923113531 🔝 Cash Payment
Top Call Girls In Telibagh ( Lucknow  ) 🔝 8923113531 🔝  Cash PaymentTop Call Girls In Telibagh ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment
Top Call Girls In Telibagh ( Lucknow ) 🔝 8923113531 🔝 Cash Payment
 

Oracle mcs overview 1029

  • 1.
  • 2. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. | Oracle Mobile Cloud Service Overview Alice Liu lzhmails@163.com 6/25, 2015 Oracle Confidential – Internal/Restricted/Highly Restricted
  • 3. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. | Agenda What is Mobile Cloud Service? Features and Platform APIs Getting started with Client SDK Android Demo 1 2 Oracle Confidential – Internal/Restricted/Highly Restricted 3 3 4
  • 4. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |4 What is Mobile Cloud Service? Mobile Cloud Service is a cloud-based service that provides a unified hub for developing, deploying, maintaining, monitoring, and analyzing your mobile applications and the resources that they rely on.
  • 5. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. | Describe the MCS developer portal components Mobile Backends: This is area where mobile client developers will spend most of their time. A mobile backend is all the backend services that a specific mobile application will consume. Storage: Mobile developers use this function to manage custom storage collectors for use across mobile backends. This is useful when mobile developers want to store data collected from devices that do not have a backend available to map or store. E.g. GPS, Notes, Photos, Videos etc User Management: Used by mobile developers to create and store user credentials for B2C use cases or where there may not be a user credential store to federate Connectors: This is area where the service developers spend time in defining, creating, securing and testing connections to backend systems. This could be via REST, SOAP or via connectors to legacy APIs APIs: This is the area where service developers can design, test, implement, shape and deploy custom API into the API Catalog . Click on mobile backend 5 What is Mobile Cloud Service?
  • 6. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |6 What is Mobile Cloud Service? Mobile Cloud Service is a cloud-based service that provides a unified hub for developing, deploying, maintaining, monitoring, and analyzing your mobile applications and the resources that they rely on.
  • 7. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |7 Features and Platform APIs • Send push notifications to both iOS and Android mobile devices • Store application data in the cloud so it’s protected and easy to get at • Cache locally store REST resources to optimize application performance • Provide user login capabilities and test real users and roles • Gather usage data and generate analytics reports • Monitor health and troubleshoot problems
  • 8. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |8 Features and Platform APIs
  • 9. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |9 Getting started with Client SDK Android The official Android Client SDK tutorial is available now: http://docs-uat.us.oracle.com/cloud/latest/mobilecs_gs/MCSUA/GUID-B9B3FEB0-7B52-4691-B410-4D8DF70D793 Pre-requisites 1. Android Android SDK installed Android Platform Tools 19.0.3 2. iOS Mac OS X 10.9.x (Mavericks) Xcode 5.1.x
  • 10. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |10 Getting started with Client SDK Android 1. Create an Android Gradle Application with Android Studio a. Download and install Android Studio https://developer.anroid.com/sdk/installing/studio.html b. Download and install Stand-alone SDK Tools version of Android SDK: http://developer.android.com/sdk/installing/index.html c. Create an Android Gradle application, and use the Stand-alone SDK instead the one comes with Android Studio
  • 11. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |11 Getting started with Client SDK Android a. Get IDMSDK project b. Unzip it and put the IDMSDK folder under your application's main directory c. Edit file settings.gradle in project directory, change it to: include ':app',':IDMSDK' d. Edit file build.gradle in src directory, change dependencies settings to: dependencies { compile project(':IDMSDK') compile fileTree(dir: 'libs', include: ['*.jar']) } e. Click "Sync project with Gradle files" in Android Studio Tools tab Android's sub menu (Or you can choose to do this later) Link IDMSDK project to your app
  • 12. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |12 Getting started with Client SDK Android Add MCS Config file a. Create a folder named "assets" under app/src/main/ b. Add oracle_mobile_cloud_config.xml to app/src/main/assets folder, and you will need to change: mbeName, mbeVersion, oAuthTokenEndPoint, oAuthClientId, oAuthClientSecret, oAuthLogoutUrl base on your MCS Env settings. <mobileBackend> <mbeName>test</mbeName> <mbeVersion>1.0</mbeVersion> <default>true</default> <appKey>1ccba599-8e48-44e1-ba8b-7e70f5a3f57f</appKey> <baseUrl>http://blr2203087.idc.oracle.com:7201</baseUrl> <enableAnalytics>true</enableAnalytics> <enableLogger>true</enableLogger> <identityDomain>mob1</identityDomain> <oAuthTokenEndPoint>http://slc07grb.us.oracle.com:14100/oam/oauth2/tokens</oAuthTokenEndPoint> <oAuthClientId>eac8b447-014c-4b60-9c0e-5451dda448bc</oAuthClientId> <oAuthClientSecret>dFdupZuGGhyJCrWGTaWc</oAuthClientSecret> </mobileBackend>
  • 13. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |13 Getting started with Client SDK Android Setup Mobile Backend
  • 14. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |14 Getting started with Client SDK Android Add/Define User and Roles
  • 15. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |15 Getting started with Client SDK Android Create a Storage Collection (Optional, only need it when working with Storage SDK)
  • 16. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |16 Getting started with Client SDK Android
  • 17. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |17 Getting started with Client SDK Android Add permissions to AndroidMainfest.xml add at least these permissions <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  • 18. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |18 Getting started with Client SDK Android Build the Android Application Click on Android Studio Tool bar, or like below to Sync Project with Gradle Files
  • 19. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |19 Getting started with Client SDK Android Run the Android Application start emulator with command: emulator -avd YourAvdNameHere -http-proxy http://cn- proxy.jp.oracle.com:80
  • 20. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |20 Demo
  • 21. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |21 Demo
  • 22. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |22 •http://docs-uat.us.oracle.com/cloud/latest/mobilecs_gs/MCSUA/toc.htm •The official Android Client SDK tutorial is available now: http://docs-uat.us.oracle.com/cloud/latest/mobilecs_gs/MCSUA/GUID-B9B3FEB0-7B52- 4691-B410-4D8DF70D7933.htm#MCSUA-GUID-B9B3FEB0-7B52-4691-B410- 4D8DF70D7933 • http://developer.android.com/training/index.html • http://www.vogella.com/tutorials/android.html References:
  • 23.
  • 24. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. | Q&A
  • 25. Copyright © 2015, Oracle and/or its affiliates. All rights reserved. |