Request More Info Handler
Today I created the request more info pages for Lump Sum, Regular Savings and Pensions, as well as a handler that can deal with each of them generically.
I implemented this by using a field sent by flex called SpecificFormFields which specifies the number of specific fields that the current form submission contains, as well as a corresponding number of SpecFormTag and SpecFormText fields, each specifying the label and form field associated with that specific form entry.
The handler then iterates through each one in a for loop, counting up until n = SpecificFormFields and gettig SpecFormTagn and SpecFormTextn.
Session problems
We came across session problems again today, when Kevin was trying to implement the Download function in the Customer Document Repository, again the problem is between sharing of sessions between flex and the browser, this will have to carry forward to Friday, as the solutions we’ve tried so far have all failed. I’m wondering if there’s a complementing fileDownload component to flex’s fileUploading one? If so hopefully we could use our workaround from Monday.