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