1

Web サービス、html ページでサービスにアクセスするとエラーが発生します。これが私のコードです。

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<script type ="text/javascript"  language="JavaScript">
 function InitializeService()     
 {
    service.useService(http://www.freewebservicesx.com/GetGoldPrice.asmx?WSDL,
    "GetCurrentGoldPrice");

 }

 Function getgold()
 {
   var users="xxxxx";
   var pawd="xxx";
   service.GetCurrentGoldPrice.callService("GetCurrentGoldPrice",users,pawd);
 }

   function ShowResult()
   {
     alert(event.result.value);
   } 

 </script>

 </head>
  <body  onload="InitializeService()" id="service"  onresult="ShowResult()">
  <button onclick="getgold()">Get Age</button>
  </body>
 </html>
4

2 に答える 2

1

私はjsfiddleでそれを試しました...ここにありますhttp://jsfiddle.net/XNEhp/

に変更してみてFunction getgold()くださいfunction getgold()

そして、次の変更を行います..

から

function InitializeService()     
 {
    service.useService(http://www.freewebservicesx.com/GetGoldPrice.asmx?WSDL,
    "GetCurrentGoldPrice");

 }

 function InitializeService()     
 {
    service.useService('http://www.freewebservicesx.com/GetGoldPrice.asmx?WSDL',
    'GetCurrentGoldPrice');

 }

今何が起こっているのか教えてください...

それが役に立てば幸い。

于 2013-04-10T06:39:53.533 に答える