I'm consuming this wsdl file, but I'm seeing different things in my c# reference file that that's created when I add a reference to it. For example, EncyrptionClient
is nowhere to be found in the wsdl file, but it's present in the Reference.cs file. The same thing with pingRequest
. I'm pretty unfamiliar with consuming web services this way, so maybe there's something fundamental I'm simply not aware of. My belief is that what is in the wsdl file would be created in the reference file, but that doesn't appear to be the case.
To consume the service, all I'm doing is right-clicking on the project and selecting Add Connected Service, then using the WCF provider.
Here are images of what I'm seeing in the Reference.cs file:
What about this process am I missing?