I have a wsdl content which shows the Service element like below.
<service name="CheckIn">
<port name="CheckInSoap" binding="s0:CheckInSoap">
<soap:address location="http://10.50.130.93:16200/_dav/cs/idcplg" />
</port>
</service>
I want to the access the WSDL url like http://ip:port/../..?wsdl from the server 10.50.130.93. I have tried the url http://10.50.130.93:16200/_dav/cs/idcplg?wsdl and http://10.50.130.93:16200/_dav/cs/idcplg/CheckIn?wsdl . But both them doesn't show the WSDL content I expected. So my question is what exactly the endpoint url of WSDL it is ? Is there any reason stop to display the WSDL from the urls ? Thanks.