Hello, my C# client sends the following SOAP request to a server for consuming a web services Java-based: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <ExpandOrderRequest xmlns="http://wshost.com/schemas/ kcengine"> <orderId>55</orderId> <orderSize>500</orderSize> <codeLength>20</codeLength> <codePattern>A</codePattern> <sorting>R</sorting> </ExpandOrderRequest> </soap:Body> </soap:Envelope> and this generates an error. I need to modify the namespace prefix in order to obtain something like that: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/ envelope/"> <soapenv:Header/> <soapenv:Body> <kcen:ExpandOrderRequest xmlns:kcen="http://wshost.com/schemas/ kcengine"> <kcen:orderId>58</kcen:orderId> <kcen:orderSize>500</kcen:orderSize> <kcen:codeLength>20</kcen:codeLength> <kcen:codePattern>A</kcen:codePattern> <kcen:sorting>R</kcen:sorting> </kcen:ExpandOrderRequest> </soapenv:Body> </soapenv:Envelope> With a message like that all works fine. How can I do to modify namespace prefix??? thank you ste