Unknown Webservice error

1
I've done some searching, but could not find what the following error is when I call a webservice: com.mendix.systemwideinterfaces.MendixRuntimeException: Expression 'empty' evaluated to empty for element XXXXX com.mendix.core.CoreException: Exception occurred in action 'Microflow [CSRWorkflow.CreateMultiBrandAppInDALAS]', all database changes executed by this action were rolled back at com.mendix.core.actionmanagement.CoreAction.d(SourceFile:553) Caused by: com.mendix.core.CoreException: Exception occurred in microflow 'CSRWorkflow.CreateMultiBrandAppInDALAS' for activity 'Call web service 'AddApplicationForBrandEnquiryContract'', all database changes executed by this microflow were rolled back at kM.b(SourceFile:252) Caused by: com.mendix.systemwideinterfaces.MendixRuntimeException: Expression 'empty' evaluated to empty for element 'urn:DA-InternetLink-Service:AddApplicationForBrandEnquiryContract'
asked
1 answers
0

Did you happen to map 'empty' to an attribute called XXXXX, which wasn't an optional element? The runtime will explicitly throw an exception in that case. If you want to insert an element without any text, use

''

instead of empty.

answered