I read article Configuring Multiple End Points for WCF Service and have one query.
Query: we are creating proxy using
Service1Client proxy = null;
proxy = newService1Client("firstBinding", "http://localhost:8181/Service1.svc/MyFirstBindingAddress");
However, I am unable to view output of "http://localhost:8181/Service1.svc/MyFirstBindingAddress". Can we view output of the same in web browser like we view "http://localhost:8181/Service1.svc?wsdl".
Thanks in advance
Pawan GangwarPosted Sep 9, 2014, 3:25 AM
Thanks for the reply Abhishek.
I know that we can view output using WSDL. What I wanted to know is, how we can view output using relative address i.e. http://localhost:8181/Service1.svc/MyFirstBindingAddress
Or http://localhost:8181/Service1.svc/mex
Thanks in advance.
Abhishek KumarPosted Sep 3, 2014, 7:25 AM
To view output you must need WSDL.
Abhishek