You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows to modularise XMLs generation, for instance breaking down each XML part into a different method and then putting all the parts together with mkp.yield.
Currently this approach won't work because the XML serialisation to String performed in SOAPMessageBuilder is carried out using groovy.xml.MarkupBuilder; groovy.xml.StreamingMarkupBuilder could be used instead, as in RESTClient.
The text was updated successfully, but these errors were encountered:
agseco
pushed a commit
to caravelo/groovy-wslite
that referenced
this issue
Jun 20, 2017
This allows to modularise XMLs generation, for instance breaking down each XML part into a different method and then putting all the parts together with
mkp.yield
.For illustration purposes:
Currently this approach won't work because the XML serialisation to
String
performed inSOAPMessageBuilder
is carried out usinggroovy.xml.MarkupBuilder
;groovy.xml.StreamingMarkupBuilder
could be used instead, as inRESTClient
.The text was updated successfully, but these errors were encountered: