2

純粋な Java スクリプト コードから Web サービス メソッドを呼び出したいと考えています。そのコードは mozilla ブラウザーで動作するはずです。

これは私のWebサービスコードです:

package com.example.core;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import javax.xml.ws.Endpoint;

@WebService
public class Area {

@WebMethod
public double square(@WebParam(name="side") double side)
{
return side * side;
}

@WebMethod
public double rectangle(@WebParam(name="length") double length,@WebParam(name="breadth") double breadth)
{
 return length * breadth;
 }

 public static void main(String[] args) {
 Area area = new Area();
String url = "http://localhost:8090/area"; // end point of webservice.
 System.out.println(url+"?wsdl");
 Endpoint.publish(url, area);  // publishing the webservice
}
}

ここに私のHTMLファイルがあります:

<html>
<head>
<meta content="utf-8" http-equiv="encoding">
<meta content="text/xml;charset=utf-8" http-equiv="Content-Type">
<script language="javascript">

function call()
{
var side = sideid.value;
var side1 = sideid1.value;
var req = "<?xml version=\"1.0\" encoding=\"utf-8\"?>"+"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:web=\"http://core.codon.com/\"><soapenv:Body><web:rectangle><length>" + side+ "</length><breadth>" + side1+ "</breadth></web:rectangle></soapenv:Body></soapenv:Envelope>";
 //var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
 //var reqXML = xmlDoc.loadXML(req);
 var xmlDoc=document.implementation.createDocument("", "", null);
 xmlDoc.async=false;
 xmlDoc.onload = req; 
 //var reqXML = xmlDoc.load(req);
var xmlhttp;
if(window.XMLHttpRequest){
  xmlhttp=new XMLHttpRequest();
 }
 xmlhttp.onreadystatechange=function()
 {
 if (xmlhttp.readyState==4)
 {
  var response = xmlhttp.responseXML;

  alert(response.selectSingleNode(".//return").text);
   alert("======"+response);
  }
}
 var soapaction = "http://core.example.com/rectangle";
 xmlhttp.open("POST","http://localhost:8090/area?wsdl",true);
 xmlhttp.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
 xmlhttp.setRequestHeader("SOAPAction", soapaction);
 xmlhttp.send(req);
}
</script>
</head>
<body>
 Side Length: <input type="text" id="sideid"></input>
 Length: <input type="text" id="sideid1"></input>
 <button onclick="call();">area of square</button>
 </body>
 </html>

上記のコードでは、応答が null として取得されます。同じコードが IE では動作しますが、mozilla では動作しません...

私のWebサービス側で次のエラーが発生しています

 com.sun.xml.internal.ws.transport.http.server.WSHttpHandler handleExchange
 WARNING: Cannot handle HTTP method: OPTIONS

私を助けてください..事前に感謝します

4

2 に答える 2

1

SOAP UI を使用して、Web サービス クライアントを生成し、サンプル リクエストを生成するので、SOAP エンベロープを最初から作成する必要はありません。次に、jQuery を使用して、生成された SOAP エンベロープを利用して AJAX 要求を生成します。

もう 1 つの方法は、http://cxf.apache.org/docs/javascript-clients.htmlを利用することです。この方法で完全な JavaScript が生成されます。

于 2013-04-23T16:14:32.630 に答える