public WebServiceCall(string endpointURL, string opLocation, HttpContentType contentType, string encoding, CallStyle style) { this.endpointURL = endpointURL; this.operationLocation = opLocation; this.contentType = contentType; this.encoding = encoding; this.style = style; }
public WebServiceCall(string endpointURL, string WSDLTargetNamespace, string operationName, string soapAction, string encoding, CallStyle style, SoapVersion soapVersion) { this.endpointURL = endpointURL; this.soapAction = soapAction; this.encoding = encoding; this.WSDLTargetNamespace = WSDLTargetNamespace; this.operationName = operationName; this.style = style; this.soapVersion = soapVersion; if (soapVersion == SoapVersion.SOAP12) { soapEnvNs = "http://www.w3.org/2003/05/soap-envelope"; soapEncNs = "http:// www.w3.org/2003/05/soap-encoding"; } }