Consume Webservice with asp.net c #

2

Good afternoon I would like you to help me I am trying to consume a service. so I have been told to consume the service DtoGeneradorTablaAmortizacionRequest then when you check the result I will vote for another service called DtoDividendo but there is an error when consuming the service as Time Out

why you have these:

My mistake comes out when I try to enter the property.

 protected void btnCalcular_Click1(object sender, EventArgs e)
        {
            SvcCreditoExterno.SvcCreditoExternoClient sv = new SvcCreditoExterno.SvcCreditoExternoClient();

            SvcCreditoExterno.DtoGeneradorTablaAmortizacionRequest svs = new SvcCreditoExterno.DtoGeneradorTablaAmortizacionRequest();
            svs.AjustarTabla = txtAjustarTabla.Text;

        }
    
asked by PieroDev 25.05.2017 в 20:40
source

1 answer

2
SvcCreditoExterno.SvcCreditoExternoClient sv = new SvcCreditoExterno.SvcCreditoExternoClient();

SvcCreditoExterno.DtoGeneradorTablaAmortizacionRequest svs = new SvcCreditoExterno.DtoGeneradorTablaAmortizacionRequest();

svs.AjustarTabla = SvcCreditoExterno.EnumeradosConfiguracionNegocioMetodosAjusteTabla.AjustePrimeraCuota;

sv.ConsultarTablaAmortizacion(svs);
    
answered by 25.05.2017 / 21:17
source