WCF service is running with wsHttpBinding. Is it possible to consume this service using web reference not service reference?
Thanks in advance
WCF service is running with wsHttpBinding. Is it possible to consume this service using web reference not service reference?
Thanks in advance
Copyright © 2021 Jogjafile Inc.
web referenceis the old-style, deprecated ASP.NET webservices (ASMX) technology (using only the XmlSerializer)You cannot consume service exposed on
wsHttpBindingwith default configuration by oldASMX. Default configuration ofwsHttpBindinguses advanced security andASMXdoesn't support it.You must either
add service reference/svcutilor change your binding tobasicHttpBinding.