Gets the HTTP configuration object.
Syntax:
Returns:
Object of type FREDI.ediHttpCfg if the call is successful; Empty if the call fails.
Remarks:
The HTTP configuration object applies only to HTTP transport.
Example:
oTransport = oTransports.CreateTransport
oTransport.SetHTTP()
oTransport.InternetUrl = txtUrl.Text
oHttpCfg = oTransport.GetHttpCfg
oHttpCfg.SendVerb = "POST"
oHttpCfg.EnableProcessResponse = True
oHttpCfg.ResponseOutput = sPath & "output\Receive.Mime.Txt"
oTransport.Send(sEdiFile)
Samples