Problema subiendo servicio web.

25/06/2006 - 12:15 por Carmelo J. Morales Muñoz | Informe spam
¡hola!

Estoy haciendo un servicio web, para accesarlo dede una aplicación windows.
El problema es que parece que no sube bien al servidor.

Le hago botón derecho sobre el proyecto de servicio web y le digo que lo
suba. Voy al servidor y veo que ha creado varios ficheros. En mi aplicación
windows le digo agregar referencia web, le paso la ruta y me devuelve un
error tal que así:

Server error in '/' application
Error al descargar


Error al descargar 'http://www.carmelosoft.com/'.

Error de la solicitud con el mensaje de error:
<html>
<head>
<title>Runtime Error</title>
<style>
body {font-family:"Verdana";font-weight:normal;font-size:
.7em;color:black;}
p {font-family:"Verdana";f
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


¿puede alguien ayudarme?. gracias!
 

Leer las respuestas

#1 Fran Peula Ariza
26/06/2006 - 09:07 | Informe spam
Hola. A ver si nos das algún dato más. ¿Puedes acceder al servicio web (a la
descripción) si pones en el explorador la ruta del mismo? Así descartamos si
el problema está en la clase proxy que se genera cuando agregas la referencia
web o del propio servicio, o, lo que me parece a priori, el propio servicio
web al subirlo al servidor.

Un saludo

Fran Peula Ariza

"Carmelo J. Morales Muñoz" escribió:

¡hola!

Estoy haciendo un servicio web, para accesarlo dede una aplicación windows.
El problema es que parece que no sube bien al servidor.

Le hago botón derecho sobre el proyecto de servicio web y le digo que lo
suba. Voy al servidor y veo que ha creado varios ficheros. En mi aplicación
windows le digo agregar referencia web, le paso la ruta y me devuelve un
error tal que así:

Server error in '/' application
Error al descargar


Error al descargar 'http://www.carmelosoft.com/'.

Error de la solicitud con el mensaje de error:
<html>
<head>
<title>Runtime Error</title>
<style>
body {font-family:"Verdana";font-weight:normal;font-size:
..7em;color:black;}
p {font-family:"Verdana";f
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


¿puede alguien ayudarme?. gracias!



Preguntas similares