I've written a simple SOAP service which returns an object having among others a data member of type string. Everything works just fine when i consume the service through a written test client, however when I test the service through the Visual Studio WCF test client, for some reason when the string data member exceeds exactly 81 characters, the client cuts and then concatenates the string again.... as follows:
Instead of displaying: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis purus leo volutpatctorem ipsum dolor"
Test Client displays "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis purus leo volutpatc" + "torem ipsum dolor"
This is not a problem but just very interesting, can anyone tell me why WCF tetst client does this?