Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF Metadata publishing for this service is currently disabled + Content Type error

Tags:

.net

wcf

That Metadata error is what I get when I browse to the service in a browser. I am not consuming it with a client

and Yes.. I added <serviceMetadata httpGetEnabled="True"/>, and I have a mex endpoint defined

but it still won't work..

So I created a barebones service to host on IIS7. Fresh install of Windows 7 and VS2010.

I had followed the instructions of this page to the letter:

http://msdn.microsoft.com/en-us/library/ms733766.aspx

I'm convinced that this has to be some sort of configuration issue with IIS7 but and not sure. Here's my service setup:

EDIT:

I tried accessing the service with svcutil and got the following error:

The remote server returned an error: (415) Cannot process the message because the content type 'application/soap+xml; charset=utf-8' was not the expected type 'text/xml; charset=utf-8'..

it also says: The HTML document does not contain Web service discovery information.

not sure how to resolve it, however..

.svc file:

<%@ServiceHost language="C#" Debug="true" Service="DestructionServices.TacticalNukeSVC"%>

.cs file (located in the C:\Development\HostedDestructionServices\App_Code folder):

using System;
using System.ServiceModel;

namespace DestructionServices
{
    [ServiceContract]
    public interface INukeInterface
    {
        [OperationContract]
        string FireMissile();

        [OperationContract]
        string DirectFire(double x, double y, double z);

        [OperationContract]
        void EnterCoordinates(double x, double y, double z);
    }

    public class TacticalNukeSVC : INukeInterface
    {
        public string FireMissile()
        {
            return "Boom";
        }

        public void EnterCoordinates(double x, double y, double z)
        {
            //bah, who cares about coordinates..
        }

        public string DirectFire(double x, double y, double z)
        {
            return "Fired at: " + x + ", " + y + ", " + z;
        }
    }
}

Web.Config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.serviceModel>
    <services>
      <service name="DestructionServices.Destro" behaviorConfiguration="MetadataBehavior">
        <endpoint address="" binding="wsHttpBinding" contract="DestructionServices.INukeInterface" />
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="MetadataBehavior">
          <serviceDebug includeExceptionDetailInFaults="True" httpHelpPageEnabled="True" />
          <serviceMetadata httpGetEnabled="True"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>

IIS

like image 647
KevinDeus Avatar asked Feb 07 '11 02:02

KevinDeus


2 Answers

Your code and config seems fine - except for one little point:

In your <service> tag, you have defined a name that doesn't seem to correspond to the class that actually implements your service:

<service name="DestructionServices.Destro"  ......>
               ************************** 

but your class is:

namespace DestructionServices
{
    .....
    public class TacticalNukeSVC : INukeInterface
    {

Those names need to match! The name= attribute on the <service> tag in config must be exactly what your service class is called - fully qualified, including namespace - so in your case here, it should be:

<service name="DestructionServices.TacticalNukeSVC" ......>
like image 185
marc_s Avatar answered Nov 08 '22 01:11

marc_s


Previously working WCF with nice~ settings stopped working and shows - error- Metadata publishing for this service is currently disabled.

THOUGH MEX Settings are perfect, still WCF shows above error, reason: The virtual directory created from VS IDE IS NOT Created, though it gives "success" message..

Just Create Virtual Directory in IIS manually , Bingo error is resolved.

Hope it helps!

like image 2
HydTechie Avatar answered Nov 08 '22 01:11

HydTechie