Bonjour,

j'ai développé un webService (en .NET 4.5 ).
Il fonctionne très bien sur la machine : http://localhost/monApp/WebService.asmx
Si j'essaye depuis une autre machine en pointant l'ip locale du webService, ça ne marche pas : 192.168.1.40/monApp/WebService.asmx

Le fichier Web.config ne comporte rien de special :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
 
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.5"/>
    <httpRuntime/>
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
  </system.web>
</configuration>
Avez-vous une idée du problème ?