how can I integrate video chat in asp.net application? - asp.net

I need to do a video chat application (an application that enables video chat between android phone and pc). I have used "twilio" to do that. For that I installed node.js and git. The problem is my asp.net application runs on "http://localhost:50219/MedApp_Application/Home.aspx" and video application run on "http://localhost:3000/quickstart/". how can I include video chat to asp.net application.
http://localhost:50219/MedApp_Application/Home.aspx
http://localhost:3000/quickstart/
this is the link for the sample twilio application that I used to built video chat application..https://github.com/twilio/video-quickstart-js

Twilio developer evangelist here.
The Node.js quickstart application you have there just creates an access token for the users of your application. You can see an example of creating an access token in ASP.NET here. You can also check out the documentation for creating access tokens for Video here.
If you generate the token in your C# application then you won't need to run the Node.js application at all. You can then follow the rest of the documentation to create your Video application.

Related

How to connect client android app with admin website

I have created an android app on android studio with firebase database.
Now I want to develop an administrative website through which the admin will control all the operations of the app.
I want to know how to connect the app to the website. Also, should the database be connected to the app or the website?
Your website doesn't need to be directly connected to the app or vice versa. That is what firebase is for. When using the website or app, you connect directly to firebase. When data changes in the database, you can reflect these changes on both the website and app.
So there is no direct link between the app and website. They are just interfaces to manipulate and view data in firebase.
Basically your quesion is "How can you connect your Android application to a web server".
You need to look at the URLConnection class. An example is here http://www.devx.com/wireless/Art.... If you are writing the server side web service, I suggest making it a RESTful service returning JSON data (as that is easier to deal with on the handset)

Skype for business chat and call the user from my web application

We are developing a web application which is hosted in IIS with windows authentication enabled. (The authentication is done through Active directory)
The application is designed as a collaborative tool where all the organization users can interact with each others.
We are in a need to integrate SkypeforBusiness feature in our web application where as the user can see his collegue's presence, call or chat with him directly from the application.(The Skype for Business service is online but web application that need to consume is going to be in on-premise)
I am going through some articles from MSDN regarding SDKs and UCWA but could not get the solution for my needs.
Please help.
Thanks

Host web cam in uwp app over asp.net website

I have an asp.net web application and a universal windows platform application running on my laptop with a web cam.
I want to access the web cam from my asp.net web application.
If you want to access access camera from a web hosted UWP app, you can refer to Create your Hosted Web App. And you probably need to enable the WebCam and MicroPhone capabilities in UWP App's manifest file in some scenario.
If you want to make your web application can directly call the camera device without a UWP app, you can use some jQuery webcam plugin. For example, you can try this one. But this can not be used from your UWP app.
In this case, if you want to access web cam both from hosted uwp app and your web app, you need to implement two procedures in your web app, one for hosted UWP app using WinRT API to call the camera, the other one for web app only.

how can we integrate meteor application to simple web application runs on application server?

Is there any integration meteor application with application server.
I want to create a chat client which should be integrated with my web application, i have seen meteor example and i want to explore the possibility for my requirement.
Please suggest.
You could either use meteor for your web application or you could put the meteor chat application in an iframe on your web application.
It would be difficult to actually integrate your current web application into a seperate meteor instance because meteor includes its own webserver and the meteor code can't run on what your application server's stack might be (IIS/Apache,Thin,etc). You would have to look at a way of having meteor run on its own and then integrating this into your webpage with html/javascript
If you don't have a chat application on meteor yet, there's a very good example at:
https://github.com/AVGP/meteor.js-chat-example

Integrate Fingerprint Scanner with Web Application

I want to Develop a web application, which accept fingerprint from client machine using any mouse with fingerprint scanner whose SDK supports ASP.NET. And this fingerprint will be cross verified at server side database to authenticate the user.
Is it possible?
Do we need to Develop from the scratch?
Can my Web Application be integrate with existing any "fingerprint logon application" for PC Security at Server side?
You will have to develop a Browser plugin that will interact with the FringerPrint SDK... You may also have to develop different versions for the different Fingerprint scanners..
your Web application will then interact with the plugin...

Resources