Error a la hora de instalar un webpart

24/03/2005 - 04:15 por Jorge Ricardo Martin Hernandez | Informe spam
Hola a todos,

Estoy tratando de instalar un webpart sencillo (un Hola Mundo) y cuando le
cambio el nivel de seguridad que lleva en el webconfig, que todavia no he
importado el webpart, me da un error de configuracion cuando refresco la
pagina principal del sharepoint. Tengo dos lineas de nivel de seguridad en el
webconfig tengo un WSS_Medium y un WSS_Minimal, cuando cambio cualquiera de
los dos, aun sin haber importado el webpart, el sharepoint me da un error de
esta forma

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.

Details: To enable the details of this specific error message to be viewable
on the local server machine, 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 "RemoteOnly". To enable the details to be viewable on remote
machines, please set "mode" to "Off".


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

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</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="On" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

Pero si no cambio nada de esto y trato de importar directamente el webpart
este es el error que me da el sharepoint:

No se puede mostrar o importar un elemento Web o un control de formularios
Web en esta página de elementos Web, por no estar registrado como seguro en
este sitio.
 

Leer las respuestas

#1 Gustavo
24/03/2005 - 09:01 | Informe spam
Hola Jorge,
Prueba con "<trust level="Full" originUrl="" />".
Suerte,
Gustavo
http://www.gavd.net/servers/



"Jorge Ricardo Martin Hernandez" wrote:

Hola a todos,

Estoy tratando de instalar un webpart sencillo (un Hola Mundo) y cuando le
cambio el nivel de seguridad que lleva en el webconfig, que todavia no he
importado el webpart, me da un error de configuracion cuando refresco la
pagina principal del sharepoint. Tengo dos lineas de nivel de seguridad en el
webconfig tengo un WSS_Medium y un WSS_Minimal, cuando cambio cualquiera de
los dos, aun sin haber importado el webpart, el sharepoint me da un error de
esta forma

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.

Details: To enable the details of this specific error message to be viewable
on the local server machine, 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 "RemoteOnly". To enable the details to be viewable on remote
machines, please set "mode" to "Off".


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

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</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="On" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

Pero si no cambio nada de esto y trato de importar directamente el webpart
este es el error que me da el sharepoint:

No se puede mostrar o importar un elemento Web o un control de formularios
Web en esta página de elementos Web, por no estar registrado como seguro en
este sitio.

Preguntas similares