How to build aws lex bot via .NET SDK - amazon-lex

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.

Related

Embed twilio Studio Workflow (ChatBot) on Website (.Net or Javascript)

Based on some examples I found on Twilio, I installed and setup the #twilio/flex-webchat-ui example on Git. It works fine and I can develop the workflow using Studio.
Then I was told by Twilio Support that running an unattended ChatBot using Flex was a violation of usage policy. So Flex needs to be removed from the workflow.
The flex-webchat-ui example is Javascript and uses the following:
<FlexWebChat.ContextProvider manager={manager}>
<FlexWebChat.RootContainer />
</FlexWebChat.ContextProvider>
Now I've eliminated Flex and created a new workflow in Studio.
I found the following article on embedding a chat app in a website, but this doesn't appear to support the Studio workflow I've created.
https://www.twilio.com/blog/2017/06/complete-chat-application-javascript.html
Does anyone know where the documentation/sample code is to embed a Studio Workflow (SMS ChatBot) into an ASP.NET MVC C# web app?

Java OData client using SAP Cloud SDK problems

I am having troubles with updating my OData Client.
I would refer to How to call bound functions / actions inside Java client using SAP Cloud SDK? where people from SAP helped me alot, thanks!
Issue is, I wanted to update dependency to last version of SAP Cloud SDK because of new functionality that supports bounded functions and actions.
Back then (4 months ago), I had written myself documentation how to generate and use OData Java client properly, using SAP Cloud SDK. Quite a number of people was succesful back then with installing.
Now, 4 months later, I cannot generate properly client. I have installed lombok and also set it as reference in Eclipse and am using latest Eclipse (2021-06).
I will put screenshots of my errors. It says like my properties are not generated properly and that 1 method is missing - getOdataType().
These problems just started to occur last 2 weeks or so.
Thank you in advance!

Is there a web framework for kotlin native

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.

What would be the recommended way to integrate Microsoft Team Foundation Server into an iOS application

I am looking to create an application that allows a user to update Microsoft Team Foundation Server work items when performing certain things in the app.
Has anyone done anything similar themselves and if so what is the best way to make the updates to the TFS work items from within the app?
There is a Java API which is linked below:
http://www.microsoft.com/en-us/download/details.aspx?id=22616
Other than that a few google searches resulted in the following discoveries:
http://msdn.microsoft.com/en-us/library/bb130146.aspx
The link below tells you how you can create new work items via a URL:
http://msdn.microsoft.com/en-us/library/bb822136%28v=VS.90%29.aspx
** As per jessehouwing's comment below *
This only works on 2008 and 2010 I suspect. There migth be a similar Url for 2012 and 2013, but the whole WebAccess feature was rebuilt using ASP.NET MVC instead of WebForms, so the wi.aspx no longer exists. I'm not aware of an alternative.
Visual Studio Online an Team Foundation Server 2013 are gaining more and more json based REST Api's and have recently been upgraded to support OAuth for authentication. Some of these API's are still in preview, but they're a great resource for a mobile platform client.
For older versions of Team Foundation Server and the On-premise version you can either install the OData service, or build a custom webservice that employs the TFS Client Object Model internally to create the work items.
Should you want to build your webservice on top of a non-microsoft-platform, then you can employ the Java SDK for Team Foundation Server. This will allow you to communicate directly to TFS from a Linux or Mac server.
TFS 2013.4 will be able to show more pages in full screen mode without any chrome around it.

Rails App Integration with HPQC (HP Quality Centre)

I wanted to integrate hp quality centre to a rails app which is developed and deployed on a linux system.
I found that it uses the OTA (Open Test Architecture API). However it been specified that it uses a OTAclient dll for doing the activities of the api.
I would like to know if there is any documentation of such an integration been done (hpqc+rails on a linux system) ?
Is it possible to attain this integration.. Any gems or plugins...?
Unfortunately the OTAclient.dll requires a number of Windows only dll's. We eventually created a web service on a Windows machine in C# to provide an access point for our Ruby services.
The newer version of HPQC (ALM 11) has a REST-like service that you can use but upgrading to ALM 11 may be a bit much for what you are trying to do.

Resources