Working with large wsdl, can we trim it?

后端 未结 7 851
攒了一身酷
攒了一身酷 2021-01-18 09:28

My webservice provider give me a large WSDL file, but we are going to use only a few function inside.

I believe that the large WSDL have negative impact to the appli

7条回答
  •  终归单人心
    2021-01-18 09:45

    The size of the WSDL will have zero impact on performance... unless you are downloading it and/or parsing it for every request. And if you are doing the latter, don't. It need only be processed when the service changes, and the service should always change compatibly, with continuing support of old messages (at least for some overlapping time period).

    You should consider processing a WSDL to be a program change, and do it as you would any release, with versioning, and testing, etc.

提交回复
热议问题