Freshblood
Freshblood

Reputation: 6441

Creating web service by existing WSDL schema

Unfortunately, I am new to web services. I have a WSDL schema, which I have to provide as a service. So how can I do this?

Can someone please tell me instructions step by step?

Upvotes: 2

Views: 15395

Answers (1)

scartag
scartag

Reputation: 17680

I'm not sure why you would want to create a web service based on an existing WSDL schema (i'm assuming you mean WSDL and not WDSL).

You could use the WSDL.exe tool that ships with the SDK to reverse engineer the WSDL file to ASMX web services (older )

You can find more details here

However it is advised to use WCF for newer projects, you can then use svcutil.exe to reverse engineer your WSDL file instead. find a description in a question answered How to use a WSDL file to create a WCF service (not make a call)

Hope this helps

Upvotes: 2

Related Questions