전:PHP 호출 웹 서비스 인 스 턴 스

NuSoap 은 PHP 환경 에서 WebService 프로 그래 밍 도구 로 WebService 를 만 들 거나 호출 하 는 데 사 용 됩 니 다.이것 은 PHP 언어 로 작 성 된 HTTP 를 통 해 SOAP 메 시 지 를 보 내 는 일련의 PHP 클래스 입 니 다.NuSphere Corporation(
개발NuSOAP 의 장점 중 하 나 는 확장 라 이브 러 리 의 지원 이 필요 하지 않다 는 것 이다.이러한 특성 으로 인해 NuSoap 은 서버 보안 설정 의 영향 을 받 지 않 고 모든 PHP 환경 에 사용 할 수 있다.
방법 1:직접 호출

<?
/******************************************************************************/
/*      : soapclient.php
/*       : WebService       
/******************************************************************************/
include('NuSoap.php');

//     soapclient  ,   server WSDL 
$client = new soapclient('http://localhost/Webservices/Service.asmx?WSDL', 'wsdl');

//           
$aryPara = array('strUsername'=>'username', 'strPassword'=>MD5('password'));

//       
$aryResult = $client->call('login',$aryPara);

//echo $client->debug_str;
/*
if (!$err=$client->getError()) {
  print_r($aryResult); 
} else { 
  print "ERROR: $err"; 
}
*/

$document=$client->document;
echo <<<SoapDocument
<?xml version="1.0" encoding="GB2312"?>
 <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:si="http://soapinterop.org/xsd">
   <SOAP-ENV:Body>
   $document
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>
SoapDocument;

?>

방법 2:에이전트 호출

<?
/******************************************************************************/
/*      : soapclient.php
/*       : WebService       
/******************************************************************************/
require('NuSoap.php'); 

//    soapclient  ,   server WSDL 
$client=new soapclient('http://localhost/Webservices/Service.asmx?WSDL', 'wsdl'); 

//  proxy  
$proxy=$client->getProxy(); 

//       
$aryResult=$proxy->login('username',MD5('password'));

//echo $client->debug_str;
/*
if (!$err=$proxy->getError()) {
  print_r($aryResult); 
} else { 
  print "ERROR: $err"; 
}
*/

$document=$proxy->document;
echo <<<SoapDocument
<?xml version="1.0" encoding="GB2312"?>
 <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:si="http://soapinterop.org/xsd">
   <SOAP-ENV:Body>
   $document
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>
SoapDocument;

?>

NuSoap 을 사용 하여.NET WebService 나 J2EE 를 호출 하 는 경우 가 많 습 니 다.  WebService 의 친구 들 은 모두 중국어 난 장 판 문 제 를 겪 었 을 수 있 습 니 다.다음은 이 문제 가 발생 한 원인 과 해당 하 는 해결 방법 을 소개 합 니 다.
  
NuSoap 에서 WebService 를 호출 하여 오류 가 발생 한 원인:
보통 저희 가 WebService 개발 을 할 때 UTF-8 인 코딩 을 사용 합 니 다.이 때 설정 이 필요 합 니 다.

$client->soap_defencoding = 'utf-8';

동시에 xml 를 같은 인 코딩 으로 전달 해 야 합 니 다.

$client->xml_encoding = 'utf-8';

이 쯤 되면 모든 것 이 정상 이 어야 하 는데,우 리 는 결 과 를 출력 할 때,돌아 오 는 것 이 난 장 판 이라는 것 을 알 게 되 었 다.
  
NuSoap 에서 WebService 를 호출 하여 난동 을 일 으 키 는 해결 방법:
실제로 디 버 깅 기능 을 시작 한 친 구 는$client->response 가 정확 한 결 과 를 되 돌려 줄 것 이 라 고 믿 습 니 다.왜$result=$client->call($action,array('parameters'=>$param)을 발견 합 니까?난 코드 인 데?
NuSoap 코드 를 연구 한 후에 우 리 는 xmlencoding 이 UTF-8 로 설정 되면 NuSoap 에서 decode 를 감지 합 니 다.utf 8 의 설정,true 라면 PHP 의 utf 8 을 실행 합 니 다.decode 함수,NuSoap 기본 값 은 true 입 니 다.따라서 설정 이 필요 합 니 다.

$client->soap_defencoding = 'utf-8';
$client->decode_utf8 = false;
$client->xml_encoding = 'utf-8';

좋은 웹페이지 즐겨찾기