We have a few MSI packages (generated by WIX) that install WCF services. Most of these services need net.tcp for their endpoint bindings.

I'd like to make our deployment life easier and automate the process of adding net.tcp. I already know the WixIisExtension.dll and make use of its useful functions (create web site, virt. directory, etc.).

Can I use the WixIisExtension to enable the net.tcp protocol? If not, how can I achieve that?

link|improve this question

25% accept rate
In the official Windows Installer XML Toolset 3.5 Documentation I could not find any topic that describes how to do that. I would have assumed that should be possible using the IIS elements (like WebDirProperties, WebVirtualDir or WebApplication) but there is nothing that could lead me into the right direction. – DotNetter Jun 30 '10 at 12:21
feedback

2 Answers

You may take a look at this article on MSDN. There's a section at the end which illustrates how to use the managed API to achieve configure a WAS enabled service. I am not familiar with Wix but you could probably use and plug this code into some custom deployment step.

link|improve this answer
feedback

This can't be done using the standard WiXIIsExtension, as far as I know. Thus, the only option you have is a custom action.

You can also find this thread interesting - it gives a hint how to achieve the similar thing in MSBuild script, but you should be able to translate it to custom action easily.

Good luck!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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