wsdl.exe /sharetypes

前端 未结 2 769
故里飘歌
故里飘歌 2020-12-21 00:38

I\'m working with multiple third party webservices (from the same vendor) that appear to be using the same object structure server side. One of the services allows me to qu

2条回答
  •  不知归路
    2020-12-21 01:25

    The schema for DataExportService has tns and the target namespace defined as http://www.senior-systems.com/. The schema for UserProfileService has tns and the target namespace defined as http://senior-systems.com/.

    Those are different, even if they happened to resolve to the same web server when used as a URL. XML namespaces are compared textually, not according to URL syntax. For example, http://senior-systems.com/ and http://senior-systems.com would be two different namespaces (hint: one is missing the trailing slash).

提交回复
热议问题