Encoding
- Last UpdatedFeb 14, 2023
- 1 minute read
Encoding is tied in with the Binding configuration and determines how a message will be encoded when sent from Client to Server and Server to Client.
-
Text - through HTTP
-
Verbose, slow but secure.
-
Ideal for unprotected communications where performance is not a priority.
-
-
Binary - through TCP
-
Ideal for protected communications where performance is a priority.
-
-
Message Transmission optimization Mechanism (MTOM) - through wsHTTP.
-
An optimization of Text and Binary. Intelligently sends data in text or binary attachments.
-