¿Cómo saber qué versión de ASP corre un servidor y porqué no ejecuta una aplicación ASP.NET?

01/04/2006 - 15:58 por Fabián A. Juárez Martínez | Informe spam
De hace unos días a la fecha, he tenido problemas con mis proveedores de
alojamiento debido a un problema que tiene un cliente al montar el sitio
en el espacio que le corresponde.

Este sitio aparentemente cuenta con ASP y ASP.NET pero a la hora de
subir el sitio (que en la estación de trabajo funciona perfecto)
simplemente no funciona.

He buscado lo suficiente para ver qué pudiera estar causando la falla
pero no hay respuesta alguna.

El detalle radica en que si yo subo una página con extensión .asp, esta
se ejecuta sin problemas. Pero si mi pretensión es un archivo .aspx
simplemente despliega mensajes como:


Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>


Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>



(Esto ocurre en http://www.altermarketing.com.mx/pruebita)

Ahora bien, si accedo al sitio donde se encuentra la aplicación en
cuestión, el despliegue es el siguiente:

Server Error in '/' Application.
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

Source Error:

Line 18: during development.
Line 19: -->
Line 20: <roleManager enabled="true"/>
Line 21: <compilation debug="true">
Line 22: <assemblies>


Source File: C:\websites\altermarketing.com.mx\httpdocs\carteleras\web.config Line: 20


Show Additional Configuration Errors:

It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS. (C:\websites\altermarketing.com.mx\httpdocs\carteleras\web.config line 31)



Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42



Ahora bien, he subido un archivo netamente html pero con extensión .asp
y este lo ejecuta sin problema alguno... (Esto en
http://www.altermarketing.com.mx/pruebita

Llevo varios días buscando qué pueda estar pasando y tras quebrarme la
cabeza es fecha que no hallo respuesta alguna. ¿Alguien podría ayudarme?
Cualquier sugerencia es bienvenida.

De antemano gracias.
*Sr. Fabián Alejandro Juárez Martínez*
Intel Pentium 4 1.7 GHz
Abit SG-71
512 MB DDR
Microsoft Windows XP Home Edition, Service Pack 2

*FidoNet: *2:341/201.5

¡Usando Mozilla Thunderbird 1.0.2!
 

Leer las respuestas

#1 Matías Iacono
04/04/2006 - 19:28 | Informe spam
Aparentemente tienes instalado ASP.net 2.0 en el servidor, lo que no hace
que no puedas ejecutar ASP.net 1.x

Posiblemente el problema radique en donde coloques el web.config y el DLL
compilado de tu aplicacion.

Veo que hay un path largo en el error. Posiblemente no estes colocando el
web.config en el lugar correcto, o e ntodo caso, el DLL compilado con tu
aplicacion tampoco lo estes colocando correctamente.

Ten en cuenta que generalmente los servidores de pago poseen directorios
especificos para colocar cada una de las cosas, y no se puede poner
simplemente en un directorio comun y corriente.

Llegado el caso, sería bueno que consultes con el proveedor del sitio web
para que te de mayor informacion.

Matías Iacono
Microsoft MVP ASP/ASP.net
DCE3 v.2003 - DCE2 v.2005
Coordinador de evento Comunidad MSDN Bolivia
""Fabián A. Juárez Martínez"" escribió en el
mensaje news:%23pX$
De hace unos días a la fecha, he tenido problemas con mis proveedores de
alojamiento debido a un problema que tiene un cliente al montar el sitio
en el espacio que le corresponde.

Este sitio aparentemente cuenta con ASP y ASP.NET pero a la hora de subir
el sitio (que en la estación de trabajo funciona perfecto) simplemente no
funciona.

He buscado lo suficiente para ver qué pudiera estar causando la falla pero
no hay respuesta alguna.

El detalle radica en que si yo subo una página con extensión .asp, esta se
ejecuta sin problemas. Pero si mi pretensión es un archivo .aspx
simplemente despliega mensajes como:

Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current
custom error settings for this application prevent the details of the
application error from being viewed remotely (for security reasons). It
could, however, be viewed by browsers running on the local server
machine.

Details: To enable the details of this specific error message to be
viewable on remote machines, please create a <customErrors> tag within a
"web.config" configuration file located in the root directory of the
current web application. This <customErrors> tag should then have its
"mode" attribute set to "Off".

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>


Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the
application's <customErrors> configuration tag to point to a custom error
page URL.

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"
defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>



(Esto ocurre en http://www.altermarketing.com.mx/pruebita)

Ahora bien, si accedo al sitio donde se encuentra la aplicación en
cuestión, el despliegue es el siguiente:
Server Error in '/' Application.
Configuration Error
Description: An error occurred during the processing of a configuration
file required to service this request. Please review the specific error
details below and modify your configuration file appropriately.

Parser Error Message: It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This
error can be caused by a virtual directory not being configured as an
application in IIS.

Source Error:

Line 18: during development.
Line 19: -->
Line 20: <roleManager enabled="true"/>
Line 21: <compilation debug="true">
Line 22: <assemblies>


Source File:
C:\websites\altermarketing.com.mx\httpdocs\carteleras\web.config Line:
20


Show Additional Configuration Errors:

It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This
error can be caused by a virtual directory not being configured as an
application in IIS.
(C:\websites\altermarketing.com.mx\httpdocs\carteleras\web.config line
31)

Version Information: Microsoft .NET Framework
Version:2.0.50727.42; ASP.NET Version:2.0.50727.42



Ahora bien, he subido un archivo netamente html pero con extensión .asp y
este lo ejecuta sin problema alguno... (Esto en
http://www.altermarketing.com.mx/pruebita

Llevo varios días buscando qué pueda estar pasando y tras quebrarme la
cabeza es fecha que no hallo respuesta alguna. ¿Alguien podría ayudarme?
Cualquier sugerencia es bienvenida.

De antemano gracias.
*Sr. Fabián Alejandro Juárez Martínez*
Intel Pentium 4 1.7 GHz
Abit SG-71
512 MB DDR
Microsoft Windows XP Home Edition, Service Pack 2

*FidoNet: *2:341/201.5

¡Usando Mozilla Thunderbird 1.0.2!

Preguntas similares