专注于.NET技术
坚持每天都要到博客圆里逛一逛. 哈哈!!!JodyJin

随笔分类 -  WebServices技术

Web Service 中的身份验证策略--使用自定义SOAP 标题
摘要:自定义SOAP标题可以限制调用服务的用户范围 1using System; 2using System.Web; 3using System.Web.Services; 4using System.Web.Services.Protocols; 5 6[WebService(Namespace = "http://livebaby.cn")] 7[WebServiceBinding(Confor... 阅读全文
posted @ 2007-05-24 13:51 博客人 阅读(412) 评论(0) 推荐(0)
WebService中使用自定义类的解决方法(5种)
摘要:所谓自定义类,不知道我有没有表达清楚,这里指的就是petshop中的Model层实体类了。 比如以下代码: using System;using System.Collections;using System.Collections.Generic;using System.Text;namespace Model{ [Serializable] public cla... 阅读全文
posted @ 2007-05-24 13:34 博客人 阅读(962) 评论(2) 推荐(0)
Web Service Authentication + MD5 [from]
摘要:Download source files - 32.3 KB Introduction This is a simple mechanism to authenticate users to a Web Service, using a Time Token and MD5 Hashing to encrypt password. Background In CodeProje... 阅读全文
posted @ 2007-05-24 13:32 博客人 阅读(684) 评论(0) 推荐(0)