Need help regarding SOAP based Webservice on Websphere 7. My Webservice receives request and process it properly but when it send response the NameSpace is removed form response envelop in websphere but when i put same project on tomcat it work fine we have namespace in response envelop.
Any body can guide me that it is a configuration issue or some development issue. i am using caster for marshalling.



Responce Envelop form Websphere 7 is


xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
<GetUpdateContractInformationResponse>
<isSuccessful>true</isSuccessful>
</GetUpdateContractInformationResponse>
</soapenv:Body>
</soapenv:Envelope>]



Responce Envelop form Tomcat is


[<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<GetUpdateContractInformationResponse xmlns="http://www.example.org/My-WS/service">
<isSuccessful>true</isSuccessful>
</GetUpdateContractInformationResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>]