Esempio n. 1
0
 public RetrieveAsyncOp(string webSvcPath, int timeoutPeriod, wsdl.Parser parser, model.IProxy configProxy, ILog log)
     : base(webSvcPath, timeoutPeriod, configProxy, log)
 {
     _webSvcPath = webSvcPath;
     _downloader = new WsdlDownload(webSvcPath, timeoutPeriod);
     _parser = parser;
 }
Esempio n. 2
0
 public RetrieveAsyncOp(string webSvcPath, wsdl.Parser parser)
     : base(webSvcPath, DEFAULT_TIMEOUT)
 {
     _webSvcPath = webSvcPath;
     _downloader = new WsdlDownload(webSvcPath, DEFAULT_TIMEOUT);
     _parser = parser;
 }