Java HTTP Adapter

improve this page | report issue

Overview

This tutorial is a continuation of Java Adapter and assumes previous knowledge of the concepts described there.

Java adapters provide free reign over connectivity to your backend. It is therefore your responsibility to ensure best practices regarding performance and other implementation details.

This tutorial shows an example of a Java adapter that connects to an RSS feed by using a Java HttpClient.

Topics:

RSSAdapterApplication

RSSAdapterApplication extends MFPJAXRSApplication and is a good place to trigger any initialization required by your application.

@Override
protected void init() throws Exception {
    RSSAdapterResource.init();
    logger.info("Adapter initialized!");
}

RSSAdapterResource

@Path("/")
public class RSSAdapterResource {
}

RSSAdapterResource is where we handle the requests to your adapter.

@Path("/") means that the resources will be available at the URL http(s)://host:port/ProjectName/adapters/AdapterName/.

HTTP Client

private static CloseableHttpClient client;
private static HttpHost host;
public static void init() {
    client = HttpClients.createDefault();
    host = new HttpHost("developer.ibm.com");
}

Because every request to your resource will create a new instance of RSSAdapterResource, it is important to reuse objects that may impact performance. In this example we made the Http client a static object and initialized it in a static init() method, which gets called by the init() of RSSAdapterApplication as described above.

Procedure resource

@GET
@Produces("application/json")
public void get(@Context HttpServletResponse response, @QueryParam("tag") String tag) throws ClientProtocolException, IOException, IllegalStateException, SAXException {
    if(tag!=null && !tag.isEmpty()){
	    execute(new HttpGet("/mobilefirstplatform/tag/"+ tag +"/feed"), response);
    } else{
	    execute(new HttpGet("/mobilefirstplatform/feed"), response);
    }
}

Our adapter exposes just one resource URL which allows to retrieve the RSS feed from the backend service.

  • @GET means that this procedure only responds to HTTP GET requests.
  • @Produces("application/json") specifies the Content Type of the response to send back. We chose to send the response as a JSON object to make it easier on the client-side.
  • @Context HttpServletResponse response will be used to write to the response output stream. This enables us more granularity than returning a simple string.
  • @QueryParam("tag") String tag enables the procedure to receive a parameter. The choice of QueryParam means the parameter is to be passed in the query (/RSSAdapter/?tag=MobileFirst_Platform). Other options include @PathParam, @HeaderParam, @CookieParam, @FormParam, etc.
  • throws ClientProtocolException, ... means we are forwarding any exception back to the client. The client code is responsible for handling potential exceptions which will be received as HTTP 500 errors. Another solution (more likely in production code) is to handle exceptions in your server Java code and decide what to send to the client based on the exact error.
  • execute(new HttpGet("/mobilefirstplatform/feed"), response). The actual HTTP request to the backend service is handled by another method defined later.

Depending if you pass a tag parameter, execute will retrieve a different build a different path and retrieve a different RSS file.

execute()

public void execute(HttpUriRequest req, HttpServletResponse resultResponse) throws ClientProtocolException, IOException,
		IllegalStateException, SAXException {
    HttpResponse RSSResponse = client.execute(host, req);
    ServletOutputStream os = resultResponse.getOutputStream();

    if (RSSResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
        resultResponse.addHeader("Content-Type", "application/json");
        String json = XML.toJson(RSSResponse.getEntity().getContent());
        os.write(json.getBytes(Charset.forName("UTF-8")));</p>
    } else {
        resultResponse.setStatus(RSSResponse.getStatusLine().getStatusCode());
        RSSResponse.getEntity().getContent().close();
        os.write(RSSResponse.getStatusLine().getReasonPhrase().getBytes());
    }
    os.flush();
    os.close();
}

  • HttpResponse RSSResponse = client.execute(host, req). We use our static HTTP client to execute the HTTP request and store the response.
  • ServletOutputStream os = resultResponse.getOutputStream(). This is the output stream to write a response to the client.
  • resultResponse.addHeader("Content-Type", "application/json"). As mentioned before, we chose to send the response as JSON.
  • String json = XML.toJson(RSSResponse.getEntity().getContent()). We used org.apache.wink.json4j.utils.XML to convert the XML RSS to a JSON string.
  • os.write(json.getBytes(Charset.forName("UTF-8"))) the resulting JSON string is written to the output stream.

The output stream is then flushed and closed.

If RSSResponse is not 200 OK, we write the status code and reason in the response instead.

Results

Use the testing techniques described in Java Adapter to test your work.

The adapter should return the RSS feed converted to JSON.

{
   "rss": {
      "channel": {
         "description": "Develop, test, manage, and secure your mobile web, native and hybrid apps",
         "generator": "http:\/\/wordpress.org\/?v=4.2.4",
         "item": [
            {
               "category": [
                  "Mobile",
                  "android",
                  "Mobile Quality Assurance",
                  "mobile_development",
                  "mobilefirst",
                  "xamarin"
               ],
               "commentRss": "https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/09\/01\/integrating-mqa-into-xamarin-android-app\/feed\/",
               "comments": [
                  "https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/09\/01\/integrating-mqa-into-xamarin-android-app\/#comments",
                  "0"
               ],
               "creator": "Vidyasagar MSC",
               "description": "<p>The post <a rel=\"nofollow\" href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/09\/01\/integrating-mqa-into-xamarin-android-app\/\">Integrating MQA into Xamarin.Android app<\/a> appeared first on <a rel=\"nofollow\" href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\">IBM MobileFirst Platform<\/a>.<\/p>",
               "encoded": "<p>It all started when I received an email seeking help on using MQA or to be more precise integrating MQA into Xamarin based android app. Before jumping into addressing the problem, let&amp;#8217;s define MQA.<\/p>\n<h4>What is MQA?<\/h4>\n<p>MQA stands for &amp;#8220;Mobile Quality Assurance&amp;#8221; and is part of the IBM MobileFirst Platform.<\/p>\n<blockquote><p><em><span style=\"line-height: 1.5\">IBM MQA provides line of business professionals and development teams with insightful and streamlined quality feedback and metrics from both pre-production and production, enabling them to prioritize and take action to support a dynamic mobile app strategy.<\/span><\/em><\/p><\/blockquote>\n<p>The Features of MQA are<\/p>\n<div style=\"width: 1058px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/vidyasagarmsc.com\/wp-content\/uploads\/2015\/09\/MQA1.png\"><img class=\"size-full wp-image-65\" src=\"http:\/\/vidyasagarmsc.com\/wp-content\/uploads\/2015\/09\/MQA1.png\" alt=\"Features of Mobile Quality Assurance.\" width=\"1048\" height=\"350\" \/><\/a><p class=\"wp-caption-text\">Features of Mobile Quality Assurance.<\/p><\/div>\n<p><em><strong>Note<\/strong><\/em>: To understand more about MQA, visit <a href=\"http:\/\/www-03.ibm.com\/software\/products\/en\/ibm-mobilefirst-platform-quality-assurance\">IBM Mobile Quality Assurance<\/a><\/p>\n<p>So, by now we should be good with the first part of our blog title that is MQA. So, the next question is<\/p>\n<h4>What is Xamarin.Android?<\/h4>\n<p>Xamarin is a platform to create native iOS, Android, Mac and Windows apps in C#. Xamarin.Android allows us to create native Android applications using the same UI controls we would in Java, except with the flexibility and elegance of a modern language (C#).<\/p>\n<p>As we are good with the definitions, let&amp;#8217;s address the problem.<\/p>\n<p><strong>What&amp;#8217;s the problem in integrating MQA into Xamarin Android app?<\/strong><\/p>\n<p>At the time of this blog post, the available MQA SDKs are iOS native SDK, Android native SDK and Javascript  SDK.<\/p>\n<p>So, we have to find a workaround to address this use-case. The initial step is to download the Android MQA SDK and see what&amp;#8217;s provided. you can download it from <a href=\"http:\/\/www-01.ibm.com\/support\/knowledgecenter\/#!\/SSJML5_6.0.0\/com.ibm.mqa.uau.saas.doc\/topics\/c_AndroidSDKsForDownload.html\">here<\/a>. Once successfully downloaded and unzipped, we should see a jar file namely <strong><em>MQA-Android-library-&amp;lt;version number&amp;gt;.jar<\/em>  <\/strong>under lib folder<strong>.<\/strong><\/p>\n<div style=\"width: 634px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/vidyasagarmsc.com\/wp-content\/uploads\/2015\/09\/MQA2.png\"><img class=\"size-full wp-image-70\" src=\"http:\/\/vidyasagarmsc.com\/wp-content\/uploads\/2015\/09\/MQA2.png\" alt=\"MQA Android SDK \" width=\"624\" height=\"440\" \/><\/a><p class=\"wp-caption-text\">MQA Android SDK<\/p><\/div>\n<p>As Xamarin is C# based, What can we do with this jar file?<\/p>\n<p>We have <strong>Xamarin bindings<\/strong> to our rescue, which helps using in consuming .JARs from C#.<\/p>\n<p><strong><em>Note<\/em>:<\/strong> Steps to consume MQA Android JAR in a Xamarin.Android app is mentioned <a href=\"https:\/\/developer.xamarin.com\/guides\/android\/advanced_topics\/java_integration_overview\/binding_a_java_library_(.jar)\/\">here<\/a><\/p>\n<div style=\"width: 257px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/vidyasagarmsc.com\/wp-content\/uploads\/2015\/09\/MQA31.png\"><img class=\"wp-image-72 size-full\" src=\"http:\/\/vidyasagarmsc.com\/wp-content\/uploads\/2015\/09\/MQA31.png\" alt=\"\" width=\"247\" height=\"303\" \/><\/a><p class=\"wp-caption-text\">Xamarin binding project with MQA Android .JAR file<\/p><\/div>\n<p>The files of our interest here are <strong>MQA-Android-library-2.7.4.jar<\/strong> (Version number may vary) and <strong>Metadata.xml.<\/strong><\/p>\n<ul>\n<li>MQA-Android-library-2.7.4.jar file will have all the MQA related classes and methods required for us to start an Android MQA session.<\/li>\n<li>Metadata.xml- <em>Allows changes to be made to the final API, such as changing the namespace of the generated binding.<\/em><\/li>\n<\/ul>\n<p>Based on the errors thrown while building the project, Metadata.xml in my case looks like this<\/p>\n<pre class=\"brush: xml; title: ; notranslate\">&amp;lt;metadata&amp;gt;\n  &amp;lt;!--\n  This sample removes the class: android.support.v4.content.AsyncTaskLoader.LoadTask:\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='android.support.v4.content']\/class[@name='AsyncTaskLoader.LoadTask']&amp;quot; \/&amp;gt;\n  \n  This sample removes the method: android.support.v4.content.CursorLoader.loadInBackground:\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='android.support.v4.content']\/class[@name='CursorLoader']\/method[@name='loadInBackground']&amp;quot; \/&amp;gt;\n  --&amp;gt;\n\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='ext.com.google.inject.spi']\/class[@name='InjectionPoint.Factory.1']&amp;quot;\/&amp;gt;\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='ext.com.google.inject.spi']\/class[@name='InjectionPoint.Factory.2']&amp;quot;\/&amp;gt;\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='com.applause.android.log']\/interface[@name='LoggerInterface']&amp;quot;\/&amp;gt;\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='ext.com.google.inject.internal']&amp;quot;\/&amp;gt;\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='ext.com.google.inject.matcher']&amp;quot;\/&amp;gt;\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='com.applause.android.util']\/class[@name='AbstractRequest']&amp;quot;\/&amp;gt;\n  &amp;lt;remove-node path=&amp;quot;\/api\/package[@name='ext.com.google.inject.spi']\/class[@name='Elements.RecordingBinder']\/method[@name='bind' and count(parameter)=1 and parameter[1][@type='ext.com.google.inject.Key']]&amp;quot;\/&amp;gt;\n\n&amp;lt;attr path=&amp;quot;\/api\/package[@name='com.applause.android.messages']\/class[@name='Message']\/field[@name='message']&amp;quot; name=&amp;quot;managedName&amp;quot;&amp;gt;Message1&amp;lt;\/attr&amp;gt;\n&amp;lt;attr path=&amp;quot;\/api\/package[@name='com.applause.android.log']&amp;quot; name=&amp;quot;managedName&amp;quot;&amp;gt;log&amp;lt;\/attr&amp;gt;\n&amp;lt;\/metadata&amp;gt;\n\n<\/pre>\n<p>Once all the errors are fixed and your binding project builds successfully, add a new Xamarin Android project (if you haven&amp;#8217;t added yet). Now, add MQA binding project reference in our Xamarin android app. <em><strong>Note:<\/strong><\/em> Both your binding project and Xamarin.Android project should be of same <strong>target framework. <\/strong>You can verify this by right clicking on your project -&amp;gt; Options -&amp;gt; General.<\/p>\n<div id=\"attachment_83\" style=\"width: 270px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/vidyasagarmsc.com\/wp-content\/uploads\/2015\/09\/MQA5.png\"><img class=\"size-full wp-image-83\" src=\"http:\/\/vidyasagarmsc.com\/wp-content\/uploads\/2015\/09\/MQA5.png\" alt=\"Xamarin Android project with added reference to MQA\" width=\"260\" height=\"652\" \/><\/a><p class=\"wp-caption-text\">Xamarin Android project with added reference to MQA<\/p><\/div>\n<p>Now, let&amp;#8217;s start MQA android session in our Count.Android app. Before doing this, we should create a MQA service on IBM Cloud. You can follow the instructions mentioned at <a href=\"https:\/\/www.ng.bluemix.net\/docs\/#services\/MobileQualityAssurance\/index.html#MobileQualityAssurance\">Getting started with Mobile Quality Assurance- Bluemix<\/a> or watch this video.<\/p>\n<p><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text\/html' width='980' height='582' src='https:\/\/www.youtube.com\/embed\/zHRfGatcKPM?version=3&amp;#038;rel=1&amp;#038;fs=1&amp;#038;showsearch=0&amp;#038;showinfo=1&amp;#038;iv_load_policy=1&amp;#038;wmode=transparent' frameborder='0' allowfullscreen='true'><\/iframe><\/span><\/p>\n<p>Starting a <span class=\"ph\"><span id=\"d6087e24\" class=\"ph\">Mobile Quality Assurance<\/span><\/span> session with the Android SDK entails three steps. First, build a configuration to define how <span class=\"ph\"><span id=\"d6087e24-d6083e11a1310\" class=\"ph\">Mobile Quality Assurance<\/span><\/span> works with your app. Second, start the session itself. Third, add tracking to your activities. Open <strong>MainActivity.cs<\/strong> file (Android Project) and paste the code provided below<\/p>\n<pre class=\"brush: csharp; title: ; notranslate\">using System;\n\nusing Android.App;\nusing Android.Content;\nusing Android.Runtime;\nusing Android.Views;\nusing Android.Widget;\nusing Android.OS;\n\/\/MQA references\nusing Com.Ibm.Mqa.Config;\nusing Com.Ibm.Mqa;\n\n\nnamespace Count.Android\n{\n\t[Activity (Label = &amp;quot;Count.Android&amp;quot;, MainLauncher = true, Icon = &amp;quot;@drawable\/icon&amp;quot;)]\n\tpublic class MainActivity : Activity\n\t{\n\t\tint count = 1;\n\t\t\/\/Use your own generated APP KEY\n\t\tconst string APP_KEY=&amp;quot;1g59b7d884f9fdf5426162e5cb1f87a700648bce4fg0g1g379e0d3a&amp;quot;;\n\t\tprotected override void OnCreate (Bundle bundle)\n\t\t{\n\t\t\tbase.OnCreate (bundle);\n\t\t\t\/\/MQA Android session configuration \n\t\t\tConfiguration configuration = new Configuration.Builder(this)\n\t\t\t\t.WithAPIKey(APP_KEY) \/\/Provides the quality assurance application APP_KEY\n\t\t\t\t.WithMode(MQA.Mode.Qa) \/\/Selects the quality assurance application mode\n\t\t\t\t.WithReportOnShakeEnabled(true) \/\/Enables shake report trigger\n\t\t\t\t.WithDefaultUser(&amp;quot;default_user@email.com&amp;quot;) \/\/Sets a default user and user selection\n\t\t\t\t.Build();\n\n\t\t\t\/\/Starting MQA Android Session\n\t\t\tMQA.StartNewSession (this, configuration);\n\t\t\t\/\/ Set our view from the &amp;quot;main&amp;quot; layout resource\n\t\t\tSetContentView (Resource.Layout.Main);\n\n\t\t\t\/\/ Get our button from the layout resource,\n\t\t\t\/\/ and attach an event to it\n\t\t\tButton button = FindViewById&amp;lt;Button&amp;gt; (Resource.Id.myButton);\n\t\t\t\n\t\t\tbutton.Click += delegate {\n\t\t\t\tbutton.Text = string.Format (&amp;quot;{0} clicks!&amp;quot;, count++);\n\t\t\t};\n\t\t}\n\t}\n}\n\n\n\n<\/pre>\n<p>Now, MQA is integrated into Xamarin.Android app and we are good to go.<\/p>\n<p>What we have implemented above is just a drop in the Ocean of MQA, to know more about MQA and its features &amp;#8211; Visit <a href=\"http:\/\/www-01.ibm.com\/support\/knowledgecenter\/?lang=en#!\/SSJML5_6.0.0\/com.ibm.mqa.uau.saas.doc\/mqa600saas_welcome.html\" target=\"_blank\">MQA Knowledge Centre<\/a><\/p>\n<p>Happy Coding !!!<\/p>\n<p>The post <a rel=\"nofollow\" href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/09\/01\/integrating-mqa-into-xamarin-android-app\/\">Integrating MQA into Xamarin.Android app<\/a> appeared first on <a rel=\"nofollow\" href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\">IBM MobileFirst Platform<\/a>.<\/p>",
               "guid": {
                  "content": "https:\/\/developer.ibm.com\/mobilefirstplatform\/?p=16964",
                  "isPermaLink": "false"
               },
               "link": "https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/09\/01\/integrating-mqa-into-xamarin-android-app\/",
               "pubDate": "Tue, 01 Sep 2015 20:27:07 +0000",
               "title": "Integrating MQA into Xamarin.Android app"
            },
            {
               "category": [
                  "Uncategorized",
                  "MobileFirst_Platform"
               ],
               "commentRss": "https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/08\/19\/try-on-bluemix-and-buy-mfp\/feed\/",
               "comments": [
                  "https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/08\/19\/try-on-bluemix-and-buy-mfp\/#comments",
                  "0"
               ],
               "creator": "ChethanKumar",
               "description": "<p>The post <a rel=\"nofollow\" href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/08\/19\/try-on-bluemix-and-buy-mfp\/\">Try on Bluemix and migrate to on-prem MobileFirst Platform<\/a> appeared first on <a rel=\"nofollow\" href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\">IBM MobileFirst Platform<\/a>.<\/p>",
               "encoded": "<p>Contributed By : Chethan Kumar SN (chethankumar.sn@in.ibm.com) and Vittal Pai (vittalpai@in.ibm.com)<\/p>\n<p>With the release of MobileFirst Platform v7.1, one can now migrate any existing iOS app built for MobileServices on Bluemix to MobileFirst Platform with just a handful of simple steps.<\/p>\n<p>To elucidate the process, lets look at how to migrate a simple Bluemix iOS app.<\/p>\n<p>To migrate an existing iOS app built for MobileServices on Bluemix to run on MobileFirst Platform, follow the steps below.<\/p>\n<ul>\n<li><a href=\"#migrateexisting\">Existing Bluemix Server Application<\/a><\/li>\n<li><a href=\"#migrateblu\">Existing Bluemix Client Application<\/a><\/li>\n<li><a href=\"#configureclient\">Migration of Client Application<\/a><\/li>\n<li><a href=\"#migratemfp\">Migration of JAX-RS Application to JAVA Adapter<\/a><\/li>\n<li><a href=\"#configoauth\">Configuring Custom-OAuth<\/a><\/li>\n<li><a href=\"#configurepush\">Configuring Push Capability<\/a><\/li>\n<li><a href=\"#sample\">Sample and Source Code<\/a><\/li>\n<\/ul>\n<h2 id=\"migrateexisting\">Existing Bluemix Server Application<\/h2>\n<p>The Bluemix app has the following functionality:<\/p>\n<ul>\n<li>On the client side, the application stores a list of items and provides a way to add more items to the list. Each item can able to store Name, Store, Price and image of the product. The App&amp;#8217;s are protected by Custom Authenticator via AMA security service provided by bluemix.<\/li>\n<li>On the server side, the App contains a JAX-RS class to store and manipulate the data. It also contains the server side AMA security implementation.<\/li>\n<\/ul>\n<p>On BlueMix we have application with the following configuration:<\/p>\n<ul>\n<li>Liberty Runtime : which used to run JAX-RS application on Bluemix<\/li>\n<li>Advance Mobile Access service : which gives mobile application security and monitoring functionality<\/li>\n<li>Push Service for iOS 8 : which provides the capability to use iOS Push features<\/li>\n<\/ul>\n<h3> Liberty Runtime <\/h3>\n<ul>\n<li>Liberty contains two projects with JAX-RS service (i.e Custom-oauth-java for Custom Authentication and LocalstoreAdapter for storing items). The service include the protected resource and the custom identity provider code. The liberty server is configured with TAI.\n<\/li>\n<li>Trust Association Interface (TAI) is a service provider API that enables the integration of third-party security services with a Liberty profile server. For more info on TAI : <a href=\"http:\/\/www-01.ibm.com\/support\/knowledgecenter\/was_beta_liberty\/com.ibm.websphere.wlp.nd.multiplatform.doc\/ae\/twlp_dev_custom_tai.html\" target=\"_blank\">click here<\/a>\n<\/li>\n<li>The custom identity provider authenticates a user by sending challenges to the client. However, custom identity providers do not communicate directly with clients. They send challenges and receive responses to the challenges by means of the Advanced Mobile Access service. When a custom identity provider successfully authenticates the user, it provides the user identity information to Advanced Mobile Access. For more information on custom authentication refer bluemix documentation : <a href=\"https:\/\/www.ng.bluemix.net\/docs\/services\/mobileaccess\/security\/id_provs\/index-gentopic2.html#custom_id_prov\" target=\"_blank\">click here<\/a>\n<p>The custom identity provider code is defined by two http API:<\/p>\n<pre class=\"brush: plain; title: ; notranslate\">\/startAutorization<\/pre>\n<p> and\n<pre class=\"brush: plain; title: ; notranslate\">\/handleChallengeAnswer<\/pre>\n<pre class=\"brush: java; title: ; notranslate\"> @POST\n\t@Consumes (&amp;quot;application\/json&amp;quot;)\n\t@Path(&amp;quot;\/{tenantId}\/customAuthRealm_3\/startAuthorization&amp;quot;)\n\t@Produces(MediaType.APPLICATION_JSON)\n\tpublic JSONObject startAuthorization(String payload,\n\t\t\t@PathParam(&amp;quot;tenantId&amp;quot;) String deviceId,\n\t\t\t@PathParam(&amp;quot;realmName&amp;quot;) String realmName) throws Exception {\n\t\tJSONObject returnJson = (JSONObject) JSON.parse(CHALLENGE_JSON);\n\t\treturn returnJson;\n\t}\n\t\n\t@POST\n\t@Consumes (&amp;quot;application\/json&amp;quot;)\n\t@Path(&amp;quot;\/{tenantId}\/customAuthRealm_3\/handleChallengeAnswer&amp;quot;)\n\t@Produces(MediaType.APPLICATION_JSON)\n\tpublic JSONObject handleChllengeAnswer(String payload,\n\t\t\t@PathParam(&amp;quot;tenantId&amp;quot;) String deviceId,\n\t\t\t@PathParam(&amp;quot;realmName&amp;quot;) String realmName) throws Exception {\n\t\t\n\t\tJSONObject userStoreJson = (JSONObject) JSON.parse(USER_STORE_JSON);\n\t\tJSONObject failedResponseJson = (JSONObject) JSON.parse(FAILURE_JSON);\n\t\t\n\t\tif(payload == null || payload.isEmpty()) {\n\t\t\treturn failedResponseJson;\n\t\t}\n\t\tJSONObject payloadJson = (JSONObject) JSON.parse(payload);\n\t\tJSONObject challengeAnswer = (JSONObject) payloadJson.get(&amp;quot;challengeAnswer&amp;quot;);\n\t\t\n\t\tif (challengeAnswer == null ) {\n\t\t\treturn failedResponseJson;\n\t\t}\n\t\t\n\t\tString userName = (String) challengeAnswer.get(&amp;quot;userName&amp;quot;);\n\t\tString password = (String) challengeAnswer.get(&amp;quot;password&amp;quot;);\n\t\t\n\t\tif (userName == null || userName.isEmpty() || password == null || password.isEmpty()) {\n\t\t\treturn failedResponseJson;\n\t\t}\n\t\t\n\t\tif (userStoreJson.containsKey(userName)) {\t\n\t\t\tJSONObject userInfoJson = (JSONObject) userStoreJson.get(userName);\n\t\t\tString userPassword = (String) userInfoJson.get(&amp;quot;password&amp;quot;);\n\t\t\tString userDisplayName = (String) userInfoJson.get(&amp;quot;displayName&amp;quot;);\n\t\t\t\n\t\t\tif (password.equals(userPassword)) {\n\t\t\t\tJSONObject returnJson = new JSONObject();\n\t\t\t\tJSONObject userIdentityJson = new JSONObject();\n\t\t\t\tuserIdentityJson.put(&amp;quot;userName&amp;quot;, userName);\n\t\t\t\tuserIdentityJson.put(&amp;quot;displayName&amp;quot;, userDisplayName);\n\t\t\t\t\n\t\t\t\treturnJson.put(&amp;quot;status&amp;quot;, &amp;quot;success&amp;quot;);\n\t\t\t\treturnJson.put(&amp;quot;userIdentity&amp;quot;, userIdentityJson);\n\t\t\t\treturn returnJson;\n\t\t\t}\t\t\t\n\t\t}\n\t\t\n\t\treturn failedResponseJson;\n\t}\n<\/pre>\n<p>The Localstore adapter contains few http API&amp;#8217;s to perform some basic operations like Add, Update, Create and Delete in client application.<\/p>\n<pre class=\"brush: java; title: ; notranslate\"> @GET\n\t@Path(&amp;quot;\/getAllItems&amp;quot;)\n\tpublic String getAllItems() throws IOException{\n\t\tinit();\n\t\tJsonArray jsonArray = new JsonArray();\n\t\tfor(Object key : props.keySet()){\n\t\t\tjsonArray.add(parser.parse(props.getProperty((String) key)).getAsJsonObject());\n\t\t}\n\t\treturn jsonArray.toString();\n\t}\n\n\t@PUT\n\t@Path(&amp;quot;\/addItem&amp;quot;)\n\tpublic void addItem(String itemJson) \n\t\t\tthrows IOException, URISyntaxException{\n\t\ttry{\n\t\t\tinit();\n\t\t\tint newKey = props.keySet().size()+1;\n\t\t\tprops.put(String.valueOf(newKey), itemJson);\n\t\t\tURL url = this.getClass().getClassLoader().getResource(&amp;quot;data.properties&amp;quot;); \n\t\t\tFile file = new File(url.toURI().getPath());\n\t\t\tFileOutputStream foStream = new FileOutputStream(file);\n\t\t\tprops.store(foStream, &amp;quot;saving new item&amp;quot;);\n\t\t\tfoStream.close();\n\n\t\t}catch(IOException ioe){\n\t\t\tioe.printStackTrace();\n\t\t}\n\n\t}\n\n\t@POST\n\t@Path(&amp;quot;\/addAllItems&amp;quot;)\n\tpublic String addAllItems(String itemsJson) \n\t\t\tthrows  URISyntaxException, IOException{\n\t\ttry{\n\t\t\tinit();\n\t\t\tclearAllData();\n\t\t\tJsonArray jsonArr = parser.parse(itemsJson).getAsJsonArray();\n\t\t\tfor(int i=0;i&amp;amp;lt;jsonArr.size();i++){\n\t\t\t\tprops.put(String.valueOf(i+1), jsonArr.get(i).toString());\n\t\t\t}\n\t\t\tURL url = this.getClass().getClassLoader().getResource(&amp;amp;quot;data.properties&amp;amp;quot;); \n\t\t\tFile file = new File(url.toURI().getPath());\n\t\t\tFileOutputStream foStream = new FileOutputStream(file);\n\t\t\tprops.store(foStream, &amp;amp;quot;saving new item&amp;amp;quot;);\n\t\t\tfoStream.close();\n\t\t\treturn &amp;amp;quot;true&amp;amp;quot;;\n\t\t}catch(IOException ioe){\n\t\t\tioe.printStackTrace();\n\t\t}\n\t\treturn &amp;quot;false&amp;quot;;\n\t}\n\n\t@DELETE\n\t@Path(&amp;quot;\/clearAll&amp;quot;)\n\tpublic String clearAllData() \n\t\t\tthrows MissingConfigurationOptionException, URISyntaxException, IOException{\n\t\t\tinit();\n\t\t\tprops.clear();\n\t\t\tSystem.out.println(&amp;quot;Size : &amp;quot;+props.size());\n\t\t\tURL url = this.getClass().getClassLoader().getResource(&amp;quot;data.properties&amp;quot;); \n\t\t\tFile file = new File(url.toURI().getPath());\n\t\t\tFileOutputStream foStream = new FileOutputStream(file);\n\t\t\tprops.store(foStream, &amp;quot;clearing all data&amp;quot;);\n\t\t\tfoStream.close();\n\t\t\treturn &amp;quot;cleared&amp;quot;;\n\t}\n<\/pre>\n<\/li>\n<li> Add TAI Extension in the following path of server directory server\/usr\/extensions<br \/>\nTAI Extension Link : Download the extension.zip from <a href=\"https:\/\/git.ng.bluemix.net\/chethankumar.sn\/parkstore-bluemix-server\/overview\" target=\"_blank\">here<\/a>\n<\/li>\n<li> Add TAI Security constraint in web.xml file for both the projects.\n<pre class=\"brush: xml; title: ; notranslate\">&amp;lt;security-constraint&amp;gt;\n   \t&amp;lt;web-resource-collection&amp;gt;\n      \t   &amp;lt;web-resource-name&amp;gt;LocalstoreApplication&amp;lt;\/web-resource-name&amp;gt;\n      \t   &amp;lt;url-pattern&amp;gt;\/apps\/*&amp;lt;\/url-pattern&amp;gt;\n   \t&amp;lt;\/web-resource-collection&amp;gt;\n      \t&amp;lt;auth-constraint&amp;gt;\n           &amp;lt;role-name&amp;gt;TAIUserRole&amp;lt;\/role-name&amp;gt;\n      \t&amp;lt;\/auth-constraint&amp;gt;\n&amp;lt;\/security-constraint&amp;gt;\n&amp;lt;security-role id=&amp;quot;SecurityRole_TAIUserRole&amp;quot; &amp;gt;\n       &amp;lt;role-name&amp;gt;TAIUserRole&amp;lt;\/role-name&amp;gt;\n&amp;lt;\/security-role&amp;gt;<\/pre>\n<\/li>\n<li> Add OAuthTai feature in server.xml\n<pre class=\"brush: plain; title: ; notranslate\">&amp;lt;feature&amp;gt;usr:OAuthTai-1.0&amp;lt;\/feature&amp;gt;<\/pre>\n<\/li>\n<li> Protect the Url&amp;#8217;s using TAI by adding following code in server.xml\n<pre class=\"brush: xml; title: ; notranslate\">  &amp;lt;usr_OAuthTAI id=&amp;quot;myOAuthTAI&amp;quot; realmName=&amp;quot;imfRealm&amp;quot;&amp;gt;\n\t\t&amp;lt;securityConstraint httpMethods=&amp;quot;GET, POST&amp;quot; securedURLs=&amp;quot;\/LocalstoreAdapter\/*&amp;quot;\/&amp;gt;\n\t\t&amp;lt;securityConstraint httpMethods=&amp;quot;GET, POST&amp;quot; securedURLs=&amp;quot;\/custom-oauth-java\/*&amp;quot;\/&amp;gt;\n\t&amp;lt;\/usr_OAuthTAI&amp;gt; \n\n    &amp;lt;webApplication id=&amp;quot;custom-oauth-java&amp;quot; location=&amp;quot;custom-oauth-java.war&amp;quot; name=&amp;quot;custom-oauth-java&amp;quot;&amp;gt;\n     &amp;lt;application-bnd&amp;gt;\n\t\t&amp;lt;security-role name=&amp;quot;TAIUserRole&amp;quot;&amp;gt;\n\t\t\t&amp;lt;special-subject type=&amp;quot;ALL_AUTHENTICATED_USERS&amp;quot;\/&amp;gt;\n\t\t&amp;lt;\/security-role&amp;gt;\n\t&amp;lt;\/application-bnd&amp;gt; \n\t&amp;lt;\/webApplication&amp;gt;   \n\t  &amp;lt;webApplication id=&amp;quot;LocalstoreAdapter&amp;quot; location=&amp;quot;LocalstoreAdapter.war&amp;quot; name=&amp;quot;LocalstoreAdapter&amp;quot;&amp;gt;\n        &amp;lt;application-bnd&amp;gt;\n\t\t&amp;lt;security-role name=&amp;quot;TAIUserRole&amp;quot;&amp;gt;\n\t\t\t&amp;lt;special-subject type=&amp;quot;ALL_AUTHENTICATED_USERS&amp;quot;\/&amp;gt;\n\t\t&amp;lt;\/security-role&amp;gt;\n\t&amp;lt;\/application-bnd&amp;gt; \n\t&amp;lt;\/webApplication&amp;gt;<\/pre>\n<\/li>\n<li> Specify the IMF Auth Url inside Server.env file in liberty.\n<pre class=\"brush: xml; title: ; notranslate\">imfServiceUrl=https:\/\/imf-authserver.ng.bluemix.net\/imf-authserver<\/pre>\n<\/li>\n<li> Create a server package which contains above two applications using following command.\n<pre class=\"brush: plain; title: ; notranslate\">.\/server package ${server_name} --include=usr<\/pre>\n<\/li>\n<li> Push the newly created server package to bluemix using following command.\n<pre class=\"brush: plain; title: ; notranslate\">cf push ${app_name} -p ${path_to_server_package_zip}<\/pre>\n<\/li>\n<\/ul>\n<h3>Advance Mobile Access service<\/h3>\n<ul>\n<li> Bind the pushed application to Advance Mobile Access Service.\n<p><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-17-at-3.28.04-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-17-at-3.28.04-pm-1024x346.png\" alt=\"Advance Mobile Access\" width=\"980\" height=\"331\" class=\"alignnone size-large wp-image-14882\" \/><\/a>\n<\/li>\n<li> Register your client application in AMA dashboard. For more info refer documentation : <a href=\"https:\/\/www.ng.bluemix.net\/docs\/services\/mobileaccess\/index.html\" target=\"_blank\">click here<\/a>\n<p><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-17-at-3.42.32-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-17-at-3.42.32-pm.png\" alt=\"AMA Client Registration\" width=\"935\" height=\"452\" class=\"alignnone size-full wp-image-14883\" \/><\/a>\n<\/li>\n<li> AMA provides Facebook, Google, or a custom identity provider to authenticate access to protected resources. Add Custom identity provider feature as it can be migrated to MFPF and specify the corresponding jax-rs custom authentication application url and realm name.<br \/>\n<a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-17-at-4.03.21-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-17-at-4.03.21-pm.png\" alt=\"Custom Auth AMA\" width=\"955\" height=\"375\" class=\"alignnone size-full wp-image-14890\" \/><\/a>\n<\/li>\n<li> Add the following code inside didFinishLaunchingWithOptions function in AppDelegate of client application which will register the realm and initialize connection with Bluemix Application.\n<pre class=\"brush: plain; title: ; notranslate\"> IMFClient.sharedInstance().registerAuthenticationDelegate(customAuthDelegate, forRealm: &amp;quot;customAuthRealm_3&amp;quot;)\nIMFClient.sharedInstance().initializeWithBackendRoute(&amp;quot;https:\/\/parkstore.mybluemix.net&amp;quot;, backendGUID: &amp;quot;5e3ad88d-dd48-469d-b46f-2c4ad66b5345&amp;quot;)<\/pre>\n<\/li>\n<li> The following is the sample code to invoke the Rest url&amp;#8217;s in client application.\n<pre class=\"brush: plain; title: ; notranslate\">var request: IMFResourceRequest = IMFResourceRequest(path: &amp;quot;https:\/\/parkstore.mybluemix.net\/LocalstoreAdapter\/apps\/5e3ad88d-dd48-469d-b46f-2c4ad66b5345\/localstore\/getAllItems&amp;quot;, method: &amp;quot;GET&amp;quot;)\n        request.sendWithCompletionHandler { (wlResponse:IMFResponse!, err:NSError!) -&amp;gt; Void in<\/pre>\n<\/li>\n<\/ul>\n<h3>Push Service for iOS 8<\/h3>\n<ul>\n<li> Bind the application with Push Service for iOS 8<br \/>\n<a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-17-at-4.07.01-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-17-at-4.07.01-pm-1024x367.png\" alt=\"Push AMA\" width=\"980\" height=\"351\" class=\"alignnone size-large wp-image-14891\" \/><\/a>\n<\/li>\n<li> Configure Apple Push Notification service (APNs) which requires Apple Developer Account and Generate pl2 certificates. Documentation link : <a href=\"https:\/\/www.ng.bluemix.net\/docs\/services\/mobilepush\/index.html#certificates\" target=\"_blank\">click here<\/a>\n<\/li>\n<li> Upload the generated pl2 certificate in Push service dashboard\n<p><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.47.14-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.47.14-pm-1024x377.png\" alt=\"Push Service\" width=\"980\" height=\"361\" class=\"alignnone size-large wp-image-14816\" \/><\/a>\n<\/li>\n<li>Add the following code inside didFinishLaunchingWithOptions function in AppDelegate of client application which will register notifications in client app.\n<pre class=\"brush: plain; title: ; notranslate\">  let notificationTypes: UIUserNotificationType = UIUserNotificationType.Badge | UIUserNotificationType.Alert | UIUserNotificationType.Sound\n        let notificationSettings: UIUserNotificationSettings = UIUserNotificationSettings(forTypes: notificationTypes, categories: nil)\n        \n        application.registerUserNotificationSettings(notificationSettings)\n        application.registerForRemoteNotifications()<\/pre>\n<\/li>\n<li>Add the following code inside didRegisterForRemoteNotificationsWithDeviceToken  function in AppDelegate of client application which will register pushclient and subscribe to tag in client app.\n<pre class=\"brush: plain; title: ; notranslate\">IMFPushClient.sharedInstance().registerDeviceToken(deviceToken, completionHandler: { (response, error) -&amp;gt; Void in\n            if error != nil {\n                println(&amp;quot;Error during device registration \\(error.description)&amp;quot;)\n            }\n            else {\n                println(&amp;quot;Response during device registration json: \\(response.responseJson.description)&amp;quot;)\n                var tags = [&amp;quot;parkstore&amp;quot;]\n                IMFPushClient.sharedInstance().subscribeToTags(tags, completionHandler: { (response:IMFResponse!, err:NSError!) -&amp;gt; Void in\n                    if err != nil {\n                        println(&amp;quot;There was an error while subscribing to tag&amp;quot;)\n                    }else{\n                        println(&amp;quot;Successfully subscribe to tag parkstore&amp;quot;)\n                    }\n                })\n            }<\/pre>\n<\/li>\n<li>Add the following function inside Appdelegate which triggers when push notification arrived in client app.\n<pre class=\"brush: plain; title: ; notranslate\">func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {\n        println(&amp;quot;Got remote Notification. Data : \\(userInfo.description)&amp;quot;)\n        let info = userInfo as NSDictionary\n        let data = info.objectForKey(&amp;quot;aps&amp;quot;)?.objectForKey(&amp;quot;alert&amp;quot;) as! NSDictionary\n        let userData = data.objectForKey(&amp;quot;body&amp;quot;) as! String\n        let alertView = UIAlertView(title: &amp;quot;WishList!&amp;quot;, message: &amp;quot;\\(userData)&amp;quot;, delegate: nil, cancelButtonTitle: &amp;quot;OK&amp;quot;)\n        alertView.show()\n       }\n}<\/pre>\n<\/li>\n<\/ul>\n<h2 id=\"migrateblu\">Existing Bluemix Client Application<\/h2>\n<p>Add the following Code snippets to the existing Bluemix Client Application and name the application with same name which you have registered in Advance Mobile Access Dashboard.<\/p>\n<ul>\n<li> Add the following code inside didFinishLaunchingWithOptions function in AppDelegate of client application which will register the realm and initialize connection with Bluemix Application.\n<pre class=\"brush: plain; title: ; notranslate\"> IMFClient.sharedInstance().registerAuthenticationDelegate(customAuthDelegate, forRealm: &amp;quot;customAuthRealm_3&amp;quot;)\nIMFClient.sharedInstance().initializeWithBackendRoute(&amp;quot;https:\/\/parkstore.mybluemix.net&amp;quot;, backendGUID: &amp;quot;5e3ad88d-dd48-469d-b46f-2c4ad66b5345&amp;quot;)<\/pre>\n<\/li>\n<li> The following is the sample code to invoke the Rest url&amp;#8217;s in client application.\n<pre class=\"brush: plain; title: ; notranslate\">var request: IMFResourceRequest = IMFResourceRequest(path: &amp;quot;https:\/\/parkstore.mybluemix.net\/LocalstoreAdapter\/apps\/5e3ad88d-dd48-469d-b46f-2c4ad66b5345\/localstore\/getAllItems&amp;quot;, method: &amp;quot;GET&amp;quot;)\n        request.sendWithCompletionHandler { (wlResponse:IMFResponse!, err:NSError!) -&amp;gt; Void in<\/pre>\n<\/li>\n<li>Add the following code inside didFinishLaunchingWithOptions function in AppDelegate of client application which will register notifications in client app.\n<pre class=\"brush: plain; title: ; notranslate\">  let notificationTypes: UIUserNotificationType = UIUserNotificationType.Badge | UIUserNotificationType.Alert | UIUserNotificationType.Sound\n        let notificationSettings: UIUserNotificationSettings = UIUserNotificationSettings(forTypes: notificationTypes, categories: nil)\n        \n        application.registerUserNotificationSettings(notificationSettings)\n        application.registerForRemoteNotifications()<\/pre>\n<\/li>\n<li>Add the following code inside didRegisterForRemoteNotificationsWithDeviceToken  function in AppDelegate of client application which will register pushclient and subscribe to tag in client app.\n<pre class=\"brush: plain; title: ; notranslate\">IMFPushClient.sharedInstance().registerDeviceToken(deviceToken, completionHandler: { (response, error) -&amp;gt; Void in\n            if error != nil {\n                println(&amp;quot;Error during device registration \\(error.description)&amp;quot;)\n            }\n            else {\n                println(&amp;quot;Response during device registration json: \\(response.responseJson.description)&amp;quot;)\n                var tags = [&amp;quot;parkstore&amp;quot;]\n                IMFPushClient.sharedInstance().subscribeToTags(tags, completionHandler: { (response:IMFResponse!, err:NSError!) -&amp;gt; Void in\n                    if err != nil {\n                        println(&amp;quot;There was an error while subscribing to tag&amp;quot;)\n                    }else{\n                        println(&amp;quot;Successfully subscribe to tag parkstore&amp;quot;)\n                    }\n                })\n            }<\/pre>\n<\/li>\n<li>Add the following function inside Appdelegate which triggers when push notification arrived in client app.\n<pre class=\"brush: plain; title: ; notranslate\">func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {\n        println(&amp;quot;Got remote Notification. Data : \\(userInfo.description)&amp;quot;)\n        let info = userInfo as NSDictionary\n        let data = info.objectForKey(&amp;quot;aps&amp;quot;)?.objectForKey(&amp;quot;alert&amp;quot;) as! NSDictionary\n        let userData = data.objectForKey(&amp;quot;body&amp;quot;) as! String\n        let alertView = UIAlertView(title: &amp;quot;WishList!&amp;quot;, message: &amp;quot;\\(userData)&amp;quot;, delegate: nil, cancelButtonTitle: &amp;quot;OK&amp;quot;)\n        alertView.show()\n       }\n}<\/pre>\n<\/li>\n<li>The following are the screenshots of client application.<br \/>\n<a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_0020.jpg\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_0020-169x300.jpg\" alt=\"IMG_0020\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-14917\" \/><\/a><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_00211.jpg\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_00211-169x300.jpg\" alt=\"IMG_0021\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-14918\" \/><\/a><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_0025.jpg\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_0025-169x300.jpg\" alt=\"IMG_0025\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-14920\" \/><\/a><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_0024.jpg\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_0024-169x300.jpg\" alt=\"IMG_0024\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-14919\" \/><\/a><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_0026.jpg\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/IMG_0026-169x300.jpg\" alt=\"IMG_0026\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-14921\" \/><\/a>\n<\/li>\n<\/ul>\n<h2>Migration to On-Prem<\/h2>\n<h3 id=\"configureclient\">Migration of Client Application<\/h3>\n<p>Migration of Client Application includes following two steps<\/p>\n<li>Configuring Cocoapods<\/li>\n<li>Client App Migration<\/li>\n<h3 id=\"cocoapods\">Configuring Cocoapods<\/h3>\n<p>If CocoaPods has not been installed on a specific computer:<\/p>\n<ul>\n<li>Follow the &amp;#8220;Getting Started&amp;#8221; guide for CocoaPods installation: http:\/\/guides.cocoapods.org\/using\/getting-started.html<\/li>\n<li>Open &amp;#8220;Terminal&amp;#8221; at the installation location and run the &amp;#8220;pod init&amp;#8221; command<\/li>\n<\/ul>\n<p>The following steps assume that the client application is working with CocoPods. If not, follow this &amp;#8220;Using CocoaPods&amp;#8221; documentation : <a href=\"http:\/\/guides.cocoapods.org\/using\/using-cocoapods.html\" target=\"_blank\">click here<\/a><\/p>\n<p>In both cases, the instructions below explain how to edit the &amp;#8220;Podfile&amp;#8221; file.<\/p>\n<ol>\n<li>Open the &amp;#8220;Podfile&amp;#8221; file located in the root of your XCode project in a favourite text editor.<\/li>\n<li>Comment out or remove the existing content.<\/li>\n<li>Add the following lines:\n<pre class=\"brush: plain; title: ; notranslate\">source 'https:\/\/github.rtp.raleigh.ibm.com\/imflocalsdks\/imf-client-sdk-specs.git'\npod 'IMFCompatibility'<\/pre>\n<\/li>\n<li>Open &amp;#8220;Terminal&amp;#8221; at the location of &amp;#8220;Podfile&amp;#8221;.<\/li>\n<li>Verify that the XCode project is closed.<\/li>\n<li>Run the &amp;#8220;pod install&amp;#8221; command.<\/li>\n<\/ol>\n<p>Open the [MyProject].xcworkspace file in XCode. This file is located side by side with [MyProject].xcodeproj.<br \/>\nAn usual CocoaPods-based project is managed as a workspace containing the application (the executable) and the library (all project dependencies brought by the CocoaPods manager).<\/p>\n<p>In Xcode&amp;#8217;s Build Settings, search for &amp;#8220;Other Linker Flags&amp;#8221; and insert ${inherited} (if -ObjC is defined in this field, you can just delete it, since it is configured in the CocoaPod project).<\/p>\n<h3>Client App Migration<\/h3>\n<ol>\n<li>Search for bluemix dependency imports like\n<pre class=\"brush: plain; title: ; notranslate\">#import &amp;lt;IMFCore\/IMFCore.h&amp;gt;\n#import &amp;lt;IMFPush\/IMFPush.h&amp;gt;<\/pre>\n<p>Replace the above imports with <\/p>\n<pre class=\"brush: plain; title: ; notranslate\">#import &amp;lt;IMFCompatibility\/IMFCompatibility.h&amp;gt;<\/pre>\n<\/li>\n<li>Look for a call to the &amp;#8220;initializeWithBackendRoute&amp;#8221; method and replace the route URL with your on-premise server URL. For example:\n<pre class=\"brush: plain; title: ; notranslate\">IMFClient.sharedInstance().initializeWithBackendRoute(&amp;quot;https:\/\/parkstore.mybluemix.net&amp;quot;, backendGUID: &amp;quot;5e3ad88d-dd48-469d-b46f-2c4ad66b5345&amp;quot;<\/pre>\n<p>should be replaced with your on-premise MFP server URL<\/p>\n<pre class=\"brush: plain; title: ; notranslate\">IMFClient.sharedInstance().initializeWithBackendRoute(&amp;quot;http:\/\/localhost:10080\/ParkStoreMFP&amp;quot;, backendGUID: &amp;quot;5e3ad88d-dd48-469d-b46f-2c4ad66b5345&amp;quot;<\/pre>\n<p>Note, that backendGUID parameter is ignored and can be empty. Look for all instantiations of IMFResourceRequest class and update it<\/li>\n<li>Look for all instantiations of IMFResourceRequest class and update the request URL with absolute or relative path to the resource. For example:\n<pre class=\"brush: plain; title: ; notranslate\">var request: IMFResourceRequest = IMFResourceRequest(path: &amp;quot;https:\/\/parkstore.mybluemix.net\/LocalstoreAdapter\/apps\/5e3ad88d-dd48-469d-b46f-2c4ad66b5345\/localstore\/getAllItems&amp;quot;, method: &amp;quot;GET&amp;quot;)<\/pre>\n<p>should be replaced with<\/p>\n<pre class=\"brush: plain; title: ; notranslate\">var request: IMFResourceRequest = IMFResourceRequest(path: &amp;quot;http:\/\/localhost:10080\/ParkStoreMFP\/adapters\/LocalstoreAdapter\/localstore\/getAllItems&amp;quot;, method: &amp;quot;GET&amp;quot;)<\/pre>\n<\/li>\n<li>Add the following code inside didRegisterForRemoteNotificationsWithDeviceToken function in Appdelegate of Client application.\n<pre class=\"brush: plain; title: ; notranslate\"> WLPush.sharedInstance().tokenFromClient = deviceToken.description<\/pre>\n<\/li>\n<li>All on-premise applications require the &amp;#8220;worklight.plist&amp;#8221; file to be present in the application resources. In the <code>IBMMobileFirstPlatformFoundationNativeSDK<\/code> pod we supply a file named <strong>sample.worklight.plist<\/strong>.\n<ul>\n<li>Locate the &amp;#8220;sample.worklight.plist&amp;#8221; file in the ‘IBMMobileFirstPlatformFoundationNativeSDK’ pod.<\/li>\n<li>Copy this file to the parent (application) project and rename it to &amp;#8220;worklight.plist&amp;#8221;.<\/li>\n<li>Edit the &amp;#8220;worklight.plist&amp;#8221; file by setting the &amp;#8220;application id&amp;#8221; key to the name of your application deployed to the on-premise MFPF server<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h3 id=\"migratemfp\">Migration of JAX-RS Application to JAVA Adapter<\/h3>\n<ol>\n<li>To migrate JAX-RS application to on-prem (MobileFirst Foundation) server we need to do the following steps for server:\n<p>    Create MobileFirst Project &amp;#8211;&amp;gt; Create native API app for iOS<br \/>\n        ​​<br \/>\n<a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.50.04-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.50.04-pm.png\" alt=\"Screen Shot 2015-07-12 at 6.50.04 pm\" width=\"595\" height=\"596\" class=\"alignnone size-full wp-image-14817\" \/><\/a><\/p>\n<p><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.51.13-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.51.13-pm.png\" alt=\"Screen Shot 2015-07-12 at 6.51.13 pm\" width=\"598\" height=\"590\" class=\"alignnone size-full wp-image-14818\" \/><\/a><\/p>\n<p><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.52.28-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.52.28-pm.png\" alt=\"Screen Shot 2015-07-12 at 6.52.28 pm\" width=\"717\" height=\"424\" class=\"alignnone size-full wp-image-14819\" \/><\/a><\/li>\n<li>Add two adapters for Custom Authentication and Localstore and migrate the JAX-RS code as shown in the following example.<\/li>\n<\/ol>\n<p>Copy the JAX-RS BlueMix code and paste it in the newly created Localstore Java adapter JAX-RS file.<\/p>\n<p>Add and remove the following changes in your adapter code.<\/p>\n<ul>\n<li> remove <code>\/{tenantId}\/<\/code><\/li>\n<li> remove the <code>@PathParam -&amp;gt; PathParam(\"tenantId\") String deviceId<\/code> and <code>@PathParam(\"realmName\") String realmName<\/code><\/li>\n<li> Add scope to the all http api resource <code>@OAuthSecurity (scope=\"customAuthRealm_3\")<\/code><\/li>\n<\/ul>\n<p>The code looks like the following<\/p>\n<pre class=\"brush: plain; title: ; notranslate\">\n\t@GET\n\t@OAuthSecurity (scope=&amp;quot;customAuthRealm_3&amp;quot;)\n\t@Path(&amp;quot;\/getAllItems&amp;quot;)\n\tpublic String getAllItems() throws MissingConfigurationOptionException{\n\t\tinit();\n\t\tJsonArray jsonArray = new JsonArray();\n\t\tfor(Object key : props.keySet()){\n\t\t\tjsonArray.add(parser.parse(props.getProperty((String) key)).getAsJsonObject());\n\t\t}\n\t\treturn jsonArray.toString();\n\t}\n\n\t@PUT\n\t@OAuthSecurity (scope=&amp;quot;customAuthRealm_3&amp;quot;)\n\t@Path(&amp;quot;\/addItem&amp;quot;)\n\tpublic void addItem(String itemJson) \n\t\t\tthrows MissingConfigurationOptionException, URISyntaxException, IOException{\n\t\ttry{\n\t\t\tinit();\n\t\t\tint newKey = props.keySet().size()+1;\n\t\t\tprops.put(String.valueOf(newKey), itemJson);\n\t\t\tURL url = this.getClass().getClassLoader().getResource(&amp;quot;data.properties&amp;quot;); \n\t\t\tFile file = new File(url.toURI().getPath());\n\t\t\tFileOutputStream foStream = new FileOutputStream(file);\n\t\t\tprops.store(foStream, &amp;quot;saving new item&amp;quot;);\n\t\t\tfoStream.close();\n\n\t\t}catch(IOException ioe){\n\t\t\tioe.printStackTrace();\n\t\t}\n\n\t}\n\n\t@POST\n\t@OAuthSecurity (scope=&amp;quot;customAuthRealm_3&amp;quot;)\n\t@Path(&amp;quot;\/addAllItems&amp;quot;)\n\tpublic String addAllItems(String itemsJson) \n\t\t\tthrows MissingConfigurationOptionException, URISyntaxException, IOException{\n\t\ttry{\n\t\t\tinit();\n\t\t\tclearAllData();\n\t\t\tJsonArray jsonArr = parser.parse(itemsJson).getAsJsonArray();\n\t\t\tfor(int i=0;i&amp;amp;lt;jsonArr.size();i++){\n\t\t\t\tprops.put(String.valueOf(i+1), jsonArr.get(i).toString());\n\t\t\t}\n\t\t\tURL url = this.getClass().getClassLoader().getResource(&amp;amp;quot;data.properties&amp;amp;quot;); \n\t\t\tFile file = new File(url.toURI().getPath());\n\t\t\tFileOutputStream foStream = new FileOutputStream(file);\n\t\t\tprops.store(foStream, &amp;amp;quot;saving new item&amp;amp;quot;);\n\t\t\tfoStream.close();\n\t\t\treturn &amp;amp;quot;true&amp;amp;quot;;\n\t\t}catch(IOException ioe){\n\t\t\tioe.printStackTrace();\n\t\t}\n\t\treturn &amp;amp;quot;false&amp;amp;quot;;\n\t}\n\n\t@DELETE\n\t@OAuthSecurity(enabled=false)\n\t@Path(&amp;quot;\/clearAll&amp;quot;)\n\tpublic String clearAllData() \n\t\t\tthrows MissingConfigurationOptionException, URISyntaxException, IOException{\n\t\t\tinit();\n\t\t\tprops.clear();\n\t\t\tSystem.out.println(&amp;quot;Size : &amp;quot;+props.size());\n\t\t\tURL url = this.getClass().getClassLoader().getResource(&amp;quot;data.properties&amp;quot;); \n\t\t\tFile file = new File(url.toURI().getPath());\n\t\t\tFileOutputStream foStream = new FileOutputStream(file);\n\t\t\tprops.store(foStream, &amp;quot;clearing all data&amp;quot;);\n\t\t\tfoStream.close();\n\t\t\treturn &amp;quot;cleared&amp;quot;;\n\t}\n<\/pre>\n<h3 id=\"configoauth\">Configuring Custom-OAuth<\/h3>\n<ul>\n<li>Add realm with same name you had on BlueMix and login module to the authenticationConfig.xml.\n<pre class=\"brush: xml; title: ; notranslate\">&amp;lt;realm name=&amp;quot;customAuthRealm_3&amp;quot; loginModule=&amp;quot;customAuthLoginModule_3&amp;quot;&amp;gt;\n&amp;lt;className&amp;gt;com.worklight.core.auth.ext.CustomIdentityAuthenticator&amp;lt;\/className&amp;gt;\t\n&amp;lt;parameter name=&amp;quot;providerUrl&amp;quot; value=&amp;quot;http:\/\/localhost:10080\/ParkStoreMFP\/adapters\/Customauth&amp;quot;\/&amp;gt;\n&amp;lt;\/realm&amp;gt;\n\n&amp;lt;loginModule name=&amp;quot;customAuthLoginModule_3&amp;quot; expirationInSeconds=&amp;quot;3600&amp;quot;&amp;gt;\n&amp;lt;className&amp;gt;com.worklight.core.auth.ext.CustomIdentityLoginModule&amp;lt;\/className&amp;gt;\n&amp;lt;\/loginModule&amp;gt;<\/pre>\n<\/li>\n<li>Add Custom-oauth Realm in userIdentityRealms in Application Descriptor file of iOS Native API\n<pre class=\"brush: xml; title: ; notranslate\">&amp;lt;userIdentityRealms&amp;gt;customAuthRealm_3&amp;lt;\/userIdentityRealms&amp;gt;<\/pre>\n<\/li>\n<\/ul>\n<h3 id=\"configurepush\">Configuring Push Capability<\/h3>\n<ul>\n<li> Add apns p12 certificate which is generated from Apple Developer Account under iOS Native API Folder\n<p><a href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.58.03-pm.png\"><img src=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/wp-content\/uploads\/sites\/32\/2015\/07\/Screen-Shot-2015-07-12-at-6.58.03-pm.png\" alt=\"Screen Shot 2015-07-12 at 6.58.03 pm\" width=\"286\" height=\"171\" class=\"alignnone size-full wp-image-14820\" \/><\/a>\n<\/li>\n<li> Add Push configuration in Application Descriptor file of iOS Native API and include the password of added apns certificate.\n<pre class=\"brush: xml; title: ; notranslate\">&amp;lt;pushSender password=&amp;quot;password&amp;quot;\/&amp;gt;\n&amp;lt;tags&amp;gt;\n  &amp;lt;tag&amp;gt;\n    &amp;lt;name&amp;gt;parkstore&amp;lt;\/name&amp;gt;\n  &amp;lt;\/tag&amp;gt;\n&amp;lt;\/tags&amp;gt;<\/pre>\n<\/li>\n<li> Create HTTP Push Adapter with following function code which will send the user push notification to the devices which is subscribed to tag &amp;#8220;parkstore&amp;#8221;.\n<pre class=\"brush: xml; title: ; notranslate\">function sendTagNotification(notificationText) {\n    var notificationOptions = {};\n    notificationOptions.message = {};\n    notificationOptions.target = {};\n\n    notificationOptions.message.alert = notificationText;\n    notificationOptions.target.tagNames = [&amp;quot;parkstore&amp;quot;];\n\n    WL.Server.sendMessage(&amp;quot;ParkStoreMFP&amp;quot;, notificationOptions);\n\n    return {\n        result : &amp;quot;Notification sent to users subscribed to the tag parkstore.&amp;quot;\n    };\n}<\/pre>\n<\/li>\n<\/ul>\n<p>By performing above steps one can easily run iOS app built for Bluemix on MobileFirst Platform and following are the links to samples.<\/p>\n<h3 id=\"sample\">Sample and Source Code<\/h3>\n<p>Bluemix Server : <a href=\"https:\/\/git.ng.bluemix.net\/chethankumar.sn\/parkstore-bluemix-server\">Parkstore bluemix server<\/a><br \/>\nBluemix Client : <a href=\"https:\/\/git.ng.bluemix.net\/chethankumar.sn\/parkstore-bluemix\">Parkstore bluemix<\/a><br \/>\nMFP Server     : <a href=\"https:\/\/git.ng.bluemix.net\/chethankumar.sn\/parkstore-mfp-server\">Parkstore mfp server<\/a><br \/>\nMFP Client     : <a href=\"https:\/\/git.ng.bluemix.net\/chethankumar.sn\/parkstore-mfp\">Parkstore mfp<\/a><\/p>\n<p>The post <a rel=\"nofollow\" href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/08\/19\/try-on-bluemix-and-buy-mfp\/\">Try on Bluemix and migrate to on-prem MobileFirst Platform<\/a> appeared first on <a rel=\"nofollow\" href=\"https:\/\/developer.ibm.com\/mobilefirstplatform\">IBM MobileFirst Platform<\/a>.<\/p>",
               "guid": {
                  "content": "https:\/\/developer.ibm.com\/mobilefirstplatform\/?p=14769",
                  "isPermaLink": "false"
               },
               "link": "https:\/\/developer.ibm.com\/mobilefirstplatform\/2015\/08\/19\/try-on-bluemix-and-buy-mfp\/",
               "pubDate": "Wed, 19 Aug 2015 10:36:51 +0000",
               "title": "Try on Bluemix and migrate to on-prem MobileFirst Platform"
            }
         ],
         "language": "en-US",
         "lastBuildDate": "Tue, 08 Sep 2015 09:22:53 +0000",
         "link": [
            {
               "href": "https:\/\/developer.ibm.com\/mobilefirstplatform\/feed\/",
               "rel": "self",
               "type": "application\/rss+xml"
            },
            "https:\/\/developer.ibm.com\/mobilefirstplatform"
         ],
         "title": "IBM MobileFirst Platform",
         "updateFrequency": "1",
         "updatePeriod": "hourly"
      },
      "version": "2.0"
   }
}

Sample

The attached sample includes an adapter called RSSAdapter and a hybrid application called RSSReader to test the adapter inside an application.

Inclusive terminology note: The Mobile First Platform team is making changes to support the IBM® initiative to replace racially biased and other discriminatory language in our code and content with more inclusive language. While IBM values the use of inclusive language, terms that are outside of IBM's direct influence are sometimes required for the sake of maintaining user understanding. As other industry leaders join IBM in embracing the use of inclusive language, IBM will continue to update the documentation to reflect those changes.
Last modified on December 12, 2017