Reputation: 1
I have to consume a public service with the following properties - 1. SSL is used as Transport Level Security. 2. User credentials are used for Authorization and Message Level security
NOTE : Source Code is not available for the service.
Sample URL - https://abc.com/SampleService/SampleService.svc
How do I consume from ASP.NET and call the exposed methods ?
Upvotes: 0
Views: 1609
Reputation: 14600
Did you try right clicking at References folder and using "Add Service Reference" option? You can paste url there and it should discover service.
After this, you will get proxy of that service available and you will be able to instantiate it and call its method.
Upvotes: 1