Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
2.55/5 (3 votes)
See more:
Hi friends

the following is my web config file in .net4 webservice project

<configuration>

  <system.web>
    <compilation debug="true" targetframework="4.0" />
  </system.web>
  <system.servicemodel>
    <bindings>
      <basichttpbinding>
        <binding name="Basic" />
      </basichttpbinding>
    </bindings>
    <services>
      <service behaviorconfiguration="NewBehavior" name="MyserviceLibrary1.Myservice">
        <endpoint address="http://http://localhost:20437/Service2.svc">
          binding="basicHttpBinding" bindingConfiguration="Basic" name="Basic"
          contract="MyserviceLibrary1.IMyservice" />
        
      </endpoint></service>
    </services>
    <behaviors>
      <servicebehaviors>
        <behavior name="">
          <servicemetadata httpgetenabled="true" />
          <servicedebug includeexceptiondetailinfaults="false" />
        </behavior>
        <behavior name="NewBehavior">
          <servicemetadata httpgetenabled="true" />
        </behavior>
      </servicebehaviors>
    </behaviors>
    <servicehostingenvironment multiplesitebindingsenabled="true" />
  </system.servicemodel>
 <system.webserver>
    <modules runallmanagedmodulesforallrequests="true" />
  </system.webserver>
  
</configuration>

how can solve this error.
Posted
Updated 13-Apr-13 19:54pm
v2

You should first check if you can connect and browse the service.
 
Share this answer
 
Comments
baskaran chellasamy 14-Apr-13 3:00am    
i am new for wcf.so please tell me how to connect and browse the service
In my case I fixed it by setting aspNetCompatibilityEnabled to "false" in web.config
 
Share this answer
 
Add this to your config


HTML
<behaviors>
   <servicebehaviors>
      <behavior name="metadataBehavior">
         <servicemetadata httpgetenabled="true" />
      </behavior>
   </servicebehaviors>
</behaviors>
<services>
   <service name="MyService.MyService" behaviorconfiguration="metadataBehavior">
      <endpoint>
          address=""   <!-- don't put anything here - Cassini will determine address -->
          binding="basicHttpBinding" 
          contract="MyService.IMyService"/>
      <endpoint>
          address="mex" 
          binding="mexHttpBinding" 
          contract="IMetadataExchange"/>
   </endpoint></endpoint></service>
</services>
 
Share this answer
 
set the setting for web = LocalIS...build and run...then its working
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900