You have whitespace between firstname and lastname. Change your class to have firstname and lastname as separate strings and it should work. The other thing you can do is to read in two separate variables such as name1
and name2
and assign it as
actRecord.name = name1 + " " + name2;