I doubt if this possible. You would have to know the code to call WMP (or better said, the WMP plugin) not with one mp3, but with a playlist, and you would have to know how to construct a playlist so that every line points to a file on your site.
If no answer comes here (and let me note that none came on your previous post http://forums.cnet.com/5208-6615_102-0.html?forumID=34&threadID=250259&messageID=2501715 ) and you can't find the necessary info on the net, all you can do is to ask Microsoft.
Or you would have to pay (they might not be free) for a professional streaming solution with a professional streaming provider.
Hope this helps.
Kees
I have a web site which I used to promote my parties and my dj business I found a code to put music on a play list that people can listen to and are unable to down load I dont want any one to be able to download my music but the problem I have is that the list that plays, plays only the song you select and in order to play a next song you have to select it from the list it does not automaticaly go to the next song on the list and this is my problem this is the code that I am using
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<title>The very best of UB40 I</title>
<style type="text/css">
<!--
body {
text-align:center;
background-color:red;
}
form {
margin:0;
padding:0;
}
-->
</style>
<script type="text/javascript">
<!--
function PlayIt(){
document.getElementById("music1").innerHTML='<object id="mediaPlayer" width="270" height="45" '
+'classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" '
+'codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" '
+'standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">'
+'<param name="fileName" value="'+document.getElementById('cancion').value+'">'
+'<param name="animationatStart" value="true">'
+'<param name="transparentatStart" value="true">'
+'<param name="autoStart" value="true">'
+'<param name="showControls" value="true">'
+'<param name="loop" value="true">'
+'<embed type="application/x-mplayer2" '
+'pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" '
+'bgcolor="101010" showcontrols="true" width="270" height="45" '
+'src="'+document.getElementById('cancion').value+'" autostart="true" designtimesp="5311" loop="true">'
+'<\/embed>'
+'<\/object>'
}
//-->
</script>
</head>
<body onload="document.forms['player'].reset()">
<form name="player" action="select" method="">
<select name="List" style="background-color:#101010; color:#aa0000" id="cancion" onchange="PlayIt()" size="1">
<option value="#"> ::::::::::::: The Very Best of UB40 1980-2000 [US]:::::::::::::</option>
<option value="#"> ::::::::::::: Choose Your Music :::::::::::::</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/01 I Got You Babe.wma">I Got You Babe</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/02 Here I Am (Come and Take Me).wma">Here I Am (Come and Take Me)</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/03 Bring Me Your Cup [7 Version].wma">Bring Me Your Cup [7 Version]</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/04 One in Ten.wma">One in Ten</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/05 Red, Red Wine.wma">Red, Red Wine</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/06 Kingston Town.wma">Kingston Town</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/07 If It Happens Again.wma">If It Happens Again</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/08 Don't Break My Heart.wma">Don't Break My Heart</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/09 Cherry Oh Baby.wma">Cherry Oh Baby</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/10 Can't Help Falling in Love.wma">Can't Help Falling in Love</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/11 Higher Ground.wma">Higher Ground</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/12 Tell Me Is It True.wma">Tell Me Is It True</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/13 Rat in Mi Kitchen.wma">Rat in Mi Kitchen</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/14 Until My Dying Day.wma">Until My Dying Day</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/15 The Way You Do the Things You Do.wma">The Way You Do the Things You Do</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/16 Light My Fire.wma">Light My Fire</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/17 Food for Thought.wma">Food for Thought</option>
<option value="http://www.roaringlionent.com/music/The Very Best of UB40 1980-2000 [US]/18 Sing Our Own Song.wma">Sing Our Own Song</option>
</select>
</form>
<span id="music1">
<object id="mediaPlayer" width="270" height="45"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">
<param name="fileName" value="">
<param name="animationatStart" value="true">
<param name="transparentatStart" value="true">
<param name="autoStart" value="true">
<param name="showControls" value="true">
<param name="loop" value="true">
<embed type="application/x-mplayer2"
pluginspage="http://microsoft.com/windows/mediaplayer/en/download/"
bgcolor="black" showcontrols="true" width="270" height="45"
src="" autostart="true" designtimesp="5311" loop="true">
</object>
</span>
<script type="text/javascript">
function highl() {
var x = document.getElementById('mytext').innerHTML;
var highlight = "<span style='background: red;'>"+x+"</span>";
document.getElementById('mytext').innerHTML = highlight;
}
</script>
</head>
<body>
<div id="mytext" onclick="highl();">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<a href="reggae music.htm" target=logo>click here to get back other cd's</a><br><br>
</html>
if anyone can help i would appreciate it thank you

Chowhound
Comic Vine
GameFAQs
GameSpot
Giant Bomb
TechRepublic