51 messaggi dal 08 marzo 2002
Salve,
ho mi trovo difronte a questo problema....
Sto cercando di testare le prime aplicazioni Asp.net la quale funge benissimo in locale settando da IIS come "applicazione".

In hosting (aruba) l'ho scaricato ma non funge!!!!! mi genera un'erroe relativo all'applicazione!

Come fare per risolvere questa problemativa???

Grazie

Horus76
Prova a chiedere direttamente ai tizi di Aruba nel forum collegato all'assistenza tecnica.

http://forum.aruba.it/

Ciao, Ricky.

Ing. Riccardo Golia
Microsoft MVP ASP.NET/IIS
ASPItalia.com Content Manager
http://blogs.aspitalia.com/rickyvr
http://ricky.aspitalia.com
http://www.riccardogolia.it
51 messaggi dal 08 marzo 2002
Grazie,,,,ancora...

nella mi "ingnoranza" pensavo che la cosa fusse gestibile tramite il webConfig

grazie e RISALUTONI

Horus76
Io ho dato per scontato che fosse un problema di deployment. Se si tratta di quello, chiede lumi all'assistenza di Aruba, se presumi che si tratti di altro, lascia scritta qualche informazione un po' più specifica del problema.

Ciao, Ricky.

Ing. Riccardo Golia
Microsoft MVP ASP.NET/IIS
ASPItalia.com Content Manager
http://blogs.aspitalia.com/rickyvr
http://ricky.aspitalia.com
http://www.riccardogolia.it
51 messaggi dal 08 marzo 2002
Si.... girando un pò nel forum ho capito che l'unica application è la root..
quindi tutte el sottodirectory dovrebbero essere applicazioni sbaglio?

Ti specifico l'errore:
_____________________________________

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>

____________________________________________

Grazie Ancora come sempre!

Horus76
Hai il customError impostato, non posso sapere nulla circa l'errore se non lo disattivi. Nel web.config sul server disattiva la modalità di gestione degli errori come vedi sotto:

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


e poi dimmi che errore esattamente ti dà.

Ciao, Ricky.

Ing. Riccardo Golia
Microsoft MVP ASP.NET/IIS
ASPItalia.com Content Manager
http://blogs.aspitalia.com/rickyvr
http://ricky.aspitalia.com
http://www.riccardogolia.it
51 messaggi dal 08 marzo 2002
uhmmmm..........
a me con i cambiamenti che mi hai suggerito mi da questo:




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




?
Horus76
Come è possibile?
Mi riporti l'estratto del tuo web.config, per favore?

Ciao, Ricky.

Ing. Riccardo Golia
Microsoft MVP ASP.NET/IIS
ASPItalia.com Content Manager
http://blogs.aspitalia.com/rickyvr
http://ricky.aspitalia.com
http://www.riccardogolia.it

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.