I have a WSDL that I need to generate a ServiceContract (OperationContract, DataContract)...

I have found a way to do it for ASMX WebServices but can't seem to find how to do it in WCF.

I have tried running

svcutil AuthPartnerWSDL.wsdl  /i /messagecontract /tcv:version35

but the resulting interface doesn't deserialize the call coming in so all the request parameters to the service implementation are null

link|improve this question

74% accept rate
Small correction of terminology: what you're referring to as "webservices" are "ASMX Web Services", sometimes known as "ASP.NET Web Services". WCF services are web services if they use SOAP or REST. – John Saunders Jul 24 '09 at 0:45
thanks, fixed the question – Keivan Jul 25 '09 at 6:43
feedback

2 Answers

up vote 3 down vote accepted

Contract first tool for WCF

http://wscfblue.codeplex.com/

link|improve this answer
I dont understand the downvote, would you care to explain? – Keivan Jul 25 '09 at 6:47
Maybe the downvoter didn't realize this is your question. – John Saunders Jul 25 '09 at 9:26
even then, why would it be down voted? isn't it a valid answer? – Keivan Jul 25 '09 at 15:50
It's valid, but if the answer was from someone else, it would be a fairly bad answer. It's not considereed good to just throw in a link. BTW, you might edit this answer to say a little more about this tool: why is it useful? How does it answer your question, etc. – John Saunders Jul 25 '09 at 16:01
feedback

Make sure you have the most updated WSDL that matches the current service definition.

link|improve this answer
both the client proxy and the ServiceContract are generated from the same wsdl file. – Keivan Jul 23 '09 at 20:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.