vote up 0 vote down star

We have a SOAP-based webservice that our client uses to validate their updated live streaming video URLs. We implemented this service so our client can rotate their live streaming publishing points multiple times a day to obscure their location.

The problem is that we do a number of checks on our end to validate these new publishing points. To do this, we need the current publishing point and the updated one. Our process is as follows:

  1. FAIL if specified 'current' and 'new' points are identical. No need to update if they're the same.
  2. FAIL if the 'current' point does not exist within our database. Can't update something that doesn't exist.
  3. Validate the structure of the 'new' point's URL to ensure it conforms within our standards
  4. Use WMPlayer.ocx to open the stream and make an attempt to play it.

Once all 4 steps are passed, we do the update.

The problem is that WMPlayer.ocx is complete sh-t as it likes to fail on us for no reason at all. For some odd reason the only way to fix the issue is to restart Apache, which could end up becoming a support nightmare for us.

The COM object tends to return vague error messages which make it difficult to test and reproduce.

My question is, is there another way, perhaps using another COM object that supports playing streaming media through PHP, to perform STEP 4 in our web service?

Thanks all!

EDIT: I should note here that the errors are sporadic and cannot be replicated.

flag

80% accept rate
2  
If you're not too concerned about people intentionally trying to spoof streams, you could probably just open a socket up, and look for some sort of signature suggesting that the stream is legit (appropriate protocol headers, etc.). This would probably be especially easy if you only support a handful of protocols. If you're not sure what's in use, you could always survey the database of known good streams you have. – Frank Farmer Jun 12 at 2:37

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.