Vipul Limbachiya
Vipul Limbachiya

Reputation: 131

How to authenticate an HTTP request to remote server that can be utilize on end user browser?

Details of the problem:

So what I want is a method server side or client side, that can allow me to log-in to camera automatically when my end-users visit this page.

I am using asp.net with c# 2005

Thanks,

Vipul

Upvotes: 0

Views: 476

Answers (1)

feroze
feroze

Reputation: 7594

One way to do this would be to build a proxy that sits between the user and the camera. For every new connection that comes in from the user, you open a backend connection to the camera and login first before streaming the data out.

Your asp.net page would talk to this proxy.

Upvotes: 1

Related Questions