Hello!
I have an issue I don't understand. I have a viewer.asp file that I use to stream files from a secure location to the user, giving them the standard Open or Save dialog from the browser. This particular function works fine.
I use the same file to try to stream video to an embedded media player object. Example:
What happens is, it connects and starts playing the video with no problem, but it will not download the whole thing. It will just stop anywhere from 4 to 9 minutes into the video. But if I just connect straight to viewer.asp in the address bar of the browser and tell it to save or open the file, it will get the whole file just fine.
Any ideas?
-Greg
I have an issue I don't understand. I have a viewer.asp file that I use to stream files from a secure location to the user, giving them the standard Open or Save dialog from the browser. This particular function works fine.
I use the same file to try to stream video to an embedded media player object. Example:
Code:
<object id="MediaPlayer" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" standby="Loading Windows Media Player components..." type="application/x-oleobject">
<param name="url" value="viewer.asp?f=<%=folder%>&fn=<%=filename%>&ft=<%=filetype%>" />
<param name="SendPlayStateChangeEvents" value="True">
<param name="AutoStart" value="True" />
<param name="PlayCount" value="1" />
<param name="fullScreen" value="True" />
</object>
What happens is, it connects and starts playing the video with no problem, but it will not download the whole thing. It will just stop anywhere from 4 to 9 minutes into the video. But if I just connect straight to viewer.asp in the address bar of the browser and tell it to save or open the file, it will get the whole file just fine.
Any ideas?
-Greg