Hello,

I need have more control of the soap request that it send from a cliente created with spring web services.

Spring-WS slightly modifies my message soap and that it generates an error processing the request, for example:

I create, using dom4j, the next soap request:

<Element1 xmlns="string1" xmlns:t1="string1">
<element2 xmlns="">
<element3>
<text1>text element 3</text1>
</element3>
<element4>
<text2>text element 4</text2>
</element4>
</element2>
</Element1>

Using TCM Monitor I can see that spring-ws send the next soap request:

<Element1 xmlns="string1" xmlns:t1="string1">
<element2 xmlns="">
<element3 xmlns="string1">
<text1 xmlns="">text element 3</text1>
</element3>
<element4 xmlns="string1">
<text2 xmlns="">text element 4</text2>
</element4>
</element2>
</Element1>

is possible configurate WebServiceTemplate for avoid that it alter the soap request?

Regards,