Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Friends,

I am getting this error:
Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80040154.

Running on : Windows 2003.

I try to develope web application in vb.net, session-based Authentication useing Unreal Media Server
and i m usering UMEDIASERVERLib.dll file
My code is:
VB
<%@ Import Namespace="System.Web.Security " %>
<%@ Import Namespace="UMEDIASERVERLib" %>
<%@ Import Namespace="System.Web.SessionState" %>

<html>

<script language="C#" runat=server>
void Login_Click(Object sender, EventArgs E)
{
if ((AccountName.Value == "video") && (UserPass.Value == "pass") ||
(AccountName.Value == "user") && (UserPass.Value == "video") ||
(AccountName.Value == "guest") && (UserPass.Value == "guest"))
{
Msg.Text = Session.SessionID.ToString() + AccountName.Value ;


UMEDIASERVERLib.ExternalSession MediaServerSessionMngr = new UMEDIASERVERLib.ExternalSession();
MediaServerSessionMngr.AddSession(Session.SessionID.ToString(), AccountName.Value);

FormsAuthentication.RedirectFromLoginPage(AccountName.Value,false);
}
else
{
Msg.Text = "Invalid Credentials: Please try again";
}
}
</script>


Plz anybody help me...
Posted
Updated 20-May-10 19:47pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900