Index: temp/trunk/html/test/kakinaka/epsilon_check.php
===================================================================
--- temp/trunk/html/test/kakinaka/epsilon_check.php	(revision 8536)
+++ temp/trunk/html/test/kakinaka/epsilon_check.php	(revision 8645)
@@ -2,7 +2,8 @@
 require_once("../../require.php");
 require_once(MODULE_PATH . "mdl_epsilon/mdl_epsilon.inc");
+require_once(DATA_PATH . "module/Request.php");
 
 $objQuery = new SC_Query();
-
+/*
 // trans_code ¤ò»ØÄê¤µ¤ì¤Æ¤¤¤Æ³î¤Ä¡¢Æþ¶âºÑ¤ß¤Î¾ì¹ç
 if($_POST["trans_code"] != "" and $_POST["paid"] == 1 and $_POST["order_number"] != ""){
@@ -18,5 +19,32 @@
 	}
 	gfPrintLog("epsilon conveni end-----------------------------------------------------------", $log_path);
-}
+*/
+
+    // URI¤«¤é³Æ¾ðÊó¤ò¼èÆÀ
+    $info = parse_url( $_SERVER["REQUEST_URI"] );
+    $scheme = $info['scheme'];
+    $host = $info['host'];
+    $port = $info['port'];
+    $path = $info['path'];
+
+	$req =& new HTTP_Request($_SERVER["REQUEST_URI"]);
+	$req->addHeader("Content-Type", "text/plan");
+	
+$body = "Content-Type: text/plain
+
+1";
+
+	$req->setBody($body);
+	
+	sfprintr($req->getResponseBody());
+	
+	$req->clearPostData();
+	
+	if (PEAR::isError($req)) {
+	    echo $req->getMessage();
+	} else {
+	    echo $req->getResponseBody();
+	}
+//}
 
 ?>
Index: temp/trunk/html/test/kakinaka/send.php
===================================================================
--- temp/trunk/html/test/kakinaka/send.php	(revision 8555)
+++ temp/trunk/html/test/kakinaka/send.php	(revision 8645)
@@ -23,5 +23,7 @@
 }
 
-$req->clearPostData();
+$body = "Content-Type: text/plain
+
+1";
 
 ?>
