我需要调用用Java构建的Web服务,以便通过Java脚本从HTML页面调用。
我尝试过以下网址提供的代码示例:http://www.codeproject.com/Articles/14610/Calling-Web-Services-from-HTML-Pages-using-JavaScr#
<html>
<head>
<title>Hello World</title>
<script language="JavaScript">
var iCallID;
function InitializeService(){
service.useService(http://localhost:1394/MyWebService.asmx?wsdl,
"HelloWorldService");
service.HelloWorldService.callService("HelloWorld");
}
function ShowResult(){
alert(event.result.value);//Output: Undefined
}
</script>
</head>
<body onload="InitializeService()" id="service"
style="behavior:url(webservice.htc)" onresult="ShowResult()"> </body>
</html>
Web服务正在运行,并已通过Weblogic内置测试客户端进行测试。
请建议使用字符串参数调用Web服务的一些JS代码