bryggya
02-11-2008, 03:11 PM
Question regarding logic that has built in data dependencies: For example, explict user definitions that are enumerated with integers (userid = 1 etc). Another dependency maps constants that are passed values from an initialization file. (Campus1_Student_Home_Directory=server1.oncampus.local - at runtime)
The user enumeration limits the number of fields to 9, would like to be able to make this unlimited based on the number of elements imported into active directory.
The constants are initialized then processed when student data is being imported into active directory. Right now they're processed within a select statement, should I just populate an array from the ini file and process every parameter and value?
Removing the dependencies will make the service more flexible to any data changes or server redeployments, as the current version limits assignments to current campuses. No new campuses can be added - or removed.
Thanks for any input
The user enumeration limits the number of fields to 9, would like to be able to make this unlimited based on the number of elements imported into active directory.
The constants are initialized then processed when student data is being imported into active directory. Right now they're processed within a select statement, should I just populate an array from the ini file and process every parameter and value?
Removing the dependencies will make the service more flexible to any data changes or server redeployments, as the current version limits assignments to current campuses. No new campuses can be added - or removed.
Thanks for any input