Is there a web framework for kotlin native - web-frameworks

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.

Related

How to build aws lex bot via .NET SDK

I am searching for a solution to build and publish the AWS Lex bot via .NET SDK or via any other API.
Any help will be appreciated.
I just recently developed a working Amazon Lex Chatbot using .NET SDK and one of the tools that helped a lot was the GitHub Repo that AWS maintains for C#. Do note that they use .NET core and not .NET framework.
Alternatively, if you want to use the REST API (which is what I did), you can go to the .NET documentation guide that Amazon also maintains. These REST API can be accessed via the Nuget package that you can get inside Visual Studio itself.

Where can I find the Firebase Realtime Database JAVA library for a wrap to B4X

For all my Android projects I use a popular RAD Tool called "B4X"
It converts easy readable sourcecode to JAVA and compiles it to Android or IOS etc.
In order to make use of existing Libraries (e.g. GitHub, ...) the JAVA files will be wrapped to B4X-libs so that the functionality can can be used with the RAD Tool.
So the question is "Where can I find the JAVA files of the Firebase Realtime Database" library?
The plain Java SDK for Firebase is considered a "server side" SDK. Go to the setup page for server SDKs and follow the instructions for Java. The current latest version 3.0.1 can be found here, but I recommend starting from the linked documentation.

ASP.NET Web API HttpClient on 3.5 or 2.0 application?

I like the HttpClient in ASP.NET Web API. Can I use it in 3.5 or 2.0. I mean in any .NET Framework application versions before 4.0. Actually, I have a ASP.NET Web API app in ASP.NET 4.0. I need to consume this app from a device built in 3.5 framework. I know I can use WebClient/WebRequest, But It will be great If I can use HttpClient stuffs.
According to this,
WebAPI requires .net 4. You can't use it on .net 3.5 (sp1 or not).
You also can't use the preview releases for production code as you
don't have a "go-live" license, so even if you could get it to work,
it wouldn't be legal. You need to use at least the ASP.NET WebAPI Beta
to get a go-live license.
And according to this,
The HttpClient library was initially introduced in the "WCF REST
Starter Kit" project, so you can download it from there. This project
isn't supported anymore (most of its functionality has either made it
into the framework or is now part of the Web API project), but the
HttpClient from there works quite well.
Ideally your HttpClient project should be completely separate from your service project. I would keep the service(s) project as it is in 2.0 or 3.5 and create a 4.0 project with HttpClient and make HTTP calls.
The only minor issue here is implicit model binding. Here you can use a Model dll or consume the 3.5 model classes in the 4.0 client project. But the JsonObject binding should also work seamlessly for json resonses.

How to integrate with BlackBerry Java SDK with BlackBerry WebWorks in one application

I want to develop some modules with BlackBerry Java SDK in my application, and develop other modules with BlackBerry WebWorks. That I could take the advantage of both Java SDK & WebWorks. I don't know how to integrate them in one application.
I would seriously consider choosing one or the other. All the major APIs are accessible via WebWorks, and if you need a Java component you can build an extension.
The other way around, I suppose you could use some kind of webview that uses local html/css/js assets alongside a Java app, but that's a mess. You're better off just going with WebWorks.
You can use WebWorks to create your UI and then, what ever Java code you have you would have to import the Extension (.jar file) to your WebWorks project.
https://bdsc.webapps.blackberry.com/html5/documentation/ww_developing/using_javascript_extensions_1866976_11.html

iOS alternative for spring android

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.

Resources