Framework EDI Reference. Methods and Properties
ediHttpCfg.HttpVersion

Sets or gets the HTTP version.

Syntax:

Remarks:

On an HTTP request, the HTTP version is one of the information sent to the server.  The default value is “HTTP/1.1”.  When setting the value, the syntax must have the following  format per the HTTP specification (RFC2616): 

HTTP-Version = "HTTP" "/" 1*DIGIT "." 1*DIGIT

Example:

Dim oHttpCfg As Fredi.ediHttpCfg
  
:
Set oHttpCfg = oTransport.GetHttpCfg
oHttpCfg.HttpVersion = "HTTP/1.0"

  
: