We have a working spring android frontend and ejb backend with REST/JSON POST&PUT
for porting to iOS we'r looking for a framework which can work with the old backend can u guys suggest some frameworks which will work ?
Assuming your service is fairly standard REST, then http://restkit.org/ is the way to go.
Related
I want to create an app exposing a web server with a REST API in Kotlin Native, but I can't find any recent project or lib.
There's kwang but it doesn't seems to be maintained anymore and it depends on another C library.
Ktor 1.4 (WIP) will support Kotlin/Native as a Server .
https://github.com/ktorio/ktor/issues/571#issuecomment-562118651
Kotlin/Native is Beta for now , so There is a long way to go
Yes! Alpas - it's a newer framework and is inspired by the Laravel framework for PHP. Out-of-the-box, it will get your rolling with databases and authentication.
I guess if someone needs to migrate from a legacy breeze.js application to a newer framework except Angular like ReactJs or VueJs, then Mobx can be a great help to brings the observable objects to the project.
I was wondering is someone has gave it a go to provide some feedback and perhaps sharing some code.
Actually, you don't need MobX with Breeze because Breeze already provides this capability. See the following example: Creating a Breeze React App
I am little confused which one is best for build hybrid mobile application.
IONIC Framework, Onsen Framework, IBM Worklight, Sencha or other. I am familiar with javascript, css, and angular.js
There is no "better" framework. They all have their own strength and weakness.
The only things that matter for me when I want to start a new project with a new technology are:
Is it mature enough to be used in production?
Is it still in developpment?
Is it well documented?
Is the community active?
Is it hard to use?
I'm using Onsen UI And Ionic and for what I can tell, both are doing the job, are easy to learn once you know how to use Angular.
Ionic:
Big community and support
Lots of tool to make your developpment easier
Plugins and themes available
Growing project
Onsen UI
Can be used with multiple framework
Good Documentation
Easy Router implementation
Small community
I am exploring different options for creating my first mobile app. I am from a web development background using Rails and Postgres.
I am unsure of how something like the Ionic framework works. I've looked around on the web but I weren't able to find answers to my specific question. Is my understanding correct that I will be able to create a full Rails/Postgres backend with various API's and then talk to the backend from my Hybrid mobile app (Ionic framework)?
Can anybody point me to a tutorial that might have worked for them please?
We've just released a tutorial on how to integrate a Rails backend with Ionic, based on our experience building many real world production apps.
You can find it here:
http://www.dovetaildigital.io/blog/2015/8/21/rails-and-ionic-make-love-part-one
This is the first of a three part series in which we move from basic integration to full user authentication and integration testing. Hopefully this is of some help to you!
So if you have any epxerience in web design ionic is a very easy. You build a webpage just like you would for hosting on a server. All ionic does, along with angular js, is extend html's vocabulary using something called directives. I would use the intel xdk. It has brackets as a built in text editor, a built in phone emulator, and a build server for mobile apps all tied into one. You can also start with an ionic template. what you end up with is some html, javascript (mostly angular js), and some css. Then that code is built into a mobile app for whatever platform you choose through the cordova build process. You can grab the intel xdk here https://software.intel.com/en-us/html5/tools, ionic docs are here http://ionicframework.com/docs/, and an ionic tutorial here http://ionicframework.com/getting-started/. Best of luck to you!
Is it possible to use breezeJS with Ionic framework(mibile), As i am planing to develop mobile application using Ionic and am targeting using ionic but i would love if Ionic support the use of BreezeJS, If anyone have an idea, please share your experience.
Thanks.`
BreezeJs works very well with angular, there is an angular adapter that breeze provides with it.
Since ionic is built on Angular, ionic also will work well with breeze. I built a complex ionic app that makes very heavy use of breezeJs especially for caching data to work offline.