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

25번째 줄: 25번째 줄:
</source>
</source>


http://도메인/soap/server.php 를 실행해보면...
{{인용문|
{{인용문|
Notice: Undefined variable: HTTP_RAW_POST_DATA in /var/www/html/soap/server.php on line 10
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
This service does not provide a Web description
}}
}}


[[분류: NuSOAP]]
[[분류: NuSOAP]]

2012년 10월 2일 (화) 12:57 판

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);
?>

http://도메인/soap/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

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