Hi wat is the way to do it if I want to do it for a WCF web service?
Main Topics
Browse All TopicsI have an urgent requirement to create the WSDL file for Web service.I do not have to make the web service functional, just write the interfaces and create a WSDL.
Is there any tool for doing this?
What is the best way to go about it?Any suggestions please.It is urgent.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
create a .svc file by default it will create the one class and one interface file
we call the interface as Service Contract and class file as Service file
in the interface u have to create the function with the attribute <OperationContract()>
and whatever objects u want to expose from the service which suppose to be either message contract or data contract
follow the config file code block specified
in that u have to specify the service and client level configs.
thats it
browse the .svc file
and make the wsdl using svcutil.exe
Business Accounts
Answer for Membership
by: sateesh_kodatiPosted on 2009-11-05 at 19:35:58ID: 25756421
create a asmx file in u r ASP.Net website application and in the code behind file u start writing the webmethods
it is very simple
and u just browse that asmx file to get the WSDL and u just save it the file.