In your Bundle.wxa, do you have your <Update Location="" /> in place?

I wouldn't have copied the generated files. Easiest way to do a one off 
WixStdBA mod that I found was to use 

    <!-- The following props are needed to build the bundle based off of a 
local Wix build -->
    <WixToolPath>Z:\$(VersionMajorMinor)\wix3\build\ship\x86\</WixToolPath>
    <WixTargetsPath>$(WixToolPath)Wix.targets</WixTargetsPath>
    <WixTasksPath>$(WixToolPath)wixtasks.dll</WixTasksPath>
    <WixExtDir>$(WixToolPath)</WixExtDir>

In the bundle's wixproj and point it at your local build.  If you can't get the 
entire build functioning (it should just be a msbuild from the command prompt), 
then you can also try

    <BootstrapperApplicationRef 
Id="WixStandardBootstrapperApplication.RtfLicense">
      <bal:WixStandardBootstrapperApplication   LicenseFile="License 
Agreement.rtf" LogoFile="logo.png" SuppressOptionsUI="yes" 
ThemeFile="RtfTheme.xml"  />
      <Payload SourceFile="Z:\x.y\wix\build\ship\x86\WixStdBA.dll" />
    </BootstrapperApplicationRef>

In your Bundle.wxs.

Note, you will need to provide the theme file from my RtfLicense to see the UX 
changes.

-----Original Message-----
From: Richard Ulrich [mailto:ricu...@gmail.com] 
Sent: Friday, October 31, 2014 7:51 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Auto-Updater

Hi Jacob,

thanks for the links.

So, i cloned your repo. After a lot of fiddling, I was able to compile 
wixstdba. Then I copied the generated files to the installation folder of the 
3.9 RC:
 * BootstrapperCore.dll
 * ManageBundleRunner.dll
 * WixStdBA.dll

I wanted to compile more, but there are so many error messages, that I figured 
this would be the minimum required.

Next, I generated a new bundle from my application.
When I run it, it still doesn't fetch the feed from the webserver.

What am I missing?

Rgds
Richard


Am Donnerstag, den 30.10.2014, 15:14 +0000 schrieb Hoover, Jacob:
> Only the engine changes were done, the BA still needs to respond 
> appropriately. As of now, WixStdBA doesn't implement it, but I have a 
> fork/branch with the needed changes to WixStdBA that should do what you are 
> looking for.
> 
> https://github.com/jchoover/wix3/tree/develop-3.9-WixStdBA
> 
> 
> 
> -----Original Message-----
> From: Richard Ulrich [mailto:ricu...@gmail.com]
> Sent: Thursday, October 30, 2014 9:33 AM
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Auto-Updater
> 
> I was talking about Wixfeat4190 github pull request #29 which was merged June 
> 12th. That's after the release of 3.8.
> 
> My understanding was that with this change, the standard bootstrapper would 
> check a feed for updates, and ask if it should download. It could be called 
> periodically or on request from the application.
> 
> I placed an XML file with the same format as described in
> https://wixextba.codeplex.com/discussions/435763
> and placed the URL in WiX/Bundle/Update/Location.
> But I verified with wireshark, that my Bootstrapper doesn't fetch it.
> 
> So, am I mistaken that the 3.9 Bootstrapper should fetch it without me having 
> to provide a custom dll?
> What led me to believe it was no longer necessary was this conversation:
> https://www.mail-archive.com/wix-users@lists.sourceforge.net/msg62199.
> html
> 
> Rgds
> Richard
> 
> Am Donnerstag, den 30.10.2014, 05:41 -0700 schrieb Phill Hogland:
> > The video provides information about the plan to release wix 3.9 on 
> > halloween weekend (if there are no significant issues raised).
> > 
> > I assumed you are talking about the work that Jacob did to implement 
> > the download behavior, which has been in the wix source Setup\WixBA 
> > UpdateViewModel, since at least 3.7, as behavior of Burn available for
> > WixStdBA users.   There are threads in this archive that talk about using a
> > DLL that Jacob created which allows an application to check for the update. 
> > 
> > 
> > 
> > 
> > --
> > View this message in context: 
> > http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Re-Aut
> > o- Updater-tp7597527p7597588.html Sent from the wix-users mailing 
> > list archive at Nabble.com.
> > 
> > --------------------------------------------------------------------
> > --
> > -------- _______________________________________________
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 
> 
> ----------------------------------------------------------------------
> -------- _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> ----------------------------------------------------------------------
> -------- _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users



------------------------------------------------------------------------------
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

------------------------------------------------------------------------------
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to