sTicket - Authentication string returned by AuthService.asmx.
<modified_loans> <loan name="Loan Name" old_name="Old name if loan is delete" valid="True|False" aBNm="Borrower Full Name" sSpAddr="Property Address" LastModifiedD="Last Modified Date" /> ... ... </modified_loans>
<PointFormat><Borrower><![CDATA[....Base64 string encode of .brw file. ]]></Borrower><Coborrower><![CDATA[....Base64 string encode of .cb file. This element only exists if there is a coborrower. ]]></Coborrower></PointFormat>* If the specified format is Fannie Mae then it will return a text represent the Fannie Mae 3.2 format.
string userName = "lo_user"; string password = "password"; AuthService authService = new AuthService(); string sTicket = authService.GetUserAuthTicket(userName, password); Loan loanService = new Loan(); string sLNm = "xxxxx"; string sXmlQuery = GenerateXmlFieldList(); string ret = loanService.Load(sTicket, sLNm, sXmlQuery, 0);