Let me know if you need further info. I can hook you up with CDNetworks, but it was remarkably easy to implement, even in SharePoint. Just a few lines of code to gather the stuff I needed, and one call to their COM library function:
My email is my username on this forum, at hotmail.
Regards,
Mike Sharp
Ikeygen authobj = (Ikeygen)Context.Server.CreateObject("keygen4.keygen");
string _encryptedToken = authobj.GetCode(
originalUrl,
Context.User.Identity.Name,
TTL,
Context.Request.UserHostAddress,
serverIp,
_privateKey);
_encryptedStreamingEndpoint = string.Format("{0}?key={1}", _encryptedStreamingEndpoint, _encryptedToken);
My email is my username on this forum, at hotmail.
Regards,
Mike Sharp