Hi,
   
  I need to have virtual directory pointing to UNC shared folder inside another 
virtual directory.
  So far I've got xml for parent virtual directory
  Is it possible to create nested virtual directory and how would I point it to 
UNC shared network folder (\\servername\foldername)?
  Thanks
   
   
  <Directory Id="TARGETDIR" Name="SourceDir">
  <Directory Id="ProgramFilesFolder" Name="PFiles">
  <Directory Id="FCTDir" Name="FCT">
  <Directory Id="INSTALLLOCATION" Name="PCCDir" 
LongName="$(var.App.DestinationDir)" />
  </Directory> 
  </Directory>
   
  <Component Id="$(var.Web.Id)Component" 
Guid="9090c6e6-dc05-49e5-bc7c-b8d1122ce167">
  
  <!-- 
  Creating the virtual directory with properties, and web site specified
  further below. (<WebDirProperties>, <Web Site>) 
  -->
  <WebVirtualDir Id="$(var.Web.Id)VirDir" Alias="$(var.Web.Alias)" 
Directory="INSTALLLOCATION"
  WebSite="DefaultWebSite" DirProperties="$(var.Web.Id)Props">
  
  <!-- 
  Creating the web application under this virtual directory with the 
  application pool to use specified further below. (<WebAppPool>)
  -->
  <WebApplication Id="$(var.Web.Id)WebApp" Name="$(var.Web.Alias)" 
WebAppPool="$(var.Web.AppPool.Id)AppPool">
  <!-- 
  HACK: For this web application we don't need any application extensions. More 
specifically we need
  to remove the "config" extension. To accomplish this we specify to only use 
the "aspx" extension.
  -->
  <WebApplicationExtension 
Executable="C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll" 
Extension="aspx" />
  </WebApplication>
  
   
   
   
  </WebVirtualDir>
  
  </Component>
  <Component Id="$(var.Web.AppPool.Id)Component" 
Guid="881ed98e-de76-4980-80a7-8fcf475469b8">
  <WebAppPool Id="$(var.Web.AppPool.Id)AppPool" Name="$(var.Web.AppPool.Name)" 
  RecycleMinutes="0" RecycleRequests="0" 
  IdleTimeout="0" 
  MaxWorkerProcesses="1" 
  Identity="other" User="$(var.Web.AppPool.Id)User" />
  <!-- Identity="localSystem" -->
  </Component>
  
  </Directory>
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to