Consume an asp web service

0

I have the following problem. I'm working with web services on c #. They have given me a url of a service to consume but it is very different from the others I have worked with (apparently it is developed in asp). The url does not have wsdl (Web Services Description Language). The only detail that they have given me are the parameters and the type of data that they receive, and that they should be consumed as SOAP.

  • user: string
  • password: sringe
  • etc ...

When I put the url in the browser it just gives me an error. The URL of the address has the following format:
link

Someone has already consumed with this type of service, that they can help me.

    
asked by J. Joe 26.05.2017 в 17:24
source

1 answer

1

What I would do is review through a GET or POST request what the .ASP page returns to consume that data in the app.

If it's a SOAP web service, it should have a WSDL, it might just be an ASP page.

Greetings,

    
answered by 26.05.2017 в 17:55