I have a code line which is part of generating the SIF object for "SHEDULEINFO" type.
Edustructures.SifWorks.Student.ScheduleInfo[] schedInfos = sectInfo.GetScheduleInfos();
I am trying to migrate the 1.5 to 2.2 specification. But since the above GetScheduleInfos(); is missing and could not able to find a documentation for the same to which alternate class I need to use, so I am stuck.
My code is broken becuase of these changes...
If some one confirm the line above in 1.5r ADK is equivalent for 2.0 as show one in below,
Edustructures.SifWorks.Student.
ScheduleInfoList schedInfosList = sectInfo.ScheduleInfoList;
Sraveendran,
sectInfo.ScheduleInfoList is the correct property to access to obtain the SectionInfo/ScheduleInfoList from the object. It's been moved from a standard method call to an actual .NET property.
Good Work!
Cheers,
Jared
Thanks, I have more question ,
StudentAddress element is no more present in the SIF_Message xsd.
SO I guess this need to be updated in mapping file to reflect the new elemenet name. Could u point me out similar changes with 2.2 SIF specification which will affect or need modification of sif configureation or mapping file ?