public SoapRfcPreparedFunction(FunctionMetadata function, SoapRfcStructureMapper structureMapper, SoapRfcWebClient webClient)
     : base(function.Name)
 {
     this.function        = function;
     this.webClient       = webClient;
     this.structureMapper = structureMapper;
 }
 public SoapSapRfcConnection(SapSoapRfcDestination destination)
 {
     this.Destination     = destination;
     this._webClient      = new SoapRfcWebClient(this.Destination);
     this.metadataCache   = new SoapRfcMetadataCache(this._webClient);
     this.structureMapper = new SoapRfcStructureMapper(new SoapRfcValueMapper());
 }
Ejemplo n.º 3
0
 public SoapRfcResult(FunctionMetadata metadata, XmlNode responseXml, SoapRfcStructureMapper structureMapper)
 {
     this.metadata        = metadata;
     this.responseXml     = responseXml;
     this.structureMapper = structureMapper;
 }