NuSOAP 시작하기

Jmnote (토론 | 기여)님의 2012년 10월 2일 (화) 12:56 판
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');
$s = new soap_server;
$s->register('hello');
function hello($name){
	if($name == '')	return new soap_fault('Client','','invalid name...');
	return "Hello, $name";
}
$s->service($HTTP_RAW_POST_DATA);
?>

Notice: Undefined variable: HTTP_RAW_POST_DATA in /var/www/html/soap/server.php on line 10 This service does not provide a Web description

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