JAVA は PHP SOAP サービスを呼び出します
WebService は、クロスプラットフォームのリモート呼び出しメソッドです。一方がサービスを提供し、もう一方がサービスを使用します。送信プロトコルはHTTPで、送信データはXML形式です。
WSDL と SOAP の 2 つの方法があります。現在のところ、SOAP のみが言及されています。
1.PHP は SOAP サービスを提供します
加算、減算、除算の 3 つの演算を含むクラスを定義します
<?php class Operator{ public function add($x,$y){ return $x+$y; } public function substract($x,$y){ return $x-$y; } public function divide($x,$y){ return $x/$y; } } ?>
PHP SOAP API を使用して SOAP サービスを提供します。 (SOAP 拡張機能をオンにする必要があります)
<?php require("Operator.php"); $server = new SoapServer(null,array('uri' => "http://localhost:8089")); $server->setClass("Operator"); $server->handle(); ?>
サービスを提供するphpがindex.php
2. JAVA は PHP が提供する SOAP サービスを使用します
import java.util.ArrayList; import java.util.HashMap; import java.util.List; import javax.xml.soap.MessageFactory; import javax.xml.soap.Node; import javax.xml.soap.SOAPBody; import javax.xml.soap.SOAPConnection; import javax.xml.soap.SOAPConnectionFactory; import javax.xml.soap.SOAPElement; import javax.xml.soap.SOAPEnvelope; import javax.xml.soap.SOAPException; import javax.xml.soap.SOAPMessage; import javax.xml.soap.SOAPPart; public class Main { public void testSOAP(String opename,int x,int y){ String url = "http://localhost:8089/index.php"; SOAPConnectionFactory soapConnectionFactory = null; SOAPConnection soapConnection = null; MessageFactory messageFactory = null; SOAPMessage soapMessage = null; SOAPPart soapPart = null; SOAPEnvelope soapEnvelope = null; SOAPBody body = null; try{ //建立连接 soapConnectionFactory = SOAPConnectionFactory.newInstance(); soapConnection = soapConnectionFactory.createConnection(); messageFactory = MessageFactory.newInstance(); soapMessage = messageFactory.createMessage(); soapPart = soapMessage.getSOAPPart(); soapEnvelope = soapPart.getEnvelope(); //设置调用的webservice方法,及传参 body = soapEnvelope.getBody(); SOAPElement element = body.addChildElement(soapEnvelope.createName(opename)); element.addChildElement("in0").addTextNode(String.valueOf(x)); element.addChildElement("in1").addTextNode(String.valueOf(y)); soapMessage.saveChanges(); //获取返回值 SOAPMessage reply = soapConnection.call(soapMessage,url); soapPart = reply.getSOAPPart(); soapEnvelope = soapPart.getEnvelope(); body = soapEnvelope.getBody(); Node returnvalue = (Node) body.getChildElements().next(); if (returnvalue != null) { if (returnvalue.getChildNodes().item(0).getNodeName().equals("return")) { List<HashMap<String,String>> ReturnArray = new ArrayList<HashMap<String,String>>(); for (int i=0;i<returnvalue.getChildNodes().item(0).getChildNodes().getLength();i++) { String key = returnvalue.getChildNodes().item(0).getChildNodes().item(i).getNodeName(); String value = returnvalue.getChildNodes().item(0).getChildNodes().item(i).getNodeValue(); System.out.println(key+":"+value); } } } else { System.out.println("nothing returned"); } }catch(Exception ex){ ex.printStackTrace(); }finally{ try { soapConnection.close(); } catch (SOAPException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } public static void main(String[] args) { Main main = new Main(); System.out.println("3+4:"); main.testSOAP("add",3,4); System.out.println("9-7:"); main.testSOAP("substract",9,7); System.out.println("20/4:"); main.testSOAP("divide",20,4); } }
実行結果は次のとおりです:
3+4:
#テキスト:7
9-7:
#テキスト:2
20/4:
#text:5