Esempio n. 1
0
 public SoapRfcPreparedFunction(FunctionMetadata function, SoapRfcStructureMapper structureMapper, SoapRfcWebClient webClient)
     : base(function.Name)
 {
     this.function        = function;
     this.webClient       = webClient;
     this.structureMapper = structureMapper;
 }
Esempio n. 2
0
 public SoapSapRfcConnection(SapSoapRfcDestinationElement destination)
 {
     this.Destination     = destination;
     this._webClient      = new SoapRfcWebClient(this.Destination);
     this.metadataCache   = new SoapRfcMetadataCache(this._webClient);
     this.structureMapper = new SoapRfcStructureMapper(new SoapRfcValueMapper());
 }
 public SoapSapRfcConnection(string name)
 {
     this.Destination     = SapSoapRfcConfigurationSection.GetConfiguration(name);
     this._webClient      = new SoapRfcWebClient(this.Destination);
     this.metadataCache   = new SoapRfcMetadataCache(this._webClient);
     this.structureMapper = new SoapRfcStructureMapper(new SoapRfcValueMapper());
 }
Esempio n. 4
0
 public SoapRfcResult(FunctionMetadata metadata, XmlNode responseXml, SoapRfcStructureMapper structureMapper)
 {
     this.metadata        = metadata;
     this.responseXml     = responseXml;
     this.structureMapper = structureMapper;
 }