惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
Microsoft Security Blog
Microsoft Security Blog
云风的 BLOG
云风的 BLOG
B
Blog
The Register - Security
The Register - Security
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
F
Full Disclosure
The GitHub Blog
The GitHub Blog
Recorded Future
Recorded Future
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
美团技术团队
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
D
DataBreaches.Net
Martin Fowler
Martin Fowler
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
The Cloudflare Blog
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
T
The Blog of Author Tim Ferriss
博客园 - 叶小钗
博客园 - 聂微东
I
InfoQ
B
Blog RSS Feed
Apple Machine Learning Research
Apple Machine Learning Research
Cyberwarzone
Cyberwarzone
V
V2EX
S
Securelist
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
S
Security @ Cisco Blogs
PCI Perspectives
PCI Perspectives
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
H
Heimdal Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Hacker News
The Hacker News
D
Darknet – Hacking Tools, Hacker News & Cyber Security
T
Tor Project blog

博客园 - 雨过流痕

转载:Android 2.3.3 近场通信NFC介绍 C#反射,根据反射将数据库查询数据和实体类绑定,并为实体类赋值 用带无线网卡笔记本组建无线局域网 Windows Mobile 开发系列文章收藏 - Device Emulator 基于.NET的开源GIS项目 什么是程序的API? 什么是Windows API? 城管通解决方案成功案例 (转)制作web安装程序 .NET程序运行原理 邮箱 服务器地址 最新发布的Visual Studio 2008 Service Pack 1和.NET Framework 3.5 Service Pack 1 [转]VS2005,VS2008快捷键大全 手机短信发送接收流程 Service Unavailable 问题及解决方法 IIS优化 为Web服务器减负 基于.NET CompactFramework的九宫格控件(附源码) C#断点下载(转帖) C#基础概念二十五问
net webservice如何调出测试调用
雨过流痕 · 2012-05-18 · via 博客园 - 雨过流痕

.asmx的webservice可以在网页中看到服务提供的方法,点入,在本机可以看到测试调用,而非本机就不能看到测试调用,只要我们在web.config中的system.web配置节点下增加这一段配置即可:

Xml代码 复制代码 收藏代码

  1. <webServices>  
  2.     <protocols>  
  3.         <add name="HttpSoap" />  
  4.         <add name="HttpGet" />  
  5.         <add name="HttpPost" />  
  6.     </protocols>  
  7. </webServices>  
<webServices>
    <protocols>
        <add name="HttpSoap" />
        <add name="HttpGet" />
        <add name="HttpPost" />
    </protocols>
</webServices>