Italian web service su aruba

AlbertoG

Member
Licensed User
Longtime User
Salve ho appena completato la mia app che interroga un webservice...in locale ha sempre funzionato tutto bene...ma appena messa su aruba ho cominciato a ricevere un errore di logon e di user mancante......qualche idea?
 

KPmaster

Member
Licensed User
Longtime User
Ciao AlbertoG,
stai dando troppe poche informazioni. Dovresti inoltre postare del codice per consentire a qualcuno di aiutarti.
 

AlbertoG

Member
Licensed User
Longtime User
l'errore è questo:
<body> <div id="header"><h1>Server Error in Application "IOQUIRISPARMIO.IT"</h1></div> <div id="server_version"><p>Internet Information Services 7.5</p></div> <div id="content"> <div class="content-container"> <fieldset><legend>Error Summary</legend> <h2>HTTP Error 500.24 - Internal Server Error</h2> <h3>An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.</h3> </fieldset> </div> <div class="content-container"> <fieldset><legend>Detailed Error Information</legend> <div id="details-left"> <table border="0" cellpadding="0" cellspacing="0"> <tr class="alt"><th>Module</th><td>ConfigurationValidationModule</td></tr> <tr><th>Notification</th><td>BeginRequest</td></tr> <tr class="alt"><th>Handler</th><td>WebServiceHandlerFactory-Integrated-4.0</td></tr> <tr><th>Error Code</th><td>0x80070032</td></tr> </table> </div> <div id="details-right"> <table border="0" cellpadding="0" cellspacing="0"> <tr class="alt"><th>Requested URL</th><td>http://www.ioquirisparmio.it:80/domanda.asmx/new_pv</td></tr> <tr><th>Physical Path</th><td>D:\Inetpub\webs\ioquirisparmioit\domanda.asmx\new_pv</td></tr> <tr class="alt"><th>Logon Method</th><td>Not yet determined</td></tr> <tr><th>Logon User</th><td>Not yet determined</td></tr> </table> <div class="clear"></div> </div>
 

AlbertoG

Member
Licensed User
Longtime User
serve il codice web service o dell'app? ad ogni modo non credo ci siano errori perche in locale funziona
 

giannimaione

Well-Known Member
Licensed User
Longtime User
vuoi interagire con un DB remoto?
che tipo di DB?
mysql , mssql , access ?
 

AlbertoG

Member
Licensed User
Longtime User
essendo che aruba non espone i sui db ho fatto la seguente:
l'app interroga un web service remoto che a sua volta effettua delle ricerche sul db e mi risponde in xml.
adesso il mio problema che quando interrogo il web service remoto di da l'errore che ho mostrato prima
 

KPmaster

Member
Licensed User
Longtime User
Leggendo il post con l'errore, mi sembra di capire che non si tratta di credenziali non accettate, ma qualcosa nella configurazione del server.

L'errore infatti è: HTTP Error 500.24 - Internal Server Error - An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode

Ti suggerisco di fare qualche ricerca con questo messaggio d'errore. Io ho trovato questi, ma non so se siano applicabili al tuo caso:
http://www.ilfondodelweb.it/post/An...pply-in-Integrated-managed-pipeline-mode.aspx
http://stackoverflow.com/questions/...d-that-does-not-apply-in-integrated-managed-p
 

coslad

Well-Known Member
Licensed User
Longtime User
ti consiglio di provare da console ad interrogare manualmente il web server , cosi escludi il programma fatto con B4A
 
Top