• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

采用类似Java WS-*的方式,在一个ASP.NET服务中将不同的类暴露为多个的Port ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

下面是JBoss的一个SSO的例子片断:

  • sso2.war#RoleComponent (wsdl)
    • getRoles
    • getTheRoleFunctions
    • getTheRoleFunctionsByCode
    • getTheSystemRoles
    • getUserBySystemNameAndRoleId
    • isFunctionInRole
  • sso2.war#UserComponent (wsdl)
    • Login
    • LoginUser
    • getFilterNodes
    • getFunctions
    • getTheUserFunctions
    • getTheUserNodes
    • getTheUserRoles
    • getTheUserRoles2
    • getUserByID
    • getUsers
    • isInFunction
    • isInFunctionByCode
    • isInRole
    • isInRoleByCode
    • getUsers
  • sso.war#RoleComponent (wsdl)
    • getRoles
    • getTheRoleFunctions
    • getTheRoleFunctionsByCode
    • getTheSystemRoles
    • getUserBySystemNameAndRoleId


  • 不难看出在一个Service中,提供了不同的类,以及WebMethod。
    但如果在ASP.NET Web Service中直接登记2个会出现下列错误:
     

    Parser Error

    Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

    Parser Error Message: There can be only one 'webservice' directive.

    Source Error:

     
    Line 1:  <%@ WebService Language="C#" CodeBehind="UserService.asmx.cs" Class="Inventory.UserService" %>
    Line 2:  <%@ WebService Language="C#" CodeBehind="UserService.asmx.cs" Class="Inventory.GroupService" %>


    Source File: /UserService.asmx    Line: 2


    所以如果要采用类似方式剔掉Java的Web Service,同时又不让服务客户程序修改过多代码,可以采用Port来分割一个Web Service:
     

       <service name="SSOService">

    <port binding="tns:NodeServiceBinding" name="NodeServicePort">

     <soap:addresslocation="http://win2003/sso2/service/NodeService" />

         </port>

                <port binding="tns:UserServiceBinding" name="UserServicePort">

     <soap:addresslocation="http://win2003/sso2/service/UserService" />

            </port>

                <port binding="tns:RoleServiceBinding" name="RoleServicePort">

     <soap:addresslocation="http://win2003/sso2/service/RoleService" />

    </port>

     </service>

    转自:沈同学和袁同学的邮件。


    鲜花

    握手

    雷人

    路过

    鸡蛋
    该文章已有0人参与评论

    请发表评论

    全部评论

    专题导读
    上一篇:
    [转]ASP.NET如何获取上传图片尺寸(是指宽高)发布时间:2022-07-10
    下一篇:
    Asp.net Core 3.0中关于DateTime格式化的方法发布时间:2022-07-10
    热门推荐
    热门话题
    阅读排行榜

    扫描微信二维码

    查看手机版网站

    随时了解更新最新资讯

    139-2527-9053

    在线客服(服务时间 9:00~18:00)

    在线QQ客服
    地址:深圳市南山区西丽大学城创智工业园
    电邮:jeky_zhao#qq.com
    移动电话:139-2527-9053

    Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap