Hi
Thank you for reading my post
Can some one let me know how I can ask Synapse not to generate
additional ports for a given web service?
for example if I have a service named Fish and it has :
<service name="Fish">
<port name="CalculatorWSPort" binding="tns:FishWSPortBinding">
<soap:address location="http://localhost:8080/Fish/Fish"/>
</port>
</service>
Then synapse generates:
<wsdl:service name="Fish">
<wsdl:port name="FishSOAP11port_https" binding="tns:FishSOAP11Binding">
<soap:address location="https://office2:8443/soap/Fish"/>
</wsdl:port>
<wsdl:port name="FishSOAP11port_http1" binding="tns:FishSOAP11Binding">
<soap:address location="http://office2:6060/soap/Fish"/>
</wsdl:port>
<wsdl:port name="FishSOAP12port_https" binding="tns:FishSOAP12Binding">
<soap12:address location="https://office2:8443/soap/Fish"/>
</wsdl:port>
<wsdl:port name="FishSOAP12port_http1" binding="tns:FishSOAP12Binding">
<soap12:address location="http://office2:6060/soap/Fish"/>
</wsdl:port>
<wsdl:port name="FishHttpport" binding="tns:FishHttpBinding">
<http:address location="https://office2:8443/soap/Fish"/>
</wsdl:port>
<wsdl:port name="FishHttpport1" binding="tns:FishHttpBinding">
<http:address location="http://office2:6060/soap/Fish"/>
</wsdl:port>
</wsdl:service>
Is there any reason for this? How I can configure it not to generate
this amount of ports?