 |
|
 |
|
Next: I solved the problem!
|
| Author |
Message |
External

Since: Jan 11, 2005 Posts: 5
|
(Msg. 1) Posted: Tue Jun 21, 2005 9:55 am
Post subject: ASP and .NET running under Windows 2003 server and IIS Archived from groups: microsoft>public>inetserver>iis (more info?)
|
|
|
Hi,
I Have a problem when I run asp and .NET pages at the same time. The error
is generated by asp pages
Server object error 'ASP 0177 : 8007000e'
Server.CreateObject Failed
index.asp, line 41
8007000e
we are running asp and .net at the same time, .NET run fine but when I run
asp i got the error, asp run fine when I stop the application pool for the
..NET page the error is back as soon as we run any page that is .NET Help
please. >> Stay informed about: ASP and .NET running under Windows 2003 server and IIS |
|
| Back to top |
|
 |  |
External

Since: May 28, 2005 Posts: 210
|
(Msg. 2) Posted: Tue Jun 21, 2005 11:31 am
Post subject: Re: ASP and .NET running under Windows 2003 server and IIS [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Hello,
What is happening on line 41 and above in the file index.asp?
Have you registered whatever you are using CreateObject on?
--
Regards,
Kristofer Gafvert (IIS MVP)
<a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<a style='text-decoration: underline;' href="http://www.ilopia.com" target="_blank">www.ilopia.com</a>
pruebas_100 wrote:
> Hi,
> I Have a problem when I run asp and .NET pages at the same time. The
error
> is generated by asp pages
>
> Server object error 'ASP 0177 : 8007000e'
> Server.CreateObject Failed
> index.asp, line 41
> 8007000e
>
> we are running asp and .net at the same time, .NET run fine but when I
run
> asp i got the error, asp run fine when I stop the application pool for
the
> .NET page the error is back as soon as we run any page that is .NET Help
> please.
><!-- ~MESSAGE_AFTER~ --> >> Stay informed about: ASP and .NET running under Windows 2003 server and IIS |
|
| Back to top |
|
 |  |
External

Since: Jan 11, 2005 Posts: 5
|
(Msg. 3) Posted: Tue Jun 21, 2005 12:16 pm
Post subject: Re: ASP and .NET running under Windows 2003 server and IIS [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"Kristofer Gafvert [MVP]" wrote:
> Hello,
>
> What is happening on line 41 and above in the file index.asp?
>
> Have you registered whatever you are using CreateObject on?
>
>
> --
> Regards,
> Kristofer Gafvert (IIS MVP)
> <a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<font color=purple> > <a style='text-decoration: underline;' href="http://www.ilopia.com</font" target="_blank">www.ilopia.com</font</a>>
>
>
> pruebas_100 wrote:
>
> > Hi,
> > I Have a problem when I run asp and .NET pages at the same time. The
> error
> > is generated by asp pages
> >
> > Server object error 'ASP 0177 : 8007000e'
> > Server.CreateObject Failed
> > index.asp, line 41
> > 8007000e
> >
> > we are running asp and .net at the same time, .NET run fine but when I
> run
> > asp i got the error, asp run fine when I stop the application pool for
> the
> > .NET page the error is back as soon as we run any page that is .NET Help
> > please.
> >
>
Object is register below is the actual error line
Set objProxy = Server.CreateObject("ObjectClient")
this code run good when I stop the app pool for the .NET pages, one more
info this object is use by asp and .NET.<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: ASP and .NET running under Windows 2003 server and IIS |
|
| Back to top |
|
 |  |
External

Since: May 28, 2005 Posts: 210
|
(Msg. 4) Posted: Tue Jun 21, 2005 10:21 pm
Post subject: Re: ASP and .NET running under Windows 2003 server and IIS [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
ASP and ASP.NET can coexists.
Do you use this component in your ASP.NET pages aswell? Maybe the
component does not support that?
--
Regards,
Kristofer Gafvert (IIS MVP)
<a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<a style='text-decoration: underline;' href="http://www.ilopia.com" target="_blank">www.ilopia.com</a>
pruebas_100 wrote:
>
>
> "Kristofer Gafvert [MVP]" wrote:
>
> > Hello,
> >
> > What is happening on line 41 and above in the file index.asp?
> >
> > Have you registered whatever you are using CreateObject on?
> >
> >
> > --
> > Regards,
> > Kristofer Gafvert (IIS MVP)
> > <a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<font color=green> > > <a style='text-decoration: underline;' href="http://www.ilopia.com</font" target="_blank">www.ilopia.com</font</a>>
> >
> >
> > pruebas_100 wrote:
> >
> > > Hi,
> > > I Have a problem when I run asp and .NET pages at the same time. The
> > error
> > > is generated by asp pages
> > >
> > > Server object error 'ASP 0177 : 8007000e'
> > > Server.CreateObject Failed
> > > index.asp, line 41
> > > 8007000e
> > >
> > > we are running asp and .net at the same time, .NET run fine but when
I
> > run
> > > asp i got the error, asp run fine when I stop the application pool
for
> > the
> > > .NET page the error is back as soon as we run any page that is .NET
Help
> > > please.
> > >
> >
> Object is register below is the actual error line
>
> Set objProxy = Server.CreateObject("ObjectClient")
>
> this code run good when I stop the app pool for the .NET pages, one more
> info this object is use by asp and .NET.<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: ASP and .NET running under Windows 2003 server and IIS |
|
| Back to top |
|
 |  |
External

Since: Jan 11, 2005 Posts: 5
|
(Msg. 5) Posted: Wed Jun 22, 2005 8:27 am
Post subject: Re: ASP and .NET running under Windows 2003 server and IIS [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
yes this component is a COM was developed to use with ASP, work very well
under ASP, but now we are creating new pages that use ASP.NET these new pages
uses the same object and we also created a new app pool under IIS for the
ASP.NET and one for the old code ASP. when we run the ASP.NET pages and then
ASP pages the ASP pages generated this error
Server object error 'ASP 0177 : 8007000e'
Server.CreateObject Failed
index.asp, line 42
8007000e
line 42
Set objProxy = Server.CreateObject("ProxyClient.Client")
"Kristofer Gafvert [MVP]" wrote:
> ASP and ASP.NET can coexists.
>
> Do you use this component in your ASP.NET pages aswell? Maybe the
> component does not support that?
>
>
> --
> Regards,
> Kristofer Gafvert (IIS MVP)
> <a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<font color=purple> > <a style='text-decoration: underline;' href="http://www.ilopia.com</font" target="_blank">www.ilopia.com</font</a>>
>
>
> pruebas_100 wrote:
>
> >
> >
> > "Kristofer Gafvert [MVP]" wrote:
> >
> > > Hello,
> > >
> > > What is happening on line 41 and above in the file index.asp?
> > >
> > > Have you registered whatever you are using CreateObject on?
> > >
> > >
> > > --
> > > Regards,
> > > Kristofer Gafvert (IIS MVP)
> > > <a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<font color=brown> > > > <a style='text-decoration: underline;' href="http://www.ilopia.com</font" target="_blank">www.ilopia.com</font</a>>
> > >
> > >
> > > pruebas_100 wrote:
> > >
> > > > Hi,
> > > > I Have a problem when I run asp and .NET pages at the same time. The
> > > error
> > > > is generated by asp pages
> > > >
> > > > Server object error 'ASP 0177 : 8007000e'
> > > > Server.CreateObject Failed
> > > > index.asp, line 41
> > > > 8007000e
> > > >
> > > > we are running asp and .net at the same time, .NET run fine but when
> I
> > > run
> > > > asp i got the error, asp run fine when I stop the application pool
> for
> > > the
> > > > .NET page the error is back as soon as we run any page that is .NET
> Help
> > > > please.
> > > >
> > >
> > Object is register below is the actual error line
> >
> > Set objProxy = Server.CreateObject("ObjectClient")
> >
> > this code run good when I stop the app pool for the .NET pages, one more
> > info this object is use by asp and .NET.
><!-- ~MESSAGE_AFTER~ --> >> Stay informed about: ASP and .NET running under Windows 2003 server and IIS |
|
| Back to top |
|
 |  |
External

Since: May 28, 2005 Posts: 210
|
(Msg. 6) Posted: Wed Jun 22, 2005 12:08 pm
Post subject: Re: ASP and .NET running under Windows 2003 server and IIS [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
This seems to be a problem with the component, You may want to contact the
developer of this component, since the problem is related to the code, and
not IIS itself.
--
Regards,
Kristofer Gafvert (IIS MVP)
<a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<a style='text-decoration: underline;' href="http://www.ilopia.com" target="_blank">www.ilopia.com</a>
pruebas_100 wrote:
> yes this component is a COM was developed to use with ASP, work very well
> under ASP, but now we are creating new pages that use ASP.NET these new
pages
> uses the same object and we also created a new app pool under IIS for the
> ASP.NET and one for the old code ASP. when we run the ASP.NET pages and
then
> ASP pages the ASP pages generated this error
> Server object error 'ASP 0177 : 8007000e'
> Server.CreateObject Failed
> index.asp, line 42
> 8007000e
> line 42
> Set objProxy = Server.CreateObject("ProxyClient.Client")
>
>
> "Kristofer Gafvert [MVP]" wrote:
>
> > ASP and ASP.NET can coexists.
> >
> > Do you use this component in your ASP.NET pages aswell? Maybe the
> > component does not support that?
> >
> >
> > --
> > Regards,
> > Kristofer Gafvert (IIS MVP)
> > <a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<font color=green> > > <a style='text-decoration: underline;' href="http://www.ilopia.com</font" target="_blank">www.ilopia.com</font</a>>
> >
> >
> > pruebas_100 wrote:
> >
> > >
> > >
> > > "Kristofer Gafvert [MVP]" wrote:
> > >
> > > > Hello,
> > > >
> > > > What is happening on line 41 and above in the file index.asp?
> > > >
> > > > Have you registered whatever you are using CreateObject on?
> > > >
> > > >
> > > > --
> > > > Regards,
> > > > Kristofer Gafvert (IIS MVP)
> > > > <a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<font color=brown> > > > > <a style='text-decoration: underline;' href="http://www.ilopia.com</font" target="_blank">www.ilopia.com</font</a>>
> > > >
> > > >
> > > > pruebas_100 wrote:
> > > >
> > > > > Hi,
> > > > > I Have a problem when I run asp and .NET pages at the same time.
The
> > > > error
> > > > > is generated by asp pages
> > > > >
> > > > > Server object error 'ASP 0177 : 8007000e'
> > > > > Server.CreateObject Failed
> > > > > index.asp, line 41
> > > > > 8007000e
> > > > >
> > > > > we are running asp and .net at the same time, .NET run fine but
when
> > I
> > > > run
> > > > > asp i got the error, asp run fine when I stop the application
pool
> > for
> > > > the
> > > > > .NET page the error is back as soon as we run any page that is
..NET
> > Help
> > > > > please.
> > > > >
> > > >
> > > Object is register below is the actual error line
> > >
> > > Set objProxy = Server.CreateObject("ObjectClient")
> > >
> > > this code run good when I stop the app pool for the .NET pages, one
more
> > > info this object is use by asp and .NET.
> ><!-- ~MESSAGE_AFTER~ --> >> Stay informed about: ASP and .NET running under Windows 2003 server and IIS |
|
| Back to top |
|
 |  |
| Related Topics: | ISAPI dll not running on Windows server 2003 - I use a product - Magic - wich acts as a Web server. The setup process works fine on a Windows 2000 server. And it does not on a Windows 2003 server. So I have 2 similar installations, one is working fine (2000), the other does not. Going further to..
Error running ASP on Windows 2003 Server - I have an old intranet Web app (dll created with VB, uses MS Access db, runs ASP pages) that ran fine on our old NT4 server with IIS. We got a new 2003 Server and it won't run. HTML pages are OK, but ASP pages give me errors like: Error in..
Running IIS on a Windows 2000 Server in Application Mode - Hello, As per the subject, I'm wondering if it's possible to install IIS on a Windows 2000 server that is already running Terminal services in Apllcation mode. If yes, are there any issues with doing so? TIA Best regards, Veets
Slow response on windows server 2003 running multiple web .. - hi.all just a quick question, has anyone experience a slow response on windows 2k3 running multiple web site. I have two site running and they are listening on the same port with different http header, e.g different domain name, but it seems that the....
IIS 6.0 running on Windows 2000 with .NET - Is IIS 6.0 capable of running on Windows 2000 using the .NET framework? Is it known to be deployed and running as a supported architecture with this configuration? (Sorry if this sounds like a dumb question). If you know, please respond. Thanks. |
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
 |
|
|