1

I need to create a wsdl without the extras xsd files as external files, but have them all inside a single file. I need this because they will be imported by Delphi's WSDL importer, that is quite out-of-date. Can I do this using svcutil.exe? If it's not possible with svcutil, is there any way to do this? I have seen very old samples, based on WCF 3.5, but I don't know if they still apply.
Tks so much

Pascal
  • 2,944
  • 7
  • 49
  • 78

1 Answers1

1

This seems to be a popular topic this week. There are several articles on how to generate flattened wsdl but this article should get you started. The code in the article will work for WCF 4. For the actual code to create the behavior this (unrelated) blog post is pretty much all this needed.

Sixto Saez
  • 12,610
  • 5
  • 43
  • 51
  • At the blog post, it asks to go download the code sample for this extension from Tomas Restrepo's blog, but there's no link or reference to the code. The guy's blog is huge. To have the code? Tks – Pascal Apr 01 '11 at 14:49
  • Thanks Pascal for pointing that out. I edited the question to add a new link. – Sixto Saez Apr 01 '11 at 14:57
  • Tks once again for your time. – Pascal Apr 01 '11 at 15:42