473,395 Members | 1,412 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

RSS log/pass

Hello,

I would like to create a podcsat/rss stream on my website but i wan't to
allow mp3 downloads only to people who have a log/password or a least a
"secret" word.

Is that possible ?
Thanks a lot for your help.
Rémi.
Oct 19 '05 #1
6 1394
Yes, it's possible.

You must handle HTTP request to your mp3 files, authenticate user and
if authentication is successed permit file downloading.

Which software do you use on your site? On what platform your site is
hosted? Do you use any server-side scripts?

Best, Ed.

Rémi wrote:
Hello,

I would like to create a podcsat/rss stream on my website but i wan't to
allow mp3 downloads only to people who have a log/password or a least a
"secret" word.

Is that possible ?
Thanks a lot for your help.
Rémi.


Oct 20 '05 #2
Gomolyako Eduard a écrit :
Yes, it's possible.

You must handle HTTP request to your mp3 files, authenticate user and
if authentication is successed permit file downloading.

Which software do you use on your site? On what platform your site is
hosted? Do you use any server-side scripts?


Nothing special really....
It is for a webradio, they just have mp3 stored on a server.
I would like to create a XML/RSS file from that but i would like to
allow download only to people who have a valid id/pass. People will be
allowed then to download the last show of their favorite program

Is it possible with ipodder, itunes or another one ?
Actually, I know how to write a XML/RSS file (by hand or with
feedburner.com) but how to put a restriction on it ? a log/pass ?

Thanks for your help.
Rémi.
Oct 20 '05 #3
Gomolyako Eduard a écrit :
Yes, it's possible.

You must handle HTTP request to your mp3 files, authenticate user and
if authentication is successed permit file downloading.

Which software do you use on your site? On what platform your site is
hosted? Do you use any server-side scripts?


I see ! You mean eg a rss/podast stream located at something like :
http://mywebradio.com/podcast.php?login=name&pass=pass ?
or at least :
http://mywebradio.com/podcast.php?secretword=ninini ?
I am right ?

For now the platform is :
Apache/2.0.49 (Win32) mod_perl/1.99_12 Perl/v5.8.3 mod_ssl/2.0.49
OpenSSL/0.9.7d mod_python/3.1.3 Python/2.3.3 mod_fastcgi/2.4.2
mod_jk/1.2.0 DAV/2 Server at www.mywebradio.com Port 80

Thanks.
Rémi.
Oct 20 '05 #4
Rémi wrote:
Actually, I know how to write a XML/RSS file (by hand or with
feedburner.com) but how to put a restriction on it ? a log/pass ?


As already mentioned, you have to do that on HTTP layer, not in RSS. The
server, where the files are stored must be password-protected.
--
Johannes Koch
Spem in alium nunquam habui praeter in te, Deus Israel.
(Thomas Tallis, 40-part motet)
Oct 20 '05 #5
Rémi wrote:
Gomolyako Eduard a écrit :
Yes, it's possible.

You must handle HTTP request to your mp3 files, authenticate user and
if authentication is successed permit file downloading.

Which software do you use on your site? On what platform your site is
hosted? Do you use any server-side scripts?
I see ! You mean eg a rss/podast stream located at something like :
http://mywebradio.com/podcast.php?login=name&pass=pass ?


Nearly. First of all you must have knowledges about server-side
web-delepmoment. Do you have this knowledges? You can use for example
PHP on your server to handle HTTP requests or Perl or ASP or ASP .NET
or Java...

or at least :
http://mywebradio.com/podcast.php?secretword=ninini ?
I am right ?

For now the platform is :
Apache/2.0.49 (Win32) mod_perl/1.99_12 Perl/v5.8.3 mod_ssl/2.0.49
OpenSSL/0.9.7d mod_python/3.1.3 Python/2.3.3 mod_fastcgi/2.4.2
mod_jk/1.2.0 DAV/2 Server at www.mywebradio.com Port 80

Thanks.
Rémi.


Oct 21 '05 #6
Hello,

Gomolyako Eduard a écrit :
I see ! You mean eg a rss/podast stream located at something like :
http://mywebradio.com/podcast.php?login=name&pass=pass ?

Nearly. First of all you must have knowledges about server-side
web-delepmoment. Do you have this knowledges? You can use for example
PHP on your server to handle HTTP requests or Perl or ASP or ASP .NET
or Java...


Thanks for your reply.
I can't say i have this knowledge but somme people involved in this
project have (much better than me!). The problem is, thanks to yours
helps, a matter of PHP scritping to handle those HTTP resquests...
Rémi.

Oct 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Zlatko Matiæ | last post by:
Let's assume that we have a database on some SQL server (let it be MS SQL Server) and that we want to execute some parameterized query as a pass.through query. How can we pass parameters to the...
0
by: Zlatko Matiæ | last post by:
Hi everybody! Recently I was struggling with client/server issues in MS Access/PostgreSQL combination. Although Access is intuitive and easy to use desktop database solution, many problems...
1
by: Greg Strong | last post by:
Hello All, Why would brackets be added to the SQL of a pass through query to Oracle? If I paste the debug print of the SQL statement into SQLPlus of Oracle's XE edition it works, and does NOT...
4
by: Jon Slaughter | last post by:
I'm reading a book on C# and it says there are 4 ways of passing types: 1. Pass value type by value 2. Pass value type by reference 3. Pass reference by value 4. Pass reference by reference. ...
14
by: Abhi | last post by:
I wrote a function foo(int arr) and its prototype is declared as foo(int arr); I modify the values of the array in the function and the values are getting modified in the main array which is...
4
by: kinaxx | last post by:
Hello, now I'm learning progamming language in university. but i have some question. in textbook. says there are four passing Mechanism 1) pass by value (inother words : call by value) 2)...
10
by: Robert Dailey | last post by:
Hi, I noticed in Python all function parameters seem to be passed by reference. This means that when I modify the value of a variable of a function, the value of the variable externally from the...
6
by: lisp9000 | last post by:
I've read that C allows two ways to pass information between functions: o Pass by Value o Pass by Reference I was talking to some C programmers and they told me there is no such thing as...
13
by: magickarle | last post by:
Hi, I got a pass-through query (that takes about 15 mins to process) I would like to integrate variables to it. IE: something simple: Select EmplID from empl_Lst where empl_lst.timestamp between...
12
by: raylopez99 | last post by:
Keywords: scope resolution, passing classes between parent and child forms, parameter constructor method, normal constructor, default constructor, forward reference, sharing classes between forms....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.