HTTP connection
Connect
Old code:
HttpLink    oHfp = new HttpLink() ;
UriBuilder  uriBldr = new UriBuilder ("http",HostFrontServerAddress,80) ;
oHfp.Connect (sHFUsername, sHFpassword, uriBldr.Uri) ;

New code:
HttpLink    oHfp = new HttpLink (Emulation.HFA5250 , CGIModule.ISAPI) ;
UriBuilder  uriBldr = new UriBuilder ("http",ClusterServerAddress,80) ;
oHfp.Connect (sHFUsername, sHFpassword, uriBldr.Uri) ;

Attach
Old code:
HttpLink oHfp = new HttpLink() ;
...
string sSessionID = oHfp.Detach() ;
...
HttpLink oHfp2 = new HttpLink() ;
UriBuilder  uriBldr = new UriBuilder ("http",HostFrontServerAddress,80) ;
oHfp2.Attach (sSessionID, uriBldr.Uri) ;

New code:
HttpLink    oHfp = new HttpLink (Emulation.HFA5250 , CGIModule.ISAPI) ;
...
string sSessionID = oHfp.Detach() ;
...
HttpLink    oHfp2 = new HttpLink (Emulation.HFA5250 , CGIModule.ISAPI) ;
UriBuilder  uriBldr = new UriBuilder ("http",ClusterServerAddress,80) ;
oHfp2.Attach (sSessionID, uriBldr.Uri) ;