"NuSOAP 시작하기"의 두 판 사이의 차이

15번째 줄: 15번째 줄:
<?php
<?php
require_once('/var/www/html/soap/lib/nusoap.php');
require_once('/var/www/html/soap/lib/nusoap.php');
$s = new soap_server;
$server = new nusoap_server;
$s->register('hello');
$server->configureWSDL('wsdl');
function hello($name) {
$server->register("hello",
if($name == '') return new soap_fault('Client','','invalid name...');
array('name' => 'xsd:string'),
return "Hello, $name";
array('return' => 'xsd:string'));
}
function hello($name) { return "Hello, $name!"; }
$s->service($HTTP_RAW_POST_DATA);
$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
$server->service($HTTP_RAW_POST_DATA);
?>
?>
</source>
</source>


http://도메인/soap/server.php 를 실행해보면...
*예시: http://jmnote.com/nusoap/server.php
{{인용문|
Notice: Undefined variable: HTTP_RAW_POST_DATA in /var/www/html/soap/server.php on line 9
This service does not provide a Web description
}}
:→ 입력값이 없어서 아무것도 안함.


==client.php==
==client.php==

2012년 10월 2일 (화) 15:55 판

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 }}