用 Visual Studio 2010 在 SharePoint 2010 创建ASMX Web Service

来源:互联网 发布:linux oracle查看实例 编辑:程序博客网 时间:2024/05/22 11:57


第一步创建空白sharepoint2010项目

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010_

选择场部署模式

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

卸载项目

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

编辑项目

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010
<SandboxedSolution>False</SandboxedSolution>下面加一句:

<TokenReplacementFileExtensions>asmx</TokenReplacementFileExtensions>

结果如下:
How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

保存并重新加载项目

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

添加一个新的类,名为:SPASMXService.cs.

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

打开 SPASMXService.cs,作如下修改:

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

添加‘System.Web.Services’引用. 并使用该引用,如下:

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010
How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

添加t “Layouts”映射目录.

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

你也可以映射到 ISAPI.  

如下:

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010


创建SPASMXService.asmx.

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

加入如下内容到SPASMXService.asmx :

<%@WebService Language="C#"Debug="true" Class="[Class path], $SharePoint.Project.AssemblyFullName$" %>

 [class path] 是完整的命名空间:

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

From:

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

部署项目

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010

If everything went right, you should see this using Internet Explorer:

How_to_Create_an_ASMX_web_service_on_SharePoint_2010,_using_Visual_Studio_2010
http://sharepointgauravgoyal.blogspot.com/2011/12/how-to-create-asmx-web-service-on.html


原创粉丝点击