 |













|
 |
Full Support of Microsoft XML
PipeBoost™
also has full support of Microsoft XML 2.0 and higher. Microsoft XML
supports compressed XML DataStream served by the
server. Client applications will get data faster and
compression/decompression processing will be done completely behind the scenes.
There are some real live examples where you can get compression
of XML documents with more then 20:1 ratio.
Here is an example how you can test PipeBoost™
implementation with XML (sample in VB 6.0):
<%
Dim objXMLHTTP, xml, url
Set xml = CreateObject("MSXML2.XMLHTTP")
url = "http://www.pipeboost.com/Demo/XML.xml"
xml.Open "GET", url, False
xml.Send
Debug.Print "Indication of Compression:";
Debug.Print xml.GetResponseHeader("Content-Encoding")
Debug.Print xml.responseText
Set xml = Nothing
%>
|
This example shows how compressed
content could be transparently processed by Microsoft XML.
You may
click here to see exact response headers supplied by our IIS
Server
|
 |