How to add soap service with response with 2 namespaces?
0
I need publish web service in mendix 10 that answer should be like this: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cli="http://www.test.pl/email/client/" xmlns:ema="http://www.test.pl/email/"> <soapenv:Header/> <soapenv:Body> <cli:GetEmailResponse> <!--0 to 100 repetitions:--> <cli:clientEmailId>?</cli:clientEmailId> <cli:email> <ema:to> <ema:address>?</ema:address> </ema:to> </cli:email> </cli:GetEmailResponse> </soapenv:Body> </soapenv:Envelope> How can I do that? I can set only 1 target namespace?