Reputation: 282
if the wsdl have two port, how can i choose the name http? Used the node package https://www.npmjs.com/package/soap
<wsdl:service name="ws">
<wsdl:port name="http" binding="calcB">
<soap:address location="http://localhost:8000/wscalc1"/>
</wsdl:port>
<wsdl:port name="https" binding="calcB">
<soap:address location="https://localhost:8000/wscalc1"/>
</wsdl:port>
</wsdl:service>
Upvotes: 1
Views: 302
Reputation: 29
Check the binding associated with your operation. The port with the same binding will be used.
Upvotes: 0