Good afternoon,
The problem:
I'm trying to use the visual studio 2010 wizard to add a schema for a WCF service I created (for BizTalk). I'm replacing an existing definition in the same project. I'm getting the following error:
Error consuming WCF service metadata.
Cannot proceed due to type name clash.
The name "IDiscountsWcfService_InsertDiscounts_InputMessage" already exists in the namespace.
What I've tried:
- I have a unit test that consumes the service and indicates that the service is deployed and working.
- I've removed the old wizard generated files, recompiled, exited the IDE, and reGAC'ed the assembly without the old code.
- I renamed the service method, etc.
- I searched the entire solution for an instances of the wizard generated type and found nothing.
Any suggestions would be appreciated.
Here's an excerpt from the wsdl for the service:
</wsdl:types>
<wsdl:message name="IDiscountsWcfService_InsertDiscounts_InputMessage">
<wsdl:part name="parameters" element="tns:InsertDiscounts" />
</wsdl:message>
<wsdl:message name="IDiscountsWcfService_InsertDiscounts_OutputMessage">
<wsdl:part name="parameters" element="tns:InsertDiscountsResponse" />
</wsdl:message>
<wsdl:portType name="IDiscountsWcfService">
<wsdl:operation name="InsertDiscounts">
<wsdl:input wsaw:Action="http://www.xxx.com/services/2012/10/Discounts/IDiscountsWcfService/InsertDiscounts" message="tns:IDiscountsWcfService_InsertDiscounts_InputMessage" />
<wsdl:output wsaw:Action="http://www.xxx.com/services/2012/10/Discounts/IDiscountsWcfService/InsertDiscountsResponse" message="tns:IDiscountsWcfService_InsertDiscounts_OutputMessage" />
</wsdl:operation>
</wsdl:portType>
<wsdl:service name="DiscountsWcfService">
<wsdl:port name="BasicHttpBinding_IDiscountsWcfService" binding="i0:BasicHttpBinding_IDiscountsWcfService">
<soap:address location="http://localhost/DiscountsWcfService/DiscountsWcfService.svc" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>