I have a WCF web service that returns a string to a Java based client.
<OperationContract()>
Function SomeSvc(ByVal fileString As String) As String
fileString is a bunch of xml. When the client gets the response my xmlstring is encoded as text.
<s:Body u:Id="_0">
<SomeSvcResponse xmlns="http://tempuri.org/">
<SomeSvcResult>> </ns2:FailureMessage> </ns:BOD> </ns:ConfirmDataArea> </ns:Confirm>
</SomeSvcResult>
</SomeSvcResponse>
</s:Body>
</s:Envelope>
Why is my service returning encoded text instead of xml?