save data

  • Thread starter Thread starter Dino L.
  • Start date Start date
D

Dino L.

Hi,
I need to give my application to diferent clients. I wanna put their
names on app.
I was thinking about XML data, where I can have data (as connection
parameters, pic folders, client name)?
Is this good?!? Can I protect that file?
 
Hi,

You can use the application configuration file (app.config AKA
yourapp.exe.config) - it's an XML file, it's the recommended approach but it
is not protected.
What you can probably do for the protection purposes is to store digital
signatures for each of the stored parameters.
 
Dmitriy said:
Hi,

You can use the application configuration file (app.config AKA
yourapp.exe.config) - it's an XML file, it's the recommended approach
but it is not protected.
What you can probably do for the protection purposes is to store digital
signatures for each of the stored parameters.
Is there any tutorial or example on the internet?
 
Hi,

A way of doing it, not the best one, and not workableif you have a large
client base is setting the name as a constant in some class in your project,
I follow this approach with one application I have that I customize for each
client, not only I include the client name but the logo too.
It does work for me cause I have to customize the application for each
client.

Cheers,
 
Ignacio said:
Hi,

A way of doing it, not the best one, and not workableif you have a large
client base is setting the name as a constant in some class in your project,
I follow this approach with one application I have that I customize for each
client, not only I include the client name but the logo too.
It does work for me cause I have to customize the application for each
client.

Cheers,

I need approach like that, I dont have a large number of clients.

How did you do that? XML? can I see example
 
Back
Top