SharePoint Web service and template
SharePoint Web service对应的映射列表
| WSS Web Services | Web Reference |
| Administration Service | http://<server-url:port-number>/_vti_adm/admin.asmx |
| Alerts Service | http://<server-url>/_vti_bin/alerts.asmx |
| Document Workspace Service | http://<server-url>/_vti_bin/dws.asmx |
| Forms Service | http://<server-url>/_vti_bin/forms.asmx |
| Imaging Service | http://<server-url>/_vti_bin/imaging.asmx |
| List Data Retrieval Service | http://<server-url>/_vti_bin/dspsts.asmx |
| Lists Service | http://<server-url>/_vti_bin/lists.asmx |
| Meetings Service | http://<server-url>/_vti_bin/meetings.asmx |
| Permissions Service | http://<server-url>/_vti_bin/permissions.asmx |
| Site Data Service | http://<server-url>/_vti_bin/sitedata.asmx |
| Site Service | http://<server-url>/_vti_bin/sites.asmx |
| Users and Groups Service | http://<server-url>/_vti_bin/usergroup.asmx |
| Versions Service | http://<server-url>/_vti_bin/versions.asmx |
| Views Service | http://<server-url>/_vti_bin/views.asmx |
| Web Part Pages Service | http://<server-url>/_vti_bin/webpartpages.asmx |
| Webs Service | http://<server-url>/_vti_bin/webs.asmx |
SharePoint 2013
| 网站模板(Site Template) | 代码(Code) |
| Team Site | STS#0 |
| Blog | BLOG#0 |
| Developer Site | DEV#0 |
| Project Site | PROJECTSITE#0 |
| Community Site | COMMUNITY#0 |
| Document Center | BDR#0 |
| eDiscovery Center | EDISC#0 |
| Records Center | OFFILE#1 |
| Business Intelligence Center | BICenterSite#0 |
| Enterprise Search Center | SRCHCEN#0 |
| My Site Host | SPSMSITEHOST#0 |
| Community Portal | COMMUNITYPORTAL#0 |
| Basic Search Center | SRCHCENTERLITE#0 |
| Visio Process Repository | visprus#0 |
| Publishing Portal | BLANKINTERNETCONTAINER#0 |
| Enterprise Wiki | ENTERWIKI#0 |
| Product Catalog | PRODUCTCATALOG#0 |
SharePoint 2010
| 网站模板(Site Template) | 代码(Code) |
| Team Site | STS#0 |
| Blank Site | STS#1 |
| Document Workspace | STS#2 |
| Blog | BLOG#0 |
| Group Work Site | SGS#0 |
| Visio Process Repository | visprus#0 |
| Basic Meeting Workspace | MPS#0 |
| Blank Meeting Workspace | MPS#1 |
| Decision Meeting Workspace | MPS#2 |
| Social Meeting Workspace | MPS#3 |
| Multipage Meeting Workspace | MPS#4 |
| Document Center | BDR#0 |
| Records Center | OFFILE#1 |
| Business Intelligence Center | BICenterSite#0 |
| Enterprise Search Center | SRCHCEN#0 |
| My Site Host | SPSMSITEHOST#0 |
| Basic Search Center | SRCHCENTERLITE#0 |
| FAST Search | SRCHCENTERFAST#0 |
| Publishing Portal | BLANKINTERNETCONTAINER#0 |
| Enterprise Wiki | ENTERWIKI#0 |
templateID
A 32-bit integer that specifies the list template to use. The following table shows possible values for the ID.
| List Display Name | Type |
| Document Library | 101 |
| Form Library | 115 |
| Wiki Page Library | 119 |
| Picture Library | 109 |
| Links | 103 |
| Announcements | 104 |
| Contacts | 105 |
| Calendar | 106 |
| Discussion Board | 108 |
| Promoted Links | 170 |
| Tasks | 171 |
| Issue Tracking | 1100 |
| Custom List | 100 |
| Custom List in Datasheet View | 120 |
| External List | 600 |
| Survey | 102 |
| Asset Library | 851 |
| Data Connection Library | 130 |
| Report Library | 433 |
SharePoint Web service and template的更多相关文章
- Get item by sharepoint web service jquery
对于sp2010,在ie浏览器中这个代码无法生效,只有chrome可以生效. //获取附件id function GetAttachments(listName) { var soapEnv = '& ...
- 如何使用Web Service新建和更新Wiki页面的内容
公司内部有很多部门都创建了Wiki库,来做知识共享.公司是Hosting的SharePoint环境,不能写服务器端代码,要操作Wiki只能通过Web Service来完成,所以,碰到两个情况: 1)W ...
- Customize the SharePoint 2013 search experience with a Content Enrichment web service
Did you ever wish you had more control over how your content is indexed and presented as search resu ...
- 在SharePoint中无代码开发InfoPath应用: 一个测试Web Service的工具
这是这个系列的第一篇,介绍一个小工具,主要是用在Web Service测试的. 因为为了用一点高级的东西,就免不了和web service打交道. 你可以使用按照KB819267来修改web.conf ...
- SharePoint excel service web part 连接到 filter web part
本文讲述SharePoint excel service web part 连接到 filter web part的一个简单应用场景. SharePoint excel service web par ...
- SharePoint 2013 APP 开发示例 (六)服务端跨域访问 Web Service (REST API)
上个示例(SharePoint 2013 APP 开发示例 (五)跨域访问 Web Service (REST API))是基于JavaScript,运行在web browser内去访问REST AP ...
- SharePoint 2013 APP 开发示例 (五)跨域访问 Web Service (REST API)
虽然 JQuery 也能通过授权header实现跨域, 但SharePoint 提供了更简单的方法,它被实现在SP.RequestExecutor里 .它能访问跨域的服务包括REST AP ...
- sharepoint 2010 创建自定义的ASP.NET Web Service (上)
项目背景 根据客户需求在SharePoint 2010 中创建自定义的ASP.NET Web Service可以分为3种方式(我所知道的).废话少说,下面一一列举: 创建方式 MSDN 官方博客自己的 ...
- 走进云背后:微软Azure web 项目通过web service部署web site
探索云那不为人知的故事(一):Web Services部署web site 前奏:Windows Azure是微软基于云计算的操作系统,现在更名为“Microsoft Azure”,和Azure Se ...
随机推荐
- SQL Server建表和增删改
create database 数据库名 go --穿件完成 go create table 表名(列名 类型, 列名 类型, 列名 类型 --最后一个列名不加逗号) go --创建完成go 以创建表 ...
- getbyclass
其实以前我偷偷学习正则表达式的时候,写过一个getbyclass的方法,最近翻了翻到处都是错,或者好多重复的,没有用的 代码,于是显得没事我就把这个精简了一下,其实这个方法现在我觉得也是有问题的,问题 ...
- 【Unity3D游戏开发】Application.systemLanguage无法区分简体中文和繁体中文 (二六)
游戏发布,语言本地化需要繁体中文和简体中文 iOS8版本之前没问题,iOS9上无法正常识别这两种语言 原因是在iOS9上,Unity通过Application.systemLanguage返回的简体中 ...
- [转自老马的文章]用MODI OCR 21种语言
作者:马健邮箱:stronghorse_mj@hotmail.com发布:2007.12.08更新:2012.07.09按照<MODI中的OCR模块>一文相关内容进行修订2012.07.0 ...
- Spring AOP和AspectJ支持
学了Spring之后发现我都不知道java为何物-- 在这一章中有好几节,讲的切面编程 第一节:在项目中启用Spring的AspectJ注解支持 第二节:用AspectJ注解声明aspect 第三节: ...
- JS学习笔记(二) 数据类型
参考资料: 1. http://www.w3school.com.cn/js/js_datatypes.asp 2. http://blog.sina.com.cn/s/blog_85c1dc1001 ...
- JPG 批量压缩、 PNG32、PNG24转PNG 透明批量压缩工具 【JPNG】 支持多级目录
说在最前,压缩不一定是最好的,仅仅是为了方便自己工作需要.主要是手机端图片 算法说明:JPG压缩使用的是 adobe 的 JPGEncoder+ AIR的JPEGEncoderOptions (注 ...
- Redis配置文件之————redis.conf配置及说明
基本设置 1. 备释当配置中需要配置内存大小时,可以使用 1k, 5GB, 4M 等类似的格式,其转换方式如下(不区分大小写):1k =< 1000 bytes1kb =< 1024 by ...
- Android 视频投射之NanoHTTPD
Android 视频投射之NanoHTTPD 号称用一个java文件实现Http服务器 有必要对其源码及例子进行分析 public abstract class NanoHTTPD { //异步执行请 ...
- hdu 4870 Rating
题目链接:hdu 4870 这题应该算是概率 dp 吧,刚开始看了好几个博客都一头雾水,总有些细节理不清楚,后来看了 hdu 4870 Rating (概率dp) 这篇博客终于有如醍醐灌顶,就好像是第 ...