I'm working on asp.net mvc I want to consume secured web service in my project In previous I can consume unsecured web service (asmx) by calling wsdl to create proxy class ,now I tried to create proxy class for the service by using wsdl.exe by using the following formula Wsdl /language:language /protocol:protocol /namespace:myNameSpace /out:filename /username:username /password:password /domain:domain But I had the following error Error: There was an error processing 'https:// .asmx?wsdl'. - There was an error downloading 'https:// .asmx?wsdl' - Unable to connect to the remote server - A socket operation was attempted to an unreachable network ??.???.???.??:??? Can you tell me how can I consume secured web service in my project
Yara