My WCF service is returning around 7MB data in string format to client.
Client has to wait for the response.
What appropriate bindings that need to modified in config file or any other method which will reduce the response time from WCF Service?
public string GetData() //Without compression
{
return File.ReadAllText("SampleDB");
}
private string GetDataforCompression() //with compression
{
string data=File.ReadAllText("SampleDB");
Compress(data);
}
public static string Compress(string ToCompress)
{
var bytes = Encoding.UTF8.GetBytes(ToCompress);
using (var msi = new MemoryStream(bytes))
using (var mso = new MemoryStream())
{
using (var gs = new DeflateStream(mso, CompressionMode.Compress))
{
CopyTo(msi, gs);
}
return Convert.ToBase64String(mso.ToArray());
}
}
public static void CopyTo(Stream src, Stream dest)
{
byte[] bytes = new byte[4096];
int cnt;
while ((cnt = src.Read(bytes, 0, bytes.Length)) != 0)
{
dest.Write(bytes, 0, cnt);
}
}
I tried sending the data in compressed form and decompressing at the client end but there was'nt significant variation in response time.Below is client side config file
<customBinding>
<binding name="httpbinarybinding" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00">
<binaryMessageEncoding>
<readerQuotas maxDepth="4194304" maxStringContentLength="65536000" maxArrayLength="4194304" maxBytesPerRead="4194304" maxNameTableCharCount="4194304" />
</binaryMessageEncoding>
<httpTransport maxReceivedMessageSize="65536000" maxBufferSize="65536000" />
</binding>
</customBinding>