Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > asp component error

Reply
Thread Tools

asp component error

 
 
Bill
Guest
Posts: n/a
 
      08-28-2005
Hi

I am having a problem with a com object on WinXP Pro. It is properly
registered, but gives me the following error:

Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/code/cgi-sec/upload.asp, line 3
Invalid class string

I do not have windows firewall active and it does the same thing with
firewall/virus/spyware software disabled. It runs fine on my Win2K Pro
desktop. The MS Knowledgebase entries are no help.

Thanks fo all help,
Bill

 
Reply With Quote
 
 
 
 
Ray Costanzo [MVP]
Guest
Posts: n/a
 
      08-29-2005
What's on line 3? Probably "set something = CreateObject("some.component"),
but you do not have that component installed on your machine.

Ray at work

"Bill" <> wrote in message
news:8BD9C838-5039-4C82-AEAD-...
> Hi
>
> I am having a problem with a com object on WinXP Pro. It is properly
> registered, but gives me the following error:
>
> Server object error 'ASP 0177 : 800401f3'
> Server.CreateObject Failed
> /code/cgi-sec/upload.asp, line 3
> Invalid class string
>
> I do not have windows firewall active and it does the same thing with
> firewall/virus/spyware software disabled. It runs fine on my Win2K Pro
> desktop. The MS Knowledgebase entries are no help.
>
> Thanks fo all help,
> Bill
>



 
Reply With Quote
 
 
 
 
Bill
Guest
Posts: n/a
 
      08-29-2005


"Ray Costanzo [MVP]" wrote:

> What's on line 3? Probably "set something = CreateObject("some.component"),
> but you do not have that component installed on your machine.
>
> Ray at work
>


Thanks for the response Ray.

The component is properly installed and registered. I get no errors using
create.object in VBS. I believe this is a XP com security error, but none of
the solutions in the MS knowledge base or found on Google groups helps.

The everyone group has proper read permissions in the registry and IUSR has
proper NTFS permissions, dependency walker shows no problems.

I tried assigning IUSR to the administrato group and it did not help. I am
just lost trying to figure out what component permission needs to be changed
and where.

Thanks,

Bill


> "Bill" <> wrote in message
> news:8BD9C838-5039-4C82-AEAD-...
> > Hi
> >
> > I am having a problem with a com object on WinXP Pro. It is properly
> > registered, but gives me the following error:
> >
> > Server object error 'ASP 0177 : 800401f3'
> > Server.CreateObject Failed
> > /code/cgi-sec/upload.asp, line 3
> > Invalid class string
> >
> > I do not have windows firewall active and it does the same thing with
> > firewall/virus/spyware software disabled. It runs fine on my Win2K Pro
> > desktop. The MS Knowledgebase entries are no help.
> >
> > Thanks fo all help,
> > Bill
> >

>
>
>

 
Reply With Quote
 
Ray Costanzo [MVP]
Guest
Posts: n/a
 
      08-29-2005
Please show the first five lines of your code.

Ray at work

"Bill" <> wrote in message
newsAD8DB65-1B9F-4805-9F52-...
>
>
> "Ray Costanzo [MVP]" wrote:
>
>> What's on line 3? Probably "set something =
>> CreateObject("some.component"),
>> but you do not have that component installed on your machine.
>>
>> Ray at work
>>

>
> Thanks for the response Ray.
>
> The component is properly installed and registered. I get no errors using
> create.object in VBS. I believe this is a XP com security error, but none
> of
> the solutions in the MS knowledge base or found on Google groups helps.
>
> The everyone group has proper read permissions in the registry and IUSR
> has
> proper NTFS permissions, dependency walker shows no problems.
>
> I tried assigning IUSR to the administrato group and it did not help. I am
> just lost trying to figure out what component permission needs to be
> changed
> and where.
>
> Thanks,



 
Reply With Quote
 
Bill
Guest
Posts: n/a
 
      08-29-2005
Set Upload = Server.CreateObject("CrazyBeavers.Upload") ' Create object
Upload.ValidTypes = "jpg.gif.txt" ' Set valid file extension. Seperate
with .
Upload.MaxSize = 2*1024*1024 ' Set max filesize for uploaded files (2.0mb)

Next block begins a for loop through the results. The Set statement is where
it is blowing out because of the com issues.

"Ray Costanzo [MVP]" wrote:

> Please show the first five lines of your code.
>
> Ray at work
>
> "Bill" <> wrote in message
> newsAD8DB65-1B9F-4805-9F52-...
> >
> >
> > "Ray Costanzo [MVP]" wrote:
> >
> >> What's on line 3? Probably "set something =
> >> CreateObject("some.component"),
> >> but you do not have that component installed on your machine.
> >>
> >> Ray at work
> >>

> >
> > Thanks for the response Ray.
> >
> > The component is properly installed and registered. I get no errors using
> > create.object in VBS. I believe this is a XP com security error, but none
> > of
> > the solutions in the MS knowledge base or found on Google groups helps.
> >
> > The everyone group has proper read permissions in the registry and IUSR
> > has
> > proper NTFS permissions, dependency walker shows no problems.
> >
> > I tried assigning IUSR to the administrato group and it did not help. I am
> > just lost trying to figure out what component permission needs to be
> > changed
> > and where.
> >
> > Thanks,

>
>
>

 
Reply With Quote
 
Ray Costanzo [MVP]
Guest
Posts: n/a
 
      08-29-2005
And you said that you have a .vbs file that's creating this same component?
The error you're getting means either the component is not installed on the
machine running this code (the Web server) or it is not registered. I've
never seen it be permissions related.

Ray at work


"Bill" <> wrote in message
news:9736872C-FD70-4C30-B0A3-...
> Set Upload = Server.CreateObject("CrazyBeavers.Upload") ' Create object
> Upload.ValidTypes = "jpg.gif.txt" ' Set valid file extension. Seperate
> with .
> Upload.MaxSize = 2*1024*1024 ' Set max filesize for uploaded files
> (2.0mb)
>
> Next block begins a for loop through the results. The Set statement is
> where
> it is blowing out because of the com issues.
>



 
Reply With Quote
 
Bill
Guest
Posts: n/a
 
      08-29-2005
Ray,

All of the registry keys are in place with proper permissions, verified key
by key against a W2K pro box that it is working on. I even uninstalled the
dll and then registered it manually with regsvr32 with the same results.
That's why I'm lost.

"Ray Costanzo [MVP]" wrote:

> And you said that you have a .vbs file that's creating this same component?
> The error you're getting means either the component is not installed on the
> machine running this code (the Web server) or it is not registered. I've
> never seen it be permissions related.
>
> Ray at work
>
>
> "Bill" <> wrote in message
> news:9736872C-FD70-4C30-B0A3-...
> > Set Upload = Server.CreateObject("CrazyBeavers.Upload") ' Create object
> > Upload.ValidTypes = "jpg.gif.txt" ' Set valid file extension. Seperate
> > with .
> > Upload.MaxSize = 2*1024*1024 ' Set max filesize for uploaded files
> > (2.0mb)
> >
> > Next block begins a for loop through the results. The Set statement is
> > where
> > it is blowing out because of the com issues.
> >

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is there any POP3 and NNTP component I can use as a ASP Component? Miguel Minora ASP General 1 01-11-2005 10:16 PM
asp.NET dll-component: server security hole ?? (managed component) nicholas ASP .Net 3 10-04-2004 11:44 AM
com+ component and Component Service Karuppasamy ASP .Net 1 01-14-2004 11:30 PM
com+ component and Component Service Karuppasamy ASP .Net 0 01-13-2004 06:09 PM
Re: Calling a .NET component from a COM component remotely Soni ASP .Net 0 07-25-2003 04:33 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57