161 lines
6.9 KiB
C#
161 lines
6.9 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Runtime Version:4.0.30319.261
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
//
|
|
// This source code was auto-generated by Microsoft.VSDesigner, Version 4.0.30319.261.
|
|
//
|
|
#pragma warning disable 1591
|
|
|
|
namespace SEILoader.SEI {
|
|
using System;
|
|
using System.Web.Services;
|
|
using System.Diagnostics;
|
|
using System.Web.Services.Protocols;
|
|
using System.ComponentModel;
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Web.Services.WebServiceBindingAttribute(Name="CaricamentoMassivoSoapBinding", Namespace="http://ws.consultancy.services.fxc.bf.it")]
|
|
public partial class CaricamentoMassivoService : System.Web.Services.Protocols.SoapHttpClientProtocol {
|
|
|
|
private System.Threading.SendOrPostCallback caricamentoClienteOperationCompleted;
|
|
|
|
private bool useDefaultCredentialsSetExplicitly;
|
|
|
|
/// <remarks/>
|
|
public CaricamentoMassivoService() {
|
|
this.Url = global::SEILoader.Properties.Settings.Default.URL_CaricamentoMassivoService;
|
|
if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
|
|
this.UseDefaultCredentials = true;
|
|
this.useDefaultCredentialsSetExplicitly = false;
|
|
}
|
|
else {
|
|
this.useDefaultCredentialsSetExplicitly = true;
|
|
}
|
|
}
|
|
|
|
public new string Url {
|
|
get {
|
|
return base.Url;
|
|
}
|
|
set {
|
|
if ((((this.IsLocalFileSystemWebService(base.Url) == true)
|
|
&& (this.useDefaultCredentialsSetExplicitly == false))
|
|
&& (this.IsLocalFileSystemWebService(value) == false))) {
|
|
base.UseDefaultCredentials = false;
|
|
}
|
|
base.Url = value;
|
|
}
|
|
}
|
|
|
|
public new bool UseDefaultCredentials {
|
|
get {
|
|
return base.UseDefaultCredentials;
|
|
}
|
|
set {
|
|
base.UseDefaultCredentials = value;
|
|
this.useDefaultCredentialsSetExplicitly = true;
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
public event caricamentoClienteCompletedEventHandler caricamentoClienteCompleted;
|
|
|
|
/// <remarks/>
|
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("", RequestNamespace="http://ws.consultancy.services.fxc.bf.it", ResponseNamespace="http://ws.consultancy.services.fxc.bf.it", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
|
|
[return: System.Xml.Serialization.XmlElementAttribute("caricamentoClienteReturn")]
|
|
public int caricamentoCliente(string Rete, string codFis, string PB, string codiceApplicazione, string idElaborazione, int token) {
|
|
object[] results = this.Invoke("caricamentoCliente", new object[] {
|
|
Rete,
|
|
codFis,
|
|
PB,
|
|
codiceApplicazione,
|
|
idElaborazione,
|
|
token});
|
|
return ((int)(results[0]));
|
|
}
|
|
|
|
/// <remarks/>
|
|
public void caricamentoClienteAsync(string Rete, string codFis, string PB, string codiceApplicazione, string idElaborazione, int token) {
|
|
this.caricamentoClienteAsync(Rete, codFis, PB, codiceApplicazione, idElaborazione, token, null);
|
|
}
|
|
|
|
/// <remarks/>
|
|
public void caricamentoClienteAsync(string Rete, string codFis, string PB, string codiceApplicazione, string idElaborazione, int token, object userState) {
|
|
if ((this.caricamentoClienteOperationCompleted == null)) {
|
|
this.caricamentoClienteOperationCompleted = new System.Threading.SendOrPostCallback(this.OncaricamentoClienteOperationCompleted);
|
|
}
|
|
this.InvokeAsync("caricamentoCliente", new object[] {
|
|
Rete,
|
|
codFis,
|
|
PB,
|
|
codiceApplicazione,
|
|
idElaborazione,
|
|
token}, this.caricamentoClienteOperationCompleted, userState);
|
|
}
|
|
|
|
private void OncaricamentoClienteOperationCompleted(object arg) {
|
|
if ((this.caricamentoClienteCompleted != null)) {
|
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
|
|
this.caricamentoClienteCompleted(this, new caricamentoClienteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
public new void CancelAsync(object userState) {
|
|
base.CancelAsync(userState);
|
|
}
|
|
|
|
private bool IsLocalFileSystemWebService(string url) {
|
|
if (((url == null)
|
|
|| (url == string.Empty))) {
|
|
return false;
|
|
}
|
|
System.Uri wsUri = new System.Uri(url);
|
|
if (((wsUri.Port >= 1024)
|
|
&& (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
|
|
public delegate void caricamentoClienteCompletedEventHandler(object sender, caricamentoClienteCompletedEventArgs e);
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
public partial class caricamentoClienteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
|
|
|
|
private object[] results;
|
|
|
|
internal caricamentoClienteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
|
|
base(exception, cancelled, userState) {
|
|
this.results = results;
|
|
}
|
|
|
|
/// <remarks/>
|
|
public int Result {
|
|
get {
|
|
this.RaiseExceptionIfNecessary();
|
|
return ((int)(this.results[0]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma warning restore 1591 |