I'm trying to add a service reference to a SOAP web service into my ASP.NET MVC application so I'm able to consume the web service from here.
The problem is, that the service reference isn't creating any class or method I can use from my regular app, it's only defining two interfaces and a lot of data types.
Maybe I'm mistaken, but as I'm understanding it, the service reference should create a class that I'd be able to use to call the different methods on the service. Then is my job to translate my business model data to the data types of the web service so I can send parameters to methods and work with their responses.
Am I doing it wrong and should use a different approach to consume external SOAP web services?