Problems with WyUpdate Update from a ShareSolved

I created a sample project, to test out if your solution would work under my conditions.

My Update files are stored on a File Server ,not webserver.

First it seemed to work, however the time it took to check for Updates took quiet a long time (up to 30 seconds),

then after a few update rounds, the automatic updater seem to be broken and didn't update anymore at all.

(Stuck at "Searching for Updates" 100% forever)

Updating by running wyUpdate.exe directly could find the Updates (still took too much time for just checking) ,but it worked.

Wondering if the file:// protocoll is not supported 100% ?

Here how my download site looks like:

file://servername.domain.com/share/wyUpdate/%file%

Thanks for any Input.

It's possible i did something wrong with the source, since it worked at the beginning.

Here the parts which might affect the process:

--------------------------

public Form1(){ InitalizeComponent(); automaticUpdater1.wyUpdateCommandLine = "-skipinfo"; automaticUpdater1.Translation.AlreadyUpToDate = "Program ist aktuell"; // Works automaticUpdater1.Translation.Checking = "Suche nach Updates..."; // Hangs at Checking}

private void button1_Click(object sender, EventArgs e){ // Force Update if (automaticUpdater1.UpdateStepOn == wyDay.Controls.UpdateStepOn.Nothing) automaticUpdater1.ForceCheckUpdate(true); // Since it hangs it never allows this anyway}

private void button1_ReadyToBeInstalled(object sender, EventArgs e){ // Start Install if possible... automaticUpdater1.InstallNow();}

private void automaticUpdater1_CheckingFailed(object sender, wyDay.Controls.FailArgs e){ // Never comes here...}

private void automaticUpdater1_UpdateAvailable(object sender, EventArgs e){// Never comes here too...}--------------------------

GUID is set.Events are Linked.

Note: when i try the first version, the Updater says immediately (check is fast): "Program is up to date" .As soon as i publish an Update it doesn't work anymore.

I'm not sure if i understood correctly how to include the file "client.wyc" in Updates.But i guess it should be like that:

If i make a new Update 1.18, i should include client.wyc from 1.17 in that file pool.

Or did i misunderstood that?

I'll check into this, I'll get back to you.

Thanks,

Note the source code was typed by hand, this line here is wrong:

private void button1_ReadyToBeInstalled(object sender, EventArgs e)

it actually should say:

private void automaticUpdater1_ReadyToBeInstalled(object sender, EventArgs e)

If you want i can submit you the full source code (Visual Studio 2010 Project).

Sure, submit it to support@wyday.com

This is a problem with wyUpdate. We've fixed this internally and it will be included with the next version of wyBuild. We're shooting for the end of this week.

Thanks for spotting this.

wyBuild 2.6.12 is now out -- these problems have been fixed.