installation - WiX Web Installer With Proxy Server -


i'm writing web installer using wix technology. using following code i've created , tested simple installer downloads msi package server:

private void onresolvesource(object sender, resolvesourceeventargs e)     {         try         {                             if (!file.exists(e.localsource) && !string.isnullorempty(e.downloadsource))                 e.result = result.download;         }         catch (system.exception ex)         {             messagebox.show("exception " + ex.message);          }     }  <msipackage compressed="no" downloadurl="https://some/dummyinstaller.msi" name="dummyinstaller.msi"   sourcefile="..\dummyinstaller\bin\debug\dummyinstaller.msi" id="dummyinstallationpackageid" cache="no"  >     <payload sourcefile="..\dummyinstaller\bin\debug\cab1.cab" downloadurl="https://dummydomain.com/cab1.cab" id="cab1.cab" compressed="no" />   </msipackage> 

however, when run setup under proxy server asks user enter credentials before accessing internet, web installer fails download msis. though installer works in following 2 cases:

  1. if proxy server using computer default credentials
  2. or, if go ie , enter valid credentials when asks me to, before accessing website.

question: wix framework allows developers make proxy aware installers, installer ask credentials required proxy server?

note: below error message found logs when installer fails: error 0x80070005: failed attempt download url...


Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -