A
AGP
I am implementing a very simple check routine that goes to my website and
reads an XML file.
The XML file basically contains all info for my apps and their current
status. All I need to do is just read
the version node and compare it to the current node and then advise the user
to visit the website
for the new version. Ive looked at ClickOnce and other methods but I would
like to implement
something simpler. Anyway, has anyone done this before? My XML will look
something like this:
<?xml version="1.0" encoding="utf-8"?>
<Apps>
<App id="0001" title="BigApp">
<!--This is a comment-->
<Name>Big Application</Name>
<LatestVersion>1.0.0.0</LatestVersion>
<DownloadURL>http://www.mysite/files/MyApp100.exe</DownloadURL>
<News>
Version 1.0.0
New feature
Version 0.90
-----------
* Original release.
</News>
</App>
</Apps>
Any advice or recommendations as to how to setup my XML file? I alreday have
the code that goes to the
remote server and reads the XML file. I guess im just asking if this is the
way to go with my simple checker.
AGP
reads an XML file.
The XML file basically contains all info for my apps and their current
status. All I need to do is just read
the version node and compare it to the current node and then advise the user
to visit the website
for the new version. Ive looked at ClickOnce and other methods but I would
like to implement
something simpler. Anyway, has anyone done this before? My XML will look
something like this:
<?xml version="1.0" encoding="utf-8"?>
<Apps>
<App id="0001" title="BigApp">
<!--This is a comment-->
<Name>Big Application</Name>
<LatestVersion>1.0.0.0</LatestVersion>
<DownloadURL>http://www.mysite/files/MyApp100.exe</DownloadURL>
<News>
Version 1.0.0
New feature
Version 0.90
-----------
* Original release.
</News>
</App>
</Apps>
Any advice or recommendations as to how to setup my XML file? I alreday have
the code that goes to the
remote server and reads the XML file. I guess im just asking if this is the
way to go with my simple checker.
AGP