1

I have a Asp.net Application (forms). I want to add video chat feature using webrtc! this video chat application is working on node.js! how can i integrate this webrtc app to my asp.net application ?

3
  • See if this link help.github.com/tjanczuk/iisnode Commented Aug 11, 2013 at 15:46
  • @Chandu do i need to change anything to make it work using iisnode? I've installed iisnode and manged to run the samples it comes with (the WWW folder) but haven't been able to run the webrtc sample code! should i reconfigure anything ? Commented Aug 11, 2013 at 15:55
  • YOu might find it simpler not to. Consider decoupling your functions and having the node app be separate from your ASP.Net app; you can run it under a subdomain of your .net app to avoid same-origin restrictions. Keeps things cleaner and more scalable too. Commented Aug 12, 2013 at 1:26

1 Answer 1

1

Try WebSync, a realtime HTTP streaming (comet) server built for Microsoft stack (.net/iis) using the Bayeus protocol. Search "websync" part in this comment, for "just" an example!

You just need to download their samples; try a simple text-chat sample; and use it for signaling. Simple!

Note: Usually WebRTC developers use node.js for signaling purpose only; however a few people use it to keep sessions to detect presence of the users; if the app you referenced is using such kind of things; then WebSync is not easier because you've to change a lot many things on the server end. Then I'll suggest you try something like this. And obviously iisnode!

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.