Consult WebService SVC with SOAP with MBS Plugin?

I remembered that one day Christian told me that exists a plugin to use SOAP on Xojo.
I wonder if there’s a way to consult a web service: https://consultaqr.facturaelectronica.sat.gob.mx/ConsultaCFDIService.svc?

Regards

[quote=211093:@Gerardo García]I remembered that one day Christian told me that exists a plugin to use SOAP on Xojo.
I wonder if there’s a way to consult a web service: https://consultaqr.facturaelectronica.sat.gob.mx/ConsultaCFDIService.svc?

Regards[/quote]
Scratching on MBS Plugins I Saw this folders “Communications/Internet” and I saw two particular files:

SOAP ConversionRates and SOAPTemp, and I’m seeing that one use a webservice. The SOAPConversionRates use “SOAPMethod”

AM I Wrong?

It uses this code on C and makes a query to a WebService creating a WebClient in order to look the status of an Invoice:

WEbReference https://consultaqr.facturaelectronica.sat.gob.mx/ConsultaCFDIService.svc

C Code#

ConsultaCFDI.ConsultaCFDIServiceClient oConsulta = new ConsultaCFDIServiceClient();
ConsultaCFDI.Acuse oAcuse = new Acuse();

        oAcuse=oConsulta.Consulta("?re=BEN9501023I0&rr=SARM8209281F1&tt=440.000000&id=EC609EC1-5F63-4333-A2B8-2EDC10B68075");

        MessageBox.Show("Estatus " + oAcuse.CodigoEstatus + " Estado: " + oAcuse.Estado);

When I use another Webservice like used in the example It got it.

But when I use mine, it gets a loop and the program stay thinking.
Any Suggestions?