ibm-mobilefirst

Splash Screen with loading in four environment(android,ios,blackberry and windows) using html coding or common plugin for hybrid apps [duplicate]

房东的猫 提交于 2019-12-02 23:39:11
问题 This question already has an answer here : Splash Screen with busy Indicator in worklight app (1 answer) Closed 5 years ago . I want a splash screen with a loading indicator or busy indicator or progress bar in all major environment(android,ios,blackberry and windows) in html,css and javascript or common plugin which can added in my web resource code and the output will be seen in all the environment. How can i implement this. Any useful resource or common plugin to do this. 回答1: Edit June

Preview not working on MobileFirst Platform Foundation Server 7.0

匆匆过客 提交于 2019-12-02 22:54:44
问题 On the MobileFirst Server Platform Foundation 7.0, the Preview is not working in the console. On the Eclipse development side, all is working well. The error message is the following: Here is the error in the log: [4/10/15 12:12:55:267 CEST] 00000027 org.apache.wink.server.internal.RequestProcessor I The following error occurred during the invocation of the handlers chain: WebApplicationException (404 - Not Found) with message 'null' while processing GET request sent to http://10.3.20.64:9080

MobileFirst 7.1 OSX Eclipse server url setting

微笑、不失礼 提交于 2019-12-02 22:29:27
问题 I am using Eclipse Juno with MFP 7.1 in a Mac. I put my server address in Configure Build and Deploy Target http://example.com:80 and then use Run As > Run on MobileFirst Development Server . In Windows, this updates my worklight.plist and wlclient.properties files with the new values for the server URL and port number, however in Mac the values remains MyMacBookPro.local as the server URL and the port number as 10080 . Migrated to Eclipse Mars but the problem remains the same: 回答1: This is

MobileFirst App Diagnostic

六月ゝ 毕业季﹏ 提交于 2019-12-02 21:52:37
问题 How can I disable the APP DIAGNOSTIC screenshot after the occurrence of an error ? It appears selecting it on an error POPUP in the app itself. This app is hybrid and based on MobileFirst 7.1. 回答1: There is no flag to remove the 'Details' button that appears in the pop-up that leads to this Diagnostics table. I believe you should be able to override the dialog all-together and provide your own by using the onConnectionFailure property in the initOptions.js file. You should have there the

MobileFirst 7.1 Progurd getting Error return code 1

一笑奈何 提交于 2019-12-02 21:42:50
问题 I'm using mobilefirst 7.1 environment in eclipse. I just create sample hybrid application and add android environment. then i take unsigned apk at the time i'm getting below error. kindly help me for this. Thank you :) Progurd-project.txt # To enable ProGuard in your project, edit project.properties # to define the proguard.config property as described in that file. # Add project specific ProGuard rules here. # By default, the flags in this file are appended to flags specified # in ${sdk.dir}

IBM Worklight 5.0.6 - How to add a splash screen to Android environment?

戏子无情 提交于 2019-12-02 21:36:44
问题 I am facing an issue while trying to add a splash screenin Android. Below is the code I used public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); super.setIntegerProperty("splashscreen", R.drawable.splash); super.bindBrowser(appView); super.loadUrl(getWebMainFilePath(), 5000); } I see the splash image, but then after few minutes I get a blank screen and the app crashes. 回答1: When using Worklight, you can show splash screen in onWLInitCompleted method and leave

Push Notification doesnt work in a liberty profile

感情迁移 提交于 2019-12-02 21:26:10
问题 Im trying to send a push to a android device from this configuration: MobileFirst 6.3.0.00-20150404-1503 in libery profile: WebSphere Application Server 8.5.5.4 (wlp-1.0.7.cl50420141121-1414) The user logs correctly to the realm and the suscription to the push was successful in the eclipse development and in our liberty customer edition, when i execute a push to a user in my development server does work, but in our customer edition server doesnt (even if he apears as suscribed). im getting a:

No runtime on my Worklight 6.2 Console after installing analytics

▼魔方 西西 提交于 2019-12-02 20:08:17
问题 I just installed Worklight 6.2 server, use the configuration tool to deploy a simple project and it works OK. Then I followed the instructions in knowledge center to install analytics. Afterwards, when I open WL console in the browser, I got "No runtime can be found." Analytics seems to work fine My war file is in Liberty apps folder. in my case C:\IBM\WebSphere\Liberty\usr\servers\simpleServer\apps I have tried the solution below, but didn't work. I removed the files in workarea and checked

What does the cookiePolicy adapter parameter do in Worklight 6.1+?

与世无争的帅哥 提交于 2019-12-02 19:47:50
问题 The Worklight 6.1 InfoCenter refers to a cookiePolicy parameter which can be set on an HTTP adapter. It mentions four possible values, but doesn't go into details about what they do. Is it safe to assume they all preserve cookies they are returned from the back-end HTTP service? How does that relate (if at all) to the JSESSIONID cookie that may be shared between the Worklight server and any back-end server? Do all calls from that adapter share the same cookie state, or does it depend on the

Worklight(6.1v) hybrid app - need to open other application from my app

廉价感情. 提交于 2019-12-02 19:44:04
问题 This is the case 1) check whether someXXX app is installed in the device 2) if installed open the app. 3) if not, open play store/App store app with someeXXX page. if there any examples or codebases or links provided would be helpful and appreciated. Thanks 回答1: You can also take a look at the following accepted answer: IBM Worklight - How to launch another app? Two options are provided within: Using URI schemes Using a Cordova plug-in in your Worklight application (demo project attached) 回答2