【问题标题】:How to download all the wsdl files from the sharepoint?如何从共享点下载所有 wsdl 文件?
【发布时间】:2014-04-16 15:13:08
【问题描述】:

  1. > 我想从以下 wsdl 文件下载

    sharepoint(Alerts.wsdl、dspsts.wsdl、lists.wsdl、 发布的linksservice.wsdl、sites.wsdl、versions.wsdl、admin.wsdl、 dws.wsdl、meetings.wsdl、permissions.wsdl、socialdataservice.wsdl、 视图.wsdl,身份验证.wsdl,forms.wsdl,people.wsdl, sharepointemailws.wsdl、spsearch.wsdl、webpartpages.wsdl、copy.wsdl、 imaging.wsdl、search.wsdl、sitedata.wsdl、usergroup.wsdl、webs.wsdl)。

【问题讨论】:

  • 那些链接无法正常工作,其中一个仅显示一些 wsdl 文件,而不是全部@PatB
  • 你需要把服务器地址改成你的服务器....
  • 谢谢.....它的工作.... :) @PatB

标签: java web-services sharepoint wsdl


【解决方案1】:

使用以下网址。将 替换为您的服务器名称。同时更改协议httphttps

https://<server>/sites/_vti_adm/Admin.asmx?WSDL
https://<server>/sites/_vti_bin/Alerts.asmx?WSDL
https://<server>/sites/_vti_bin/authentication.asmx?WSDL
https://<server>/sites/_vti_bin/Copy.asmx?WSDL
https://<server>/sites/_vti_bin/DspSts.asmx?WSDL
https://<server>/sites/_vti_bin/DspSts.asmx?WSDL
https://<server>/sites/_vti_bin/Dws.asmx?WSDL
https://<server>/sites/_vti_bin/Forms.asmx?WSDL
https://<server>/sites/_vti_bin/Imaging.asmx?WSDL
https://<server>/sites/_vti_bin/Lists.asmx?WSDL
https://<server>/sites/_vti_bin/Meetings.asmx?WSDL
https://<server>/sites/_vti_bin/people.asmx?WSDL
https://<server>/sites/_vti_bin/Permissions.asmx?WSDL
https://<server>/sites/_vti_bin/publishedlinksservice.asmx?WSDL
https://<server>/sites/_vti_bin/search.asmx?WSDL
https://<server>/sites/_vti_bin/SiteData.asmx?WSDL
https://<server>/sites/_vti_bin/Sites.asmx?WSDL
https://<server>/sites/_vti_bin/socialdataservice.asmx?WSDL
https://<server>/sites/_vti_bin/spsearch.asmx?WSDL
https://<server>/sites/_vti_bin/UserGroup.asmx?WSDL
https://<server>/sites/_vti_bin/Versions.asmx?WSDL
https://<server>/sites/_vti_bin/Views.asmx?WSDL
https://<server>/sites/_vti_bin/Webs.asmx?WSDL

您可以使用curl 轻松获取它们。示例:

curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Admin.asmx?WSDL -o Admin.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Alerts.asmx?WSDL -o Alert.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/authentication.asmx?WSDL -o authentication.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Copy.asmx?WSDL -o Copy.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/DspSts.asmx?WSDL -o DspSts.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/DspSts.asmx?WSDL -o DspSts.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Dws.asmx?WSDL -o Dws.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Forms.asmx?WSDL -o Forms.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Imaging.asmx?WSDL -o Imaging.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Lists.asmx?WSDL -o Lists.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Meetings.asmx?WSDL -o Meetings.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/people.asmx?WSDL -o people.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Permissions.asmx?WSDL -o Permissions.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/publishedlinksservice.asmx?WSDL -o publishedlinksservice.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/search.asmx?WSDL -o search.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/SiteData.asmx?WSDL -o SiteData.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Sites.asmx?WSDL -o Sites.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/socialdataservice.asmx?WSDL -o socialdataservice.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/spsearch.asmx?WSDL -o spsearch.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/UserGroup.asmx?WSDL -o UserGroup.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Versions.asmx?WSDL -o Versions.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Views.asmx?WSDL -o Views.asmx.wsdl
curl --anyauth --user 'username:password' http://[sphost]/_vti_bin/Webs.asmx?WSDL -o Webs.asmx.wsdl

【讨论】:

    猜你喜欢
    • 2023-03-31
    • 2018-03-20
    • 2020-01-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-04-28
    • 1970-01-01
    • 2019-01-17
    相关资源
    最近更新 更多