How to add Application Insights in Azure Bot Service - azure-application-insights

I created one Basic Bot in Azure Bot Service and also configured Continuous Integration to that bot, I want to add Application Insights to that Azure Bot Service, is it possible or not?
Thanks,
Sai Priya. C

Don't see why not.
Basically you right-click on the Project (not the Solution), and select Add Application Insights Telemetry from the pop-up menu, and continue with the wizard as you would with any application.
This seems like a good reference for detailed process.
(Original link is effectively 404; link redirected to archive.org)

Related

Individual User Account in Visual Studio 2017

Can any one please explain this change in "Change Authentication" dialog box. Previously it was easy creating a project with Individual user accounts, but now this is annoying, because I am forced to fill in the options. I couldn't find any help regarding it either, so StackOverflow is my last option. Please refer the image below to understand what I mean. If you find it too silly and unwilling to answer, then please point me to any resource that will help me understand this.
As far as I know, this setting is used to configure Cloud authentication with Azure Active Directory B2C in ASP.NET Core.
Azure Active Directory B2C (Azure AD B2C) is a cloud identity management solution for web and mobile apps. The service provides authentication for apps hosted in the cloud and on-premises.
If you want to configure the Cloud authentication with Azure Active Directory B2C in ASP.NET Core, you should firstly create the Azrue AD B2C and then register the app in Azure AD B2C.
The app inside the Azure AD B2C will contains Application ID and its domain name, then you could use that Application ID, domain name and set Sign_in or Sign_up policy to B2C_1_SiUpIn.
More details, you could refer to this article. Notice: This article is for VS2019 but almost same.

Simplest way to integrate ADFS with ASP.NET web application

I have a simple 2-page ASP.NET application that is hosted as a 'azure website'. I want to make this application secure by integrating with my company's ADFS. What is the simplest way to integrate this app with ADFS. I don't want to go through ACS if I don't have to. It looks like it is possible to make the asp.net app talk to adfs directly using WIF.
Can someone confirm if this will work and share any pointers to get this working?
You are spot-on about not considering ACS.
The simplest way is to just let the tooling in Visual Studio 2013 wire it up for you.
Create a new ASP.NET Web Application project and in the new project dialog, click on the Change Authentication button.
Next, select the Organizational Accounts radio button, choose On-Premises in the drop-down, and fill in your On-Premises Authority and App ID URI.
Vittorio blogged about the full experience here if you need more detail.
You will have to substitute in the correct URL's for your Azure Website, but this should get you going in the right direction.

how to implement Converse.js An XMPP chat client for asp.net 4.0 web site

i just found one nice article about online chatting application with converse.js i read it's documentation and i like it. how ever i just have doubt it is there this chat facility can supported with asp.net 4.0 web site. Here i just want to know about in details is it supported with .net application.
here it's tells XMPP Chat server. Is there any additional cost for purchase it. After that how i setup this server for chat facility. here it's gives advice for identity i have to manually register user with it and i can use with my own web site.
Is there any one have idea how i implement this to my web site. Step By Step
Please help me..
Since you mentioned Asp.net so I am assuming you are talking about windows platform. I am using Openfire for XMPP messaging since last 5-6 years now and it is very easy to use and stable XMPP server. You can install it on your server and then configure Converse.js and XAMPP in conjunction with it to get web client chat feature. I referred this link to configure XAMPP along with Openfire: https://community.igniterealtime.org/docs/DOC-2954
Basic steps:
1. Install Openfire
2. Install XAMPP and configure as given in above link
3. Configure Converse.js in Asp.net application

Using AD in windows Azure for user account management

Has anyone implemented a project using Azure for user registration and authentication?
I can see how it would work well in an Enterprise application, but it seems as if there is no easy way to enable "self registration"
It looks like it is intended to work with an on premises AD solution, or alternatively for new users to be added using the Azure management portal.
Can anyone give me the benefit of their experience?
WAAD is a fully implemented solution for what I think you are trying to do, but created in a way very different than the "Active Directory" server product that it shares a name with. Take a look at the Windows Azure Active Directory Graph API, which is the RESTful management API for WAAD. With Graph API you would be able to create a fully functional application authenication system to meet your needs.
Overview
http://msdn.microsoft.com/en-us/library/windowsazure/hh974482.aspx
API Reference
http://msdn.microsoft.com/en-us/library/windowsazure/hh974478.aspx
Links, Examples, etc
http://msdn.microsoft.com/en-us/library/windowsazure/hh974476.aspx

Questions about Developing on LinkedIn

I am looking at building a LinkedIn application and i am a little bit flustered because of the paucity of Information out there. Here are things i need to know:
1)
Is there any LinkedIn AppStore or a central place where i can test out applications? The link i could find is http://www.linkedin.com/static?key=application_directory but i dont want to believe there is only 18 Applications on the LinkedIn platform
2)
How do i host or integrate my Application into LinkedIn. The only option i can see when it comes to using LinkedIn API is to have the application on your domain and call the API from your APP. But is there a possibility of having the Application have a linkedIn domain? like we have on Facebook?
Thanks
Those applications you link are indeed the only ones that have been approved for use on the LinkedIn.com site - there is no open development system to build apps on LinkedIn.
To build applications against the LinkedIn platform, you would use the JavaScript or REST APIs, and you would need to host the application on your own domain.

Resources