WCF How to enable metadata?

前端 未结 6 1150
[愿得一人]
[愿得一人] 2021-02-19 18:13

I am trying to get my svc file working under IIS. In my project, when I press F5 I got the svc working. So I know everything is okay, right? Except for IIS.

I am working

相关标签:
6条回答
  • 2021-02-19 18:26

    Ensure that your service namespace, and service class names correspond to the App.config file.

     <system.serviceModel>
      <services>
       <service name="WcfCustomLibrary.Service1">
        <host>
          <baseAddresses>
            <add baseAddress = "http://localhost:8733/Design_Time_Addresses/WcfServiceLibrary/Service1/" />
          </baseAddresses>
        </host>
       </service>
      </services>
     </system.serviceModel>
    
    
    namespace WcfCustomLibrary
    {
    // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in both code and config file together.
    public class Service1 : IService1
    {
    
    0 讨论(0)
  • 2021-02-19 18:38

    Just check the service name in Service.svc file

    <ServiceHost Language="C#" Debug="true" Service="SvcCalculator.**Calculator**"
               CodeBehind="**Calculator.svc.cs**" %>
    

    Hope it'll work.

    0 讨论(0)
  • 2021-02-19 18:41

    First, remove the [DataContract] attribute in Client.

    Then, recompile and make sure that you have the WcfServiceLibrary.dll in the /bin directory for your virtual directory.

    Your config should use this endpoint for metadataexchange:

    <endpoint address="mex" 
        binding="mexHttpBinding" 
        contract="IMetadataExchange"/>
    
    0 讨论(0)
  • 2021-02-19 18:41

    You reference the data contract as the implementation of the service. That's invalid.

    [DataContract]
    public class Client : ICarePlanActions
    {
    
    <service behaviorConfiguration="CarePlanService.Service1Behavior"
          name="WcfServiceLibrary.Client">
    

    Change this to reference the implementation of your service! What does the implementation of your service look like?

    Maybe you should just remove the DataContract attribute from the Client class. Also this is not your "Client", it is the implementation of the service.

    0 讨论(0)
  • 2021-02-19 18:43

    SOLUTION

    I didn't get the service working under IIS. First I manually create a virtual directory and pointed to the directiry where the svc is located. This didn't work. I don't know why.

    Then I went to Visual Studio and changed the server setting (Right mouse on the project, properties, tab Web, click Use local IIS Web Server and click Create Virtual Directory. When I did this, it worked under IIS with the code above.

    0 讨论(0)
  • 2021-02-19 18:43
    1. Run "\%windir%\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe" -i

    2. Remove Virtual Directory and create it again.

    0 讨论(0)
提交回复
热议问题