How to update .net components in an XML Service N-Tier app?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I choose windows application mode. Business Layer are written as
components .And Use Web Service to contact with database.
My question is:When there are new versions of Business components on web
server, how can I update the Business components in the clients' machine?
Just use a method like downloading files?
 
Nice,

You might want to take a look at ClickOnce if you are using .NET 2.0.
If you aren't, then you might want to look at the application updater block
on the microsoft website.

Hope this helps.
 
Thank you very much.
But if I don't want to use application updater block and want to write
such function myself, could you give me some instructions?


Nicholas Paldino said:
Nice,

You might want to take a look at ClickOnce if you are using .NET 2.0.
If you aren't, then you might want to look at the application updater block
on the microsoft website.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Nice said:
I choose windows application mode. Business Layer are written as
components .And Use Web Service to contact with database.
My question is:When there are new versions of Business components on
web
server, how can I update the Business components in the clients' machine?
Just use a method like downloading files?
 
up



Nice said:
Thank you very much.
But if I don't want to use application updater block and want to write
such function myself, could you give me some instructions?


Nicholas Paldino said:
Nice,

You might want to take a look at ClickOnce if you are using .NET 2.0.
If you aren't, then you might want to look at the application updater block
on the microsoft website.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Nice said:
I choose windows application mode. Business Layer are written as
components .And Use Web Service to contact with database.
My question is:When there are new versions of Business components on
web
server, how can I update the Business components in the clients' machine?
Just use a method like downloading files?
 
Back
Top