Questions tagged [ibm-mobilefirst]

IBM MobileFirst Platform Foundation (formerly IBM Worklight Foundation) helps organizations extend their business to mobile devices. It provides a mobile application platform to build, run and manage mobile applications.

IBM MobileFirst Platform Foundation -- Formerly known as IBM Worklight Foundation -- helps you extend your business to mobile devices. It is designed to provide an open, comprehensive platform to build, test, run and manage native, hybrid and mobile web apps. IBM MobileFirst Platform Foundation can help reduce both app development and maintenance costs, improve time-to-market and enhance mobile app governance and security.

Searching Stack Overflow using the old #worklight tag will also show a wealth of historical questions & answers.


IBM MobileFirst Platform Foundation is comprised of five components:

  • IBM MobileFirst Studio offers leading tools for native and hybrid development that help maximize code reuse and accelerate development.

  • IBM MobileFirst Server is mobile-optimized middleware that serves as a gateway between applications, back-end systems and cloud-based services.

  • IBM MobileFirst Device Runtime Components offer runtime client application program interfaces (API) designed to enhance security, governance and usability.

  • IBM MobileFirst Application Center enables you to set up an enterprise app store that manages the distribution of production-ready mobile apps.

  • IBM MobileFirst Console is an administrative GUI designed to provide real-time operational analytics for the server, adapters, applications and push services to help you manage, monitor and instrument mobile apps.


With IBM MobileFirst Platform you can:

  • Support multiple mobile operating environments and devices with the simplicity of a single, shared code base.

  • Utilize your preferred development tools with the command line interpreter for MobileFirst Platform developers.

  • Connect and synchronize with enterprise data, applications and cloud services, including IBM BlueMix mobile services.

  • Safeguard mobile security at the device, application, data and network layer.

  • Manage your mobile app portfolio from one central interface.

Source: IBM MobileFirst Platform

6070 questions
8
votes
2 answers

How to make HTTPS requests with serverside javascript using Worklight?

I'm toying around with IBM worklight, and am trying to create an adapter to feed some data in from the Google places API. I want to call this URL…
Jimmy
  • 16,123
  • 39
  • 133
  • 213
7
votes
7 answers

How to Fix No MBean found for Worklight project?

I have a problem when deploying my Worklight project on the server . It shows the following Error Message : FWLSE3041E: No MBean found for Worklight project 'MyProject'. Possibly the Worklight runtime web application for Worklight project…
EL Kamel
  • 824
  • 2
  • 12
  • 27
7
votes
1 answer

IBM Worklight - How do I enable WebView debugging in Android?

Since Chrome has an awesome feature for remote debugging, I am wondering how this could help in developing in Worklight. In the following docs they say to debug the contents of your WebView, you need to enable it programmatically from within your…
7
votes
1 answer

Output delayed from Cordova Plugin

I've written a Cordova plugin to download a file and save it in the data folder. Everything is working fine except for the return value. I would like to display a progress bar and need to get the current progress. Here's the relevant part from my…
René
  • 513
  • 3
  • 16
6
votes
1 answer

IBM MobileFirst certificate pinning best practices

We are developing an IBM MobileFirst 7.1 Hybrid mobile application, and planning to use the certificate pinning feature. We can find information on IBM website about the SSL certificate pinning on IBM MobileFirst website : Here is a post in the IBM…
WiPhone
  • 683
  • 6
  • 24
6
votes
3 answers

Unable to deploy HelloWorld application to MobileFirst Development Server

I am having some trouble building/running the HelloWorld application from the first hybrid app tutorial. When I try to run the default HelloWorld application on the MobileFirst Development Server, the server starts and seems to stop again (without…
6
votes
2 answers

java.lang.ClassNotFoundException: Class com.ibm.db2.jcc.DB2Driver not found in Worklight platform or project

I try to test an sql adapter that connects to db2 but I get the following result: java.lang.ClassNotFoundException: Class com.ibm.db2.jcc.DB2Driver not found in Worklight platform or project here is my code:
Mindan
  • 979
  • 6
  • 17
  • 37
6
votes
2 answers

IBM Worklight 6.0 - Socket Exception connection reset

I am working on a worklight project, in it I am consuming web services that are hosted on SharePoint server using a Worklight Adapter. Some times I am getting a Socket Exception and the adapter fails to call the web service.This happening…
user2749250
6
votes
1 answer

Unknown Chromium Error -6 when loading local images in Android Webview

I'm working on a Worklight project that downloads a zip file, unpacks it, and stores the files in the specific documents directory of the platform (in iOS that's NSDocumentDirectory, on Android I'm using getFilesDir()). The file consists of one HTML…
René
  • 513
  • 3
  • 16
5
votes
3 answers

CDI doesn't work in a simple adapter

I've added the CDI feature to the server.xml filecdi-1.2. My maven module contains the beans.xml inside the /src/main/resources/META-INF folder. This is the beans.xml content:
5
votes
0 answers

Mobilefirst 8.0 - App crashes on Android version 5 below on https call

App build on MobileFirst 8.0 is getting crash on Android version 5 below while calling https service using adapter. Same is working on version 5 and above. Below are the logs captured in device logs : OkHttp ConnectionPool at…
Amit
  • 827
  • 10
  • 17
5
votes
1 answer

Cordova Android application getting "invalid_client" from MobileFirst 8.0 server

My Cordova IOS application integrated with IBM MobileFirst v8 works fine. However I face a weird issue with Android. The scenario is, The user has to login into security check to access the application. The challenge handler is called and…
5
votes
3 answers

Installing mfpdev-cli via NPM causes error

When installing mfpdev-cli via npm I'm receiving the following error: $ npm install -g mfpdev-cli@latest npm ERR! addLocal Could not install /usr/local/lib/node_modules/mdo-adapter-actions npm ERR! addLocal Could not install…
John Gerken
  • 686
  • 6
  • 13
5
votes
1 answer

IBM MobileFirst Java Adapter (Hybrid Application) download huge file

I'm trying to pull a 20MB file from MFP server. So, I wrote the following code in my client application. var resourceRequest = new WLResourceRequest("/adapters/AdapterExample/users/getUpdate",WLResourceRequest.POST); …
5
votes
1 answer

Mobilefirst server returns error 403 after session timeout handling in a native ios application

I'm using Adapter-based authentication in native iOS applications to connect my native ios application (swift) to the Mobilefirst server (7.0). The mechanism of authentication is working fine but the problem comes when the session expires after 10…