I'm using the .NET ADK, version 2.3.0.4. When I try to parse a StudentSectionEnrollment xml object from from the ZIS, I don't get an error, but the object is just empty. I'm curious if anyone knows why that would be?
I've setup a simple example in which I can duplicate the problem. The variable _obj below is empty after the parse.
Here's the string I'm getting from the ZIS:-------------------<StudentSectionEnrollment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" RefId="F45BE432251147C2A7EAB97D16589860" StudentPersonalRefId="87275136481A41D5B9C76F6FCE34E6E9" SectionInfoRefId="D330327CED5345B0BE0C9829F464331F" SchoolYear="2010" />--------------------
Here's the code for the simple example:--------------------Adk.Initialize(SifVersion.SIF20r1, SdoLibraryType.All)Dim _p As SifParser = SifParser.NewInstanceDim _obj As StudentSectionEnrollment = _p.Parse(Me.txtInput.Text, Nothing) --------------------
Thanks for the help.