javax.el.PropertyNotFoundException: /WEB-INF/flows/claimant/check/wireForm.xhtml @52,165 value="#{checkViewModel.check.wireInfo.originationInfo.referenceNo}": Target Unreachable, 'originationInfo' returned null on 'com.bfds.saec.domain.WireInfo'
Asked
Active
Viewed 352 times
0
-
Asking volunteers to help quickly doesn't help. – Dave Newton Oct 13 '11 at 05:33
-
possible duplicate of [Identifying and solving javax.el.PropertyNotFoundException: Target Unreachable](http://stackoverflow.com/questions/30128395/identifying-and-solving-javax-el-propertynotfoundexception-target-unreachable) – BalusC May 25 '15 at 12:12
1 Answers
0
The error just says that the value returned for originationInfo
from your bean com.bfds.saec.domain.WireInfo
is NULL. You need to ensure that a non-null value is returned.

Saket
- 45,521
- 12
- 59
- 79