NuSOAP 시작하기

Jmnote (토론 | 기여)님의 2012년 10월 2일 (화) 15:55 판 (→‎server.php)
NuSOAP 시작하기
NuSOAP 튜토리얼
  • PHP용 SOAP 도구.

1 설치

  • http://sourceforge.net/projects/nusoap/ 접속
  • [Download]
  • 기다리면 nusoap-0.9.5.zip 파일 자동 다운로드
  • 압축해제
  • 자신의 웹서버의 DOCUMENT_ROOT 아래에 soap 폴더 생성
  • lib 폴더 전체를 서버의 soap 폴더에 업로드

2 server.php

<?php
require_once('/var/www/html/soap/lib/nusoap.php');
$server = new nusoap_server;
$server->configureWSDL('wsdl');
$server->register("hello",
	array('name' => 'xsd:string'),
	array('return' => 'xsd:string'));
function hello($name) { return "Hello, $name!"; }
$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
$server->service($HTTP_RAW_POST_DATA);
?>

3 client.php

server.php와 client.php는 서로 다른 서버에 있는 경우가 많겠지만, 튜토리얼이므로 한 폴더에 두고 테스트해보자.

<?php
require_once('/var/www/html/soap/lib/nusoap.php');
$params = array('name'=>'John Smith');
$soapclient = new soapclient('http://jmnote.com/soap/server.php');
echo $soapclient->call('hello',$params);
?>

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}