Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-09-10 Thread Tony Jose Mampilly
Hi Carter, Sorry for late reply, was stuck up in some other work. Coming to the topic, actually in the Product.wxs I am using the IIS extension to convert to Virtual Directory and it works fine when we choose the Default Web Site. As I told before I am not able to get the reason why it works perfe

Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-09-02 Thread Carter Young
I do have an update for you... I apologize as we have construction going on at my home, and my computer has been down, moved, and reconnected... The Final Step is to convert the Physical Directory referred to in your log to a virtual directory using the IIS extension. See Step 6 here: h

Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-08-20 Thread Tony Jose Mampilly
Hi Carter, Thank you so much for your help. I will try with what you have mentioned and will get back to you. Regards Tony On Wed, Aug 20, 2014 at 9:28 PM, Carter Young wrote: > Replace the code I listed with these two Functions. > > 1. Populate the Listbox with the Collection: > > private

Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-08-20 Thread Carter Young
Replace the code I listed with these two Functions. 1. Populate the Listbox with the Collection: private static ApplicationCollection GetApplications(Site site) { //HttpContext.Current.Trace.Warn("Site ID3: " + site + "/n"); ApplicationCollection appColl = site.Applicati

Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-08-20 Thread Tony Jose Mampilly
Hi Carter, If you know a fix for this issue can you please direct me in right direction, as I am not too good at Wix and custom actions. I came up with this issue when I was building some setups for my project as VS2012 has stopped support for setup and deployment project. Thanks in advance Regar

Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-08-20 Thread Tony Jose Mampilly
Hi Carter, Thank you so much for the update. I will look into this and will try to resolve the issue. Thank you again. Regards Tony Jose On Tue, Aug 19, 2014 at 6:53 PM, Carter Young wrote: > The Problem is Here: > > { > Site site = iisManager.Sites[webSite]; > baseP

Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-08-19 Thread Carter Young
The Problem is Here: { Site site = iisManager.Sites[webSite]; basePath = site.Applications["/"]. VirtualDirectories["/"].PhysicalPath; } session.Log("SetInstallDir: Physical path : {0}", basePath); // Environm

Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-08-19 Thread Tony Jose Mampilly
Hi, Any update on this issue? I am not able to sort it out in any way. Can someone update me on this with some light in right direction. All helps appreciated Thank you Best Regards Tony. On Tue, Aug 5, 2014 at 3:16 PM, Tony Jose Mampilly wrote: > Hi All, > > Anyone have any idea about how t

Re: [WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-08-05 Thread Tony Jose Mampilly
Hi All, Anyone have any idea about how to do this? Please someone help me. All helps appreciated. Thank you Regards Tony On Wed, Jul 30, 2014 at 11:32 AM, Tony Jose Mampilly wrote: > Hi, > > I created a web setup referring to article at > "*http://www.wintellect.com/blogs/jrobbins/web-appli

[WiX-users] Virtual Directory not getting converted to Application in IIS.

2014-07-29 Thread Tony Jose Mampilly
Hi, I created a web setup referring to article at "*http://www.wintellect.com/blogs/jrobbins/web-application-installer-in-wix ". *The web setup works fine when executed from an elevated command prompt. An issue I face is th