Assemblies versioning question

  • Thread starter Thread starter lokanath palle
  • Start date Start date
L

lokanath palle

Hi,

i have an asp.net application which i have deployed
over the internet
now 10 clients are using my application
for 5 clients i need to give access to PatientsASSEMBLY VERSION 1.0 AND FOR REST I NEED TO GIVE ACCESS TO ASSEMBLY VERSION 1.1
HOW TO DO THIS .
THANKS IN ADVANCE
 
Hello,
i have an asp.net application which i have deployed
over the internet now 10 clients are using my application
for 5 clients i need to give access to Patients ASSEMBLY VERSION 1.0

Without further details it's difficult to give the best solution, but two
things come into mind.

Firstly, your application probably has some kind of logon function.
Depending on the user (or maybe their IP addresses?), manually load the
correct assembly version.

However, this can lead to trouble, and thus it would probably be a better
option to upgrade all users to the 1.1 version of your assembly. What is the
reason why those five need to use the older version?

Secondly, you could also pass in some "compatibility flag" to your 1.1
version assembly to so that it could then execute certain things the same
way as 1.0 version did. This is probably the route I would go.

Hope this helps!

--
Regards,

Mr. Jani Järvinen
C# MVP
Vantaa, Finland
(e-mail address removed)
http://www.saunalahti.fi/janij/
 
Back
Top