Batching Video Requests In Asp

I need some help with making an asp website that will batch user requests for a particular video file, and then once a few requests are made for a video, play that video to the browsers that requested it (after a certain period of time). Physical path links to the video files are stored on an access database and the videos are loaded to be played from that database. (These files will be located in the IIS web server directory).

An example of this is when a request is made wait till you get 4 more requests and then play the video to the 5 browsers requesting the video, or play the video after for exampele 15 minutes, even if only 1 request is made. This is therefore a near video-on-demand "NVOD" system in asp. The problem is, I don't know where to start, and although I have done a lot of searches on the web I am still not getting anywhere with this.

View Replies


ADVERTISEMENT

Batching Emails :: AspEmail Vs CDO :; SendQueue Stability?

Database: Access 2000
Host: Maximum ASP

I am trying to work out the best way to send bulk email below the 1000 mark
(about 800).

I understand that I could either use ASPEmail or CDO although I believe that
ASPEmail may be superior in that it offers SENDQUEUE command which will
allow me to loop through my customer database and insert them into the TO
fields.

1. Could the above be confirmed?

2. I wish my mailing list to be invisible - I don't want the mailing list to
be evident in the recipients email...is this just a question of looping them
into the BCC field?

3. I remember seeing some posts a while ago highlighting problems with the
SendQueue Method.... what are the curve balls with this approach.

My web host tells me I can send upto a 1000 per day yet www.aspfaq.com says
about 800. How do I tackle this task correclty. I cannot move up to SQL
Server or MSDE yet and I do not have access to a mail server...

View Replies View Related

Pass Requests

I woudl like to know why querystrings and numbers are used to pass requests ?

E.g. in this forum, sitepoints; to display asp pages, they used forumdisplay.php?f=148

whats wrong in using
forumdisplay.php?f=asp ?

View Replies View Related

Hanging Requests

We have two Win2003 webfarms each consisting of 5 servers.Which we call and cluster2. Cluster2 is the bussiest of these two and periodicaly (varies from 2 times per day to two times per week) one of the servers (this is pretty random) starts to build up Requests Executing.

During this 'queueing' it still serves about approx. 75% of the requests.requests that don't come back with an answer are added to the Requests Executing count.This goes on until 100 requests are queued then it starts throwing errors like:"The CreateObject of '(null)' caused exception C0000005"

To me it seems like one of the 4 worker processes is not responding anymore.Is there a way to see why this is happening?SQL server doesn't report any locks.

View Replies View Related

HTTP GET Requests

I seem to have some sort of security issue with my web server and was hoping someone out there might be able to help me. I am attempting to perform an HTTP GET against some .asp pages on my webserver and the request just seems to timeout.

When I perform the GET against any .htm page, all works fine, but any .asp page will timeout, even something just containing one line of html. Since all is fine with .htm pages, I do not believe this is a code issue, but rather some kind of security/permission issue. The web server is WinXP Pro SP1.

View Replies View Related

Finding Out The Number Of Requests

I have a form. When I do action="POST" I can see the changes done by looking at ---- for example request("MyBox") 

Where MyBox is a dropdown box and by doing request("MyBox") I get the selected value.

Is there a way I can get the number of requests done? (i.e if I had 3 dropdown boxes then I get 3).

Also is there a way to get a list of the names of all the requests (i.e if I had 3 dropdown boxes then I get MyBox1 MyBox2 MyBox3)

View Replies View Related

ServerXMLHTTP Requests On The Same Web Application

On server A I've a web application WA1. Inside WA1 there are a virtual directory VD1 and an ASP page named page1.asp. Inside VD1 there is another ASP page named page2.asp.

page1.asp makes a ServerXMLHTTP requests for page2.asp.

If Debugging Flags on WA1 are enabled the request seems to be blocked,
if those flags are disabled everything seems to be ok.

Is my problem really solved ?

View Replies View Related

Outlook Meeting Requests

I was asked if it was possible to send Outlook Meeting Requests through ASP. I know how to send mail using Server.CreateObject("CDONTS.NewMail") but I don't know if sending a meeting request (with buttons Accept, Decline, Tentative) is possible.

I have a form which grabs the date, time, and location of the meeting but currently its just sent through regular email.

View Replies View Related

Adding Multiple Requests

I have never programmed in ASP in fact I am not a programmer at all. I found this script that sends an email that pulls information from a contact form.

'Sends an email
Dim mail
Set mail = Server.CreateObject("CDO.Message")
mail.To = "youremail@yahoo.com"
mail.From = Request.Form("your_email")
mail.Subject = "Contacts"
mail.TextBody = Request.Form("your_message")
mail.Send()
Response.Write("Thank you for visiting!")
Destroy the mail object!
Set mail = nothing

I got it to work with my flash contact form however on the form I have two other fields. Name and Phone number that I want to tack onto the TextBody but I do not know how to do this.

View Replies View Related

Passing POST Requests

I have page1.asp with a form on it, then this goes to Page2.asp, the data is processed. I then want to access the same from data on page3.asp. Is there any simple way to transfer all POST requests to page3.asp without having to put them into session or Query-strings?

View Replies View Related

Server Side XMLHTTP Requests

I'm trying to run the below script on my website and keep getting the ever unhelpful

....
msxml3.dll error '80004005'
Unspecified error
....

on line 11

when i ran this on our intranet server at work it worked fine but on my personal site it wigs out can anyone spot anything wrong in the code?

<%
strLink = request("linkval")
strLinkDescr = request("desc")

If Not Left(strLink,7) = "http://" Then
strLink = "http://"&strLink
End IF

set xmlreq = Server.CreateObject("MSXML2.serverXMLHTTP")
'on error resume next
xmlreq.open "GET",strLink,false
xmlreq.Send ""

PageStatus = xmlreq.status


If err.number<>0 or PageStatus <> 200 then
Select Case PageStatus
case 404 PageResponse = "Page Does not exist (404 error)"
case 401 PageResponse = "Access was denied (401 error)"
case 500 PageResponse = "Internal Server Error encountered on remote site"
case else PageResponse = "Remote Server is: down, not accepting connections or does not exist"

end Select

Else

PageResponse = "Remote server was located and URL is valid."
XMLResponseText = xmlreq.responseText

End If

set xmlreq = nothing
response.Write(PageResponse&"<br />"&XMLResponseText)
%>

View Replies View Related

Sending And Processing Requests Between Different Webservers

I need to have a web page with information sent to another server for
processing (sql query, etc.) but instead of the information going directly
back to the browser, I need it to go to the original server for after
processing. Is this possible and can someone point me in the right
direction. It may be similar to the way credit card transactions are handled
but I'm not sure.

View Replies View Related

Handling Errors From Multiple Requests To Access Database

When simultaneous requests to open an Access Database occur, the Jet Database engine returns an error stating: Cannot Open file, already in use.

I know this occurs because I'm using a file-based Access database, and it's locked while data access is taking place. However, at this time, its the only platform available on the site.

My question is, can I somehow use an On Error GoTo Blah statement to catch the error, clear it, and then attempt the ADODB.Connection.Open statement again?

View Replies View Related

Custom Http Error 404 To Catch Subdomains.site.com Requests

I have 404.asp file that catches non existing pages such as www.site.com/es for spanish version of site. Now I would like to move ahead and have es.site.com instead. I started digging into subdomains in IIS and found out that usually when creating subdomain in IIS it creates a separate sub-directory by the same name as the subdomain created. From some reason the custom error 404.asp file I already have is not called when a call to a non existing sub domain page is made.

Anyone knows why?

How do I configure 404.asp to also handle subdomain page requests?

I know that in Unix/Apache I can use .htaccess file to direct calls to es.site.com to www.site.com/es quite easily, can this be done somehow on IIS?

View Replies View Related

Video

I have a pc as a web server, i have some asp pages on it and functions
perfectly, recently bought a tv card so i can watch tv on my pc and installed
on it.what i want to do is to put in an asp page the video generated from
the tv card so others in my lan can watch live tv trough an asp page.
I think its posible. Its the same idea of using a web cam in your pc to view
what is happening in your home trough internet.

View Replies View Related

Audio+video

i need to view audio and video files on asp files...something like youtube, but from my own server and i want that files be secure...that the files can be view only from my page how can we make it happen?

View Replies View Related

Video On Demand In Asp

I need to make an asp site that is linked to a database which holds the pysical paths to several video files. A user to the site can request a particular video and once a few requests have been made to the same video, the requests are batched and then the video is loaded from the database into the users browsers, so in other words...Near video on demand (NVOD).

I cannot find any information on the web to help me achieve this, and so I hope somebody here will be able to help me. How do I go about creating such a system!! Where do I start?

View Replies View Related

Video Streaming

i used active x plugin (quicktime), in source file of the plugin i placed the code "Myservermyvideovideo.mov" but when i browse the page, it cant view the view, i used iis6.0. ider an addtiional code on this when retrieving the source from a network?

View Replies View Related

Video Showing

I have an active-x control on my asp that loads a wmv video file.But i have a problem viewing the video until i have download the whole video on the active-x control.

Is there a way to see a portion of the video without complete download?

View Replies View Related

Video Files To Swf With Asp

I want to ask if there is a way of converting video files like mpeg,avi etc to swf files on server using asp code.

View Replies View Related

Streaming Video

does anyone have a good way of streaming video on my site? I guess it doesn't matte what format they are in, is there something which kicks off media player?

View Replies View Related

Duration Of Video

I am writing an ASP application that deals with the TV tapes and two of the fields is what I am having issues with. I need to store the duration of the program i.e. DURATION field only to accept Numerical entries in the form 000:00:00 (min:secs:frames).

I also need to store the TIMECODE field only to accept Numerical entries in the form 00:00:00:00 (hours:mins: secs:frames). What datatype should I be using in my Access 2000/ 2003 database. How can I validate this field when allowing users to add the correct
data.

View Replies View Related

Video On Demand In ASP

I need to make an asp site that is linked to a database which holds the pysical paths to several video files.

A user to the site can request a particular video and once a few requests have been made to the same video, the requests are batched and then the video is loaded from the database into the users browsers, so in other words...Near video on demand (NVOD).

I cannot find any information on the web to help me achieve this, and so I hope somebody here will be able to help me. How do I go about creating such a system!! Where do I start?

View Replies View Related

Audio/Video Via Asp

I am looking for a way to deliver audio/video files to users as that user do not know the url of file. For Expamle I have abc.mp3 and some one wants to download this file he has to click to a link which takes him to xyz.asp and start downloading file abc.mp3 but he never know full url of abc.mp3.

View Replies View Related

Video Controls

We have a need to be able to edit videos uploaded to us. Need to be able to resize them, resample,convert to various formats, etract images, overlay images, etc.

I've seen a few controls that do this, but wanted to know if anyone had any feedback on any of them. If you've used any of the ones on the market, please give your feedback on ease of use and stability.

View Replies View Related

Streaming Video Capture Using ASP

I'm about to venture onto a new project of developing an ASP Page that captures images from a streaming web camera, and displays them (refreshs) the image every 15 seconds.

The question I have, is it possible to capture images (every 15 secs- from the webcam on the intranet) and store that snap shot as say a .jpg file in a folder, and then have the ability to continuously add images to this folder, so at a later date you could develop a system that would display photo after photo simultaneously, fast motion of the project in action.

View Replies View Related

Capturing Image From A Video In ASP

Can someone help me regarding Capturing Image from a Video in ASP. what I have achieved is this, I have run the video using Media Player Active-X Control and have got a button control on which I have initiated a component known as Media Processor, which saves the frame according to current position supplied in a picture format. But the problem is that it doesn't support files greater than 300 MB or so. I want to have a support of upto 2 GB files. Moreover, I have to keep in consideration the performance issues, it shouldn't get my server down. Can someone give me any idea about any component for this job, I have been able to find out only this on different locations. I have got another one that is working well in VB, but there is a problem with using in ASP. I am using Media Player just because of buffering, actually I want is kind of streaming so that the server gets minimum load. How to achieve this?

View Replies View Related

Downloading Video Files

I have this weird problem when downloading video files on my ASP/IIS. My download code seems to be working since i can download every file except for video file ext. particularly mov and mpg. The download dialog prompts with the right file size except that it doesnt recognize the header or content type of the file.

View Replies View Related

How Can I Make Video Conferance

How can I make video conferance using asp?

View Replies View Related

Hide Video Stream URL

I need to hide my video streaming source URL such as mms:123.11.123.24 est.wmv . I know how to hide image source using another ASP at the <img src=> tag. But what about streaming Video ? Is there a good way to hide it in ASP code ?

View Replies View Related

Create A Screenshot Of A Video Clip In ASP

I'm trying to create a page that allows user upload video clips to my server.
What do I want from this operation is:

1. User upload a video clip (.mpg) to a folder
2. The path to that folder will be stored in a database
3. Display a screenshot of the video clip on the main page
4. It brings ppl to the video player page after ppl clicked on the screenshot.

So far many ppl have telling me it is doable with PHP, how about with ASP?

View Replies View Related

Video/audio Editing On Upload

is it posable to let a user upload a video/audio file and then i edit
it like you can with pictures? eg. change reselution, put a pre
recorded introduction to it (branding it to a website) or even convert
the file type

i know the intro thing can kind of be done with playlists but i want to

be able to let the users download the files for use on offline machines

plus i want to be able to convert the resilution.

View Replies View Related

Error In Upload Of The Video Archive.

The page below sends archives of video for the component aspSmartUpload. All time that I try to send a video archive wmv appears this error:

Request object error 'ASP 0104 : 80004005'

Operation not Allowed

/tvonline/video_enviar.asp, line 30

In line 30 I have this.

objUpload.Upload

I already verified the way of the folder and the permission of the folder for reading and writing and I am all certainty. I do not understand because it is showing this error.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved