Archives by Tag 'HTTP'
WCF Soap11 vs Soap11WSAddressing10 vs Soap11WSAddressingAugust2004 vs Soap12 vs Soap12WSAddressing10 vs Soap12WSAddressingAugust2004
I’ve done some quick test on WCF interoperability of the SOAP versions and WSAddressing.
SOAP 1.1 vs SOAP 1.2
SOAP 1.2 is an extended version of SOAP 1.1, it does everything that SOAP 1.1 offers,
SOAP 1.2 provides clear processing model and it is based on XML infoset, it has no dependency on the underlying transport protocol. E.g. [...]
Enable HTTP compression for Apache HTTP SERVER
Edit httpd.conf to enable compression for Apache HTTP server
Most likely, it is under
C:\Program Files\Apache Software Foundation\Apache2.x\conf\httpd.conf
Copy and Past the following to the bottom of the file and restart Apache.
LoadModule deflate_module modules/mod_deflate.so
<IfModule mod_deflate.c>
#DeflateCompressionLevel 9
<Location />
AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml
[...]
