• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

secure webite streaming live images from multiple camers

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

can anyone please help or point me into the right direction. I am trying to create a secure webiste which will have embedded live cctv video streaming, i am not sure have i need to go about this, i dont want to use the software that comes with the camera, i want to be able to create some bespoke and secure with mutiple login's allowed.

thanks
Harry
 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This sounds like any other application that might need to secure access to content based on appropriate authentication and authorization. The only difference appears to be that you want to stream live video instead of static data from a database.

Approach it like you would any database application, with all the required access controls, and then based on the authenticated user's authorization, show them whatever video streams they're authorized to see. SSL/TLS will handle all the encryption you need on the wire. There are probably hundreds of books on the subject, but you can't go wrong just reading the free JEE6 Tutorial at java.sun.com and following the example there.

Arshad Noor
StrongAuth, Inc.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic