Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member
0 Kudos

If you have built a solution with the SAP NetWeaver Gateway productivity accelerator for Microsoft and you experience the following runtime error

“A missing or empty content type header was found when trying to read a message. The content type header is required.”

then this might be related to the Windows Communication Foundation (WCF) version. I have seen this so far only with projects generated in Microsoft Visual Studio 2012. When looking at the HTTP trace I see that Gateway returns a success message and still an exception occurs.

Try the following: Open your project in Visual Studio and open the Package Manager Console (from the menu Tools --> Library Package manager --> Package Manager Console):

Note: If you do not see the menu entry then you have to install the NuGet Package Manager.

The Package Manager Console should now open and here you need to run the following command:

Install-Package Microsoft.Data.Services -Version 5.5.0

This will add the WCF 5.5 libraries to your project. Keep in mind that you will have to do this for each new project.

Now give a try again. This should resolve the “A missing or empty content type header…” exception.

Labels in this area