Hi, We have 2 mendix applications. A on 472, B on 483. When A calls a webservice in B to provide some data, B receives the call and performs the expected actions (validated by debugging/breakpoints). B should return a response (non persistable) object to A containing a success (boolean) indicator. A seems to not receive this object, the microflow action that calls the webservice stays empty when it wants to progress to the next action in the microflow (which is an exclusive split based on the success indicator > causing an error). This used to function properly before upgrading B from 452 to 483 (also tested in 472 and all was still working fine). What could be causing this issue and how can I obtain more info to find out what is going wrong?
asked
Brian Golsteijn
2 answers
1
Can you set the Webservices lognode to TRACE level on both sides of the connection and tell us if the XML messages get across and if they contain the right data?
answered
Bart Luijten
1
Found the issue by analysing the trace logs as requested by Bart. The Target namespace of the published web service in system B was adjusted after the webservice was imported in system A. After bringing the target namespaces in sync the issue was resolved.