Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF reference.cs suddenly not including classes

I have developed a WCF service that has been working fine for a few weeks now. I publish this service to IIS directly from the development server. I have a dev test app that includes this WCF service as a Service Reference in its own project.

My WCF class library also references another project within the Visual Studio solution, and many classes are in the referenced project that are used by the service and calling applications.

Today, after publishing some changes to the service (I did not make ANY changes to the referenced project or its classes), three of about 20 of the classes in the referenced project are no longer in the service reference of my test app. I cannot use them in code any longer, and they are no longer in the Reference.cs. I double checked, the classes in question are still decorated with [DataContract] and the properties are all still decorated with [DataMember] in the service solution.

Everything is building in Visual Studio OK.. I have rebuilt and republished everything, the missing classes are set to compile, I have tried IIS resets, completely deleted the IIS site and did a clean republish, no avail. I have tried deleting the service reference on the test app and getting a clean proxy every time as well. Nothing is working.

I then tried making a dummy class in the referenced project and built it in. Republished the service again, and even this dummy class does not appear in the Reference.cs. I am at a complete loss as to why these classes are not included in the .dll for the referenced project after it is published as it is evident that everything is building OK in Visual Studio.

like image 601
Borophyll Avatar asked Dec 28 '22 09:12

Borophyll


1 Answers

I face such problem. Following steps help you 1. Right click on Service ( In Service Reference Section of Project) 2. In Update Service Reference click on Advanced 3. Do as attached image.enter image description here

like image 153
dotnetstep Avatar answered Jan 05 '23 09:01

dotnetstep