I'm newer to web services, but I have a web service that I'm consuming/wrapping in Visual Studio C# that ends in Service.asmx
where I did Add Service Reference
and it pulled in all of the elements that were showing in Service.asmx?wsdl
.
It has objects for Username
and Password
that worked fine, but now the company who created this web service is changing to token authentication where I get a GUID token and pass null to these elements.
Well shouldn't the web service show a new element where I pass the token?
I'm being told that the token gets passed in the header with field name Auth-Token
. So is this something obvious I should do or does the WSDL need updated?