How to get the wsdl file from a webservice's URL

后端 未结 4 1844
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-08 01:17

I want to get the WSDL file for a webservice and the only thing I have is its URL (like webservice.example/foo).

If I use the URL directly only an error response is

4条回答
  •  我在风中等你
    2020-12-08 02:14

    By postfixing the URL with ?WSDL

    If the URL is for example:

    http://webservice.example:1234/foo
    

    You use:

    http://webservice.example:1234/foo?WSDL
    

    And the wsdl will be delivered.

提交回复
热议问题