首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

有哪些简单好用的WebService测试工具?该怎么处理

2012-03-27 
有哪些简单好用的WebService测试工具?如题[解决办法] script language javascript var xmlhttp nul

有哪些简单好用的WebService测试工具?
如题

[解决办法]
<script language= "javascript ">
var xmlhttp = null;

function Invoke()
{
xmlhttp = new ActiveXObject( "Microsoft.XMLHTTP ");
xmlhttp.open( "POST ", "http://server/service.asmx/method_name ", true);

xmlhttp.onreadystatechange = function() {
if(xmlhttp.readyState == 4)
{
alert(xmlhttp.responseText);
}
};

xmlhttp.setRequestHeader( "Content-Type ", "application/x-www-form-urlencoded ");
xmlhttp.send( "param1=value1&param2=value2 ");
}
</script>

热点排行