Basically, I've created a netTcpBinding WCF service with a method that returns a set of simple objects ranging from 500 to 50000 objects. These object contains some string, int and DateTime properties. I was trying to test the memory consumption after calling this method. I've noticed that when I perform the same test with the classic ASMX web service, the memory consumption is less in this case. What I understand is that messages in netTcpBinding WCF services are binary-encoded whereas they are XML-formatted in ASMX web services, so messages should be smaller in the former case. However, the messages returned from the netTcpBinding service are almost 2x the size of ASMX messages. Any idea why this is happening?
Messages returned from a netTcpBinding WCF service are larger than those returned from an ASMX web service
132 Views Asked by Qusay Fadhel At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in WEB-SERVICES
- couldn't copy pdb file to another directory while consuming wcf web service
- .net rest service with JSON string and consumed with java client
- How to send Rest GET request that contains "#" value in url parameters?
- Looking the Method that MANUALLY INSTALL PHP on OSX Yosemite
- How to use @queryparam when using array in Java
- How to accept cookies when using a webservice - Android?
- zend soap server reading xml attributes
- Web Service Error path property must set before calling the send method
- Error with kSOAP2
- JAX-RS service response is returning double fields without decimal places
- How can I call a ASP.Net webservice using AJAX without calling controller
- Generate clients for multiple WSDL files and place it in different package through Spring Gradle
- File upload in AXIS2 webservice
- How to route by call method in proxy with WSO2?
- fetch data from web service to dataset in Delphi
Related Questions in WCF
- couldn't copy pdb file to another directory while consuming wcf web service
- Call wcf from android app
- WCF Service not accepting multiple body parameters
- Error in Calling some service in WCF Client
- WCF channel Factory caching
- How to convert a List<string> to an IEnumerable<ServiceReference.datatable> C# Silverlight WCF RIA Services LINQ to SQL
- WCF reusing types with inheritance - cannot generate client code
- System.ServiceModel.FaultException'1' Where might the error be?
- How to configure proxy address for multiple WCF-bindings at once?
- How pass XML from PHP to the Soap WCF service?
- Multiple service contract inter-commnication
- WCF Service not returning virtual property ServiceProvider
- How to get information about error from HttpContext in WCF services
- Using Service Bus to access On Premise WCF Service
- Test case for WCF REST Service
Related Questions in SOAP
- Java - How to send byte array on Soap Request?
- SoapClient in PHP 5.6 when using HTTPS emits warning with "key values mismatch"
- zend soap server reading xml attributes
- Multiple HTTP post requests to a web service from XML files
- Header in SOAPclient PHP
- Namespace for array field in node-soap client (Node.js)
- Generate clients for multiple WSDL files and place it in different package through Spring Gradle
- How pass XML from PHP to the Soap WCF service?
- Jira Soap Api Add Watchers
- java.lang.LinkageError: loader constraint violation when developing a SOAP plugin in JIRA
- Parsing XML with same parent and child node name
- WCF part of soap response body is signed instead of entire body
- Create signature with bouncycastle api. Key always null
- How to convert SOAP-based WCF service to RESTfull API
- Calling method from SOAP returns null
Related Questions in NETTCPBINDING
- WCF not handle 1000 call per second
- Getting IEnumerable<T> semantics with a NetTcpBinding WCF service?
- Closing WCF connections using a static/centralized class
- Messages returned from a netTcpBinding WCF service are larger than those returned from an ASMX web service
- WCF nettcp Callback not working when deployed
- WCF without IIS Service Not Starting for TCP on Intranet
- Catch-22 prevents streamed TCP WCF service securable by WIF; ruining my Christmas, mental health
- Can´t add header to MassTransit message from OperationContext?
- Is there any difference in hosting net.tcp wcf services under Windows 7 and Windows 2008 Server in IIS?
- WCF NetTcpBinding + Single Instance + Single Concurrency = Blocking/Dropping Calls?
- WCF netTCPBinding Built-in Transport Security Strength and HIPAA Compliance
- Certificate invalid forb netTCP in WCF
- Enabling reliable sessions causes an exception which talks about contract filter mismatch
- WCF Application - need "app start" code for both http and tcp bindings
- WCF netTcpBinding Windows security EncryptAndSign
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
My understanding is that ASMX is HTTP based only using the SOAP protocol to transfer data, whereas WCF has multiple binding and transport options.
TCP/IP operates as a streamed connection between the WebService and the object consuming the WebService. TCP/IP will re-transmit any lost packets (all connections will have a few packets lost) which in-turn could cause the overall transmitted data to be greater.
See: http://msdn.microsoft.com/en-us/library/ms733769(v=vs.110).aspx
The question really lies in how you are calculating memory loss. Are you using the GC class or measuring the total size of the request headers?