If you look closely to the XML you can see that the data doesn't match with the mapping that you've specified, because of that the platform won't import your data.
In the modeler you have claimComponentVOs followed by 'item', if the Modeler renders it like this it expects another element between claimComponentVOs and it's content instead of what is currently in the XML.
Your example repeats claimComponentVOs but the definition seems to say that there is 1 claimComponentVOs element with 'item' nested multiple times. I just took a quick look at the wsdl and they are using the arrays in a weird way (according to WS-I also incorrect).
This (exotic) XML array structure doesn't seem supported by the import process. The only suggestion I can give you is to manually change/experiment with changing the wsdl untill it expresses the same hierarchy but without the Array definition.