Coder1409
Coder1409

Reputation: 498

Create similar WSDL file to existing WSDL file

I have a WSDL file for a Web service created in java

I need to create an identical WSDL file in C#(asmx or WCF doesn't matter) .NET where the only existing web method implementation would be changed but keep the same signature though.

I always have different WSDL files which won't work for the client

EDIT I ended up using WSCF(web service contract first) it seems the only solution out there the resulting WSDL with some manual minor modifications seems quite similar to the original file.

Upvotes: 0

Views: 339

Answers (1)

ErnieL
ErnieL

Reputation: 5801

Your approach is a little off. I interpret your question as

How to use a WSDL file to create a WCF service?

Upvotes: 1

Related Questions