server.php 23.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
<?php
/**
 * Demo server for xmlrpc library.
 *
 * Implements a lot of webservices, including a suite of services used for
 * interoperability testing (validator1 methods), and some whose only purpose
 * is to be used for unit-testing the library.
 *
 * Please do not copy this file verbatim into your production server.
 *
 * @version $Id: server.php,v 1.21 2006/08/21 09:24:10 ggiunta Exp $
 **/

// give user a chance to see the source for this server instead of running the services
if ($_SERVER['REQUEST_METHOD'] != 'POST' && isset($_GET['showSource']))
{
	highlight_file(__FILE__);
	die();
}

	include("xmlrpc.inc");
	include("xmlrpcs.inc");
	include("xmlrpc_wrappers.inc");

	/**
	* Used to test usage of object methods in dispatch maps
	*/
	class xmlrpc_server_methods_container
	{
		/*
		* Method used to test logging of php warnings generated by user functions.
		*/
		function phpwarninggenerator($m)
		{
			$a = $b; // this triggers a warning in E_ALL mode, since $b is undefined
			return new xmlrpcresp(new xmlrpcval(1, 'boolean'));
		}
	}


	// a PHP version
	// of the state-number server
	// send me an integer and i'll sell you a state

	$stateNames = array(
		"Alabama", "Alaska", "Arizona", "Arkansas", "California",
		"Colorado", "Columbia", "Connecticut", "Delaware", "Florida",
		"Georgia", "Hawaii", "Idaho", "Illinois", "Indiana", "Iowa", "Kansas",
		"Kentucky", "Louisiana", "Maine", "Maryland", "Massachusetts", "Michigan",
		"Minnesota", "Mississippi", "Missouri", "Montana", "Nebraska", "Nevada",
		"New Hampshire", "New Jersey", "New Mexico", "New York", "North Carolina",
		"North Dakota", "Ohio", "Oklahoma", "Oregon", "Pennsylvania", "Rhode Island",
		"South Carolina", "South Dakota", "Tennessee", "Texas", "Utah", "Vermont",
		"Virginia", "Washington", "West Virginia", "Wisconsin", "Wyoming"
	);

	$findstate_sig=array(array($xmlrpcString, $xmlrpcInt));
	$findstate_doc='When passed an integer between 1 and 51 returns the
name of a US state, where the integer is the index of that state name
in an alphabetic order.';


	function findstate($m)
	{
		global $xmlrpcerruser, $stateNames;
		$err="";
		// get the first param
		$sno=$m->getParam(0);

		// param must be there and of the correct type: server object does the
		// validation for us

		// extract the value of the state number
		$snv=$sno->scalarval();
		// look it up in our array (zero-based)
		if (isset($stateNames[$snv-1]))
		{
			$sname=$stateNames[$snv-1];
		}
		else
		{
			// not, there so complain
			$err="I don't have a state for the index '" . $snv . "'";
		}

		// if we generated an error, create an error return response
		if ($err)
		{
			return new xmlrpcresp(0, $xmlrpcerruser, $err);
		}
		else
		{
			// otherwise, we create the right response
			// with the state name
			return new xmlrpcresp(new xmlrpcval($sname));
		}
	}

	/**
	* Inner code of the state-number server.
	* Used to test auto-registration of PHP funcions as xmlrpc methods.
	* @param integer $stateno the state number
	* @return string the name of the state (or error descrption)
	*/
	function inner_findstate($stateno)
	{
		global $stateNames;
		if (isset($stateNames[$stateno-1]))
		{
			return $stateNames[$stateno-1];
		}
		else
		{
			// not, there so complain
			return "I don't have a state for the index '" . $stateno . "'";
		}
	}
	$findstate2_sig = wrap_php_function('inner_findstate');

	$addtwo_sig=array(array($xmlrpcInt, $xmlrpcInt, $xmlrpcInt));
	$addtwo_doc='Add two integers together and return the result';
	function addtwo($m)
	{
		$s=$m->getParam(0);
		$t=$m->getParam(1);
		return new xmlrpcresp(new xmlrpcval($s->scalarval()+$t->scalarval(),"int"));
	}

	$addtwodouble_sig=array(array($xmlrpcDouble, $xmlrpcDouble, $xmlrpcDouble));
	$addtwodouble_doc='Add two doubles together and return the result';
	function addtwodouble($m)
	{
		$s=$m->getParam(0);
		$t=$m->getParam(1);
		return new xmlrpcresp(new xmlrpcval($s->scalarval()+$t->scalarval(),"double"));
	}

	$stringecho_sig=array(array($xmlrpcString, $xmlrpcString));
	$stringecho_doc='Accepts a string parameter, returns the string.';
	function stringecho($m)
	{
		// just sends back a string
		$s=$m->getParam(0);
		$v = $s->scalarval();
		return new xmlrpcresp(new xmlrpcval($s->scalarval()));
	}

	$echoback_sig=array(array($xmlrpcString, $xmlrpcString));
	$echoback_doc='Accepts a string parameter, returns the entire incoming payload';
	function echoback($m)
	{
		// just sends back a string with what i got
		// sent to me, just escaped, that's all
		//
		// $m is an incoming message
		$s="I got the following message:\n" . $m->serialize();
		return new xmlrpcresp(new xmlrpcval($s));
	}

	$echosixtyfour_sig=array(array($xmlrpcString, $xmlrpcBase64));
	$echosixtyfour_doc='Accepts a base64 parameter and returns it decoded as a string';
	function echosixtyfour($m)
	{
		// accepts an encoded value, but sends it back
		// as a normal string. this is to test base64 encoding
		// is working as expected
		$incoming=$m->getParam(0);
		return new xmlrpcresp(new xmlrpcval($incoming->scalarval(), "string"));
	}

	$bitflipper_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$bitflipper_doc='Accepts an array of booleans, and returns them inverted';
	function bitflipper($m)
	{
		global $xmlrpcArray;

		$v=$m->getParam(0);
		$sz=$v->arraysize();
		$rv=new xmlrpcval(array(), $xmlrpcArray);

		for($j=0; $j<$sz; $j++)
		{
			$b=$v->arraymem($j);
			if ($b->scalarval())
			{
				$rv->addScalar(false, "boolean");
			}
			else
			{
				$rv->addScalar(true, "boolean");
			}
		}

		return new xmlrpcresp($rv);
	}

	// Sorting demo
	//
	// send me an array of structs thus:
	//
	// Dave 35
	// Edd  45
	// Fred 23
	// Barney 37
	//
	// and I'll return it to you in sorted order

	function agesorter_compare($a, $b)
	{
		global $agesorter_arr;

		// don't even ask me _why_ these come padded with
		// hyphens, I couldn't tell you :p
		$a=ereg_replace("-", "", $a);
		$b=ereg_replace("-", "", $b);

		if ($agesorter_arr[$a]==$agesorter[$b])
		{
			return 0;
		}
		return ($agesorter_arr[$a] > $agesorter_arr[$b]) ? -1 : 1;
	}

	$agesorter_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$agesorter_doc='Send this method an array of [string, int] structs, eg:
<pre>
 Dave   35
 Edd    45
 Fred   23
 Barney 37
</pre>
And the array will be returned with the entries sorted by their numbers.
';
	function agesorter($m)
	{
		global $agesorter_arr, $xmlrpcerruser, $s;

		xmlrpc_debugmsg("Entering 'agesorter'");
		// get the parameter
		$sno=$m->getParam(0);
		// error string for [if|when] things go wrong
		$err="";
		// create the output value
		$v=new xmlrpcval();
		$agar=array();

		if (isset($sno) && $sno->kindOf()=="array")
		{
			$max=$sno->arraysize();
			// TODO: create debug method to print can work once more
			// print "<!-- found $max array elements -->\n";
			for($i=0; $i<$max; $i++)
			{
				$rec=$sno->arraymem($i);
				if ($rec->kindOf()!="struct")
				{
					$err="Found non-struct in array at element $i";
					break;
				}
				// extract name and age from struct
				$n=$rec->structmem("name");
				$a=$rec->structmem("age");
				// $n and $a are xmlrpcvals,
				// so get the scalarval from them
				$agar[$n->scalarval()]=$a->scalarval();
			}

			$agesorter_arr=$agar;
			// hack, must make global as uksort() won't
			// allow us to pass any other auxilliary information
			uksort($agesorter_arr, agesorter_compare);
			$outAr=array();
			while (list( $key, $val ) = each( $agesorter_arr ) )
			{
				// recreate each struct element
				$outAr[]=new xmlrpcval(array("name" =>
				new xmlrpcval($key),
				"age" =>
				new xmlrpcval($val, "int")), "struct");
			}
			// add this array to the output value
			$v->addArray($outAr);
		}
		else
		{
			$err="Must be one parameter, an array of structs";
		}

		if ($err)
		{
			return new xmlrpcresp(0, $xmlrpcerruser, $err);
		}
		else
		{
			return new xmlrpcresp($v);
		}
	}

	// signature and instructions, place these in the dispatch
	// map
	$mail_send_sig=array(array(
		$xmlrpcBoolean, $xmlrpcString, $xmlrpcString,
		$xmlrpcString, $xmlrpcString, $xmlrpcString,
		$xmlrpcString, $xmlrpcString
	));

	$mail_send_doc='mail.send(recipient, subject, text, sender, cc, bcc, mimetype)<br/>
recipient, cc, and bcc are strings, comma-separated lists of email addresses, as described above.<br/>
subject is a string, the subject of the message.<br/>
sender is a string, it\'s the email address of the person sending the message. This string can not be
a comma-separated list, it must contain a single email address only.<br/>
text is a string, it contains the body of the message.<br/>
mimetype, a string, is a standard MIME type, for example, text/plain.
';
	// WARNING; this functionality depends on the sendmail -t option
	// it may not work with Windows machines properly; particularly
	// the Bcc option. Sneak on your friends at your own risk!
	function mail_send($m)
	{
		global $xmlrpcerruser, $xmlrpcBoolean;
		$err="";

		$mTo=$m->getParam(0);
		$mSub=$m->getParam(1);
		$mBody=$m->getParam(2);
		$mFrom=$m->getParam(3);
		$mCc=$m->getParam(4);
		$mBcc=$m->getParam(5);
		$mMime=$m->getParam(6);

		if ($mTo->scalarval()=="")
		{
			$err="Error, no 'To' field specified";
		}

		if ($mFrom->scalarval()=="")
		{
			$err="Error, no 'From' field specified";
		}

		$msghdr="From: " . $mFrom->scalarval() . "\n";
		$msghdr.="To: ". $mTo->scalarval() . "\n";

		if ($mCc->scalarval()!="")
		{
			$msghdr.="Cc: " . $mCc->scalarval(). "\n";
		}
		if ($mBcc->scalarval()!="")
		{
			$msghdr.="Bcc: " . $mBcc->scalarval(). "\n";
		}
		if ($mMime->scalarval()!="")
		{
			$msghdr.="Content-type: " . $mMime->scalarval() . "\n";
		}
		$msghdr.="X-Mailer: XML-RPC for PHP mailer 1.0";

		if ($err=="")
		{
			if (!mail("",
				$mSub->scalarval(),
				$mBody->scalarval(),
				$msghdr))
			{
				$err="Error, could not send the mail.";
			}
		}

		if ($err)
		{
			return new xmlrpcresp(0, $xmlrpcerruser, $err);
		}
		else
		{
			return new xmlrpcresp(new xmlrpcval("true", $xmlrpcBoolean));
		}
	}

	$getallheaders_sig=array(array($xmlrpcStruct));
	$getallheaders_doc='Returns a struct containing all the HTTP headers received with the request. Provides limited functionality with IIS';
	function getallheaders_xmlrpc($m)
	{
		global $xmlrpcerruser;
		if (function_exists('getallheaders'))
		{
			return new xmlrpcresp(php_xmlrpc_encode(getallheaders()));
		}
		else
		{
			$headers = array();
			// IIS: poor man's version of getallheaders
			foreach ($_SERVER as $key => $val)
				if (strpos($key, 'HTTP_') === 0)
				{
					$key = ucfirst(str_replace('_', '-', strtolower(substr($key, 5))));
					$headers[$key] = $val;
				}
			return new xmlrpcresp(php_xmlrpc_encode($headers));
		}
	}

	$setcookies_sig=array(array($xmlrpcInt, $xmlrpcStruct));
	$setcookies_doc='Sends to client a response containing a single \'1\' digit, and sets to it http cookies as received in the request (array of structs describing a cookie)';
	function setcookies($m)
	{
		$m = $m->getParam(0);
		while(list($name,$value) = $m->structeach())
		{
			$cookiedesc = php_xmlrpc_decode($value);
			setcookie($name, @$cookiedesc['value'], @$cookiedesc['expires'], @$cookiedesc['path'], @$cookiedesc['domain'], @$cookiedesc['secure']);
		}
		return new xmlrpcresp(new xmlrpcval(1, 'int'));
	}

	$v1_arrayOfStructs_sig=array(array($xmlrpcInt, $xmlrpcArray));
	$v1_arrayOfStructs_doc='This handler takes a single parameter, an array of structs, each of which contains at least three elements named moe, larry and curly, all <i4>s. Your handler must add all the struct elements named curly and return the result.';
	function v1_arrayOfStructs($m)
	{
		$sno=$m->getParam(0);
		$numcurly=0;
		for($i=0; $i<$sno->arraysize(); $i++)
		{
			$str=$sno->arraymem($i);
			$str->structreset();
			while(list($key,$val)=$str->structeach())
			{
				if ($key=="curly")
				{
					$numcurly+=$val->scalarval();
				}
			}
		}
		return new xmlrpcresp(new xmlrpcval($numcurly, "int"));
	}

	$v1_easyStruct_sig=array(array($xmlrpcInt, $xmlrpcStruct));
	$v1_easyStruct_doc='This handler takes a single parameter, a struct, containing at least three elements named moe, larry and curly, all &lt;i4&gt;s. Your handler must add the three numbers and return the result.';
	function v1_easyStruct($m)
	{
		$sno=$m->getParam(0);
		$moe=$sno->structmem("moe");
		$larry=$sno->structmem("larry");
		$curly=$sno->structmem("curly");
		$num=$moe->scalarval() + $larry->scalarval() + $curly->scalarval();
		return new xmlrpcresp(new xmlrpcval($num, "int"));
	}

	$v1_echoStruct_sig=array(array($xmlrpcStruct, $xmlrpcStruct));
	$v1_echoStruct_doc='This handler takes a single parameter, a struct. Your handler must return the struct.';
	function v1_echoStruct($m)
	{
		$sno=$m->getParam(0);
		return new xmlrpcresp($sno);
	}

	$v1_manyTypes_sig=array(array(
		$xmlrpcArray, $xmlrpcInt, $xmlrpcBoolean,
		$xmlrpcString, $xmlrpcDouble, $xmlrpcDateTime,
		$xmlrpcBase64
	));
	$v1_manyTypes_doc='This handler takes six parameters, and returns an array containing all the parameters.';
	function v1_manyTypes($m)
	{
		return new xmlrpcresp(new xmlrpcval(array(
			$m->getParam(0),
			$m->getParam(1),
			$m->getParam(2),
			$m->getParam(3),
			$m->getParam(4),
			$m->getParam(5)),
			"array"
		));
	}

	$v1_moderateSizeArrayCheck_sig=array(array($xmlrpcString, $xmlrpcArray));
	$v1_moderateSizeArrayCheck_doc='This handler takes a single parameter, which is an array containing between 100 and 200 elements. Each of the items is a string, your handler must return a string containing the concatenated text of the first and last elements.';
	function v1_moderateSizeArrayCheck($m)
	{
		$ar=$m->getParam(0);
		$sz=$ar->arraysize();
		$first=$ar->arraymem(0);
		$last=$ar->arraymem($sz-1);
		return new xmlrpcresp(new xmlrpcval($first->scalarval() .
		$last->scalarval(), "string"));
	}

	$v1_simpleStructReturn_sig=array(array($xmlrpcStruct, $xmlrpcInt));
	$v1_simpleStructReturn_doc='This handler takes one parameter, and returns a struct containing three elements, times10, times100 and times1000, the result of multiplying the number by 10, 100 and 1000.';
	function v1_simpleStructReturn($m)
	{
		$sno=$m->getParam(0);
		$v=$sno->scalarval();
		return new xmlrpcresp(new xmlrpcval(array(
			"times10"   => new xmlrpcval($v*10, "int"),
			"times100"  => new xmlrpcval($v*100, "int"),
			"times1000" => new xmlrpcval($v*1000, "int")),
			"struct"
		));
	}

	$v1_nestedStruct_sig=array(array($xmlrpcInt, $xmlrpcStruct));
	$v1_nestedStruct_doc='This handler takes a single parameter, a struct, that models a daily calendar. At the top level, there is one struct for each year. Each year is broken down into months, and months into days. Most of the days are empty in the struct you receive, but the entry for April 1, 2000 contains a least three elements named moe, larry and curly, all &lt;i4&gt;s. Your handler must add the three numbers and return the result.';
	function v1_nestedStruct($m)
	{
		$sno=$m->getParam(0);

		$twoK=$sno->structmem("2000");
		$april=$twoK->structmem("04");
		$fools=$april->structmem("01");
		$curly=$fools->structmem("curly");
		$larry=$fools->structmem("larry");
		$moe=$fools->structmem("moe");
		return new xmlrpcresp(new xmlrpcval($curly->scalarval() + $larry->scalarval() + $moe->scalarval(), "int"));
	}

	$v1_countTheEntities_sig=array(array($xmlrpcStruct, $xmlrpcString));
	$v1_countTheEntities_doc='This handler takes a single parameter, a string, that contains any number of predefined entities, namely &lt;, &gt;, &amp; \' and ".<BR>Your handler must return a struct that contains five fields, all numbers: ctLeftAngleBrackets, ctRightAngleBrackets, ctAmpersands, ctApostrophes, ctQuotes.';
	function v1_countTheEntities($m)
	{
		$sno=$m->getParam(0);
		$str=$sno->scalarval();
		$gt=0; $lt=0; $ap=0; $qu=0; $amp=0;
		for($i=0; $i<strlen($str); $i++)
		{
			$c=substr($str, $i, 1);
			switch($c)
			{
				case ">":
					$gt++;
					break;
				case "<":
					$lt++;
					break;
				case "\"":
					$qu++;
					break;
				case "'":
					$ap++;
					break;
				case "&":
					$amp++;
					break;
				default:
					break;
			}
		}
		return new xmlrpcresp(new xmlrpcval(array(
			"ctLeftAngleBrackets"  => new xmlrpcval($lt, "int"),
			"ctRightAngleBrackets" => new xmlrpcval($gt, "int"),
			"ctAmpersands"         => new xmlrpcval($amp, "int"),
			"ctApostrophes"        => new xmlrpcval($ap, "int"),
			"ctQuotes"             => new xmlrpcval($qu, "int")),
			"struct"
		));
	}

	// trivial interop tests
	// http://www.xmlrpc.com/stories/storyReader$1636

	$i_echoString_sig=array(array($xmlrpcString, $xmlrpcString));
	$i_echoString_doc="Echoes string.";

	$i_echoStringArray_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$i_echoStringArray_doc="Echoes string array.";

	$i_echoInteger_sig=array(array($xmlrpcInt, $xmlrpcInt));
	$i_echoInteger_doc="Echoes integer.";

	$i_echoIntegerArray_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$i_echoIntegerArray_doc="Echoes integer array.";

	$i_echoFloat_sig=array(array($xmlrpcDouble, $xmlrpcDouble));
	$i_echoFloat_doc="Echoes float.";

	$i_echoFloatArray_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$i_echoFloatArray_doc="Echoes float array.";

	$i_echoStruct_sig=array(array($xmlrpcStruct, $xmlrpcStruct));
	$i_echoStruct_doc="Echoes struct.";

	$i_echoStructArray_sig=array(array($xmlrpcArray, $xmlrpcArray));
	$i_echoStructArray_doc="Echoes struct array.";

	$i_echoValue_doc="Echoes any value back.";
	$i_echoValue_sig=array(array($xmlrpcValue, $xmlrpcValue));

	$i_echoBase64_sig=array(array($xmlrpcBase64, $xmlrpcBase64));
	$i_echoBase64_doc="Echoes base64.";

	$i_echoDate_sig=array(array($xmlrpcDateTime, $xmlrpcDateTime));
	$i_echoDate_doc="Echoes dateTime.";

	function i_echoParam($m)
	{
		$s=$m->getParam(0);
		return new xmlrpcresp($s);
	}

	function i_echoString($m) { return i_echoParam($m); }
	function i_echoInteger($m) { return i_echoParam($m); }
	function i_echoFloat($m) { return i_echoParam($m); }
	function i_echoStruct($m) { return i_echoParam($m); }
	function i_echoStringArray($m) { return i_echoParam($m); }
	function i_echoIntegerArray($m) { return i_echoParam($m); }
	function i_echoFloatArray($m) { return i_echoParam($m); }
	function i_echoStructArray($m) { return i_echoParam($m); }
	function i_echoValue($m) { return i_echoParam($m); }
	function i_echoBase64($m) { return i_echoParam($m); }
	function i_echoDate($m) { return i_echoParam($m); }

	$i_whichToolkit_sig=array(array($xmlrpcStruct));
	$i_whichToolkit_doc="Returns a struct containing the following strings: toolkitDocsUrl, toolkitName, toolkitVersion, toolkitOperatingSystem.";

	function i_whichToolkit($m)
	{
		global $xmlrpcName, $xmlrpcVersion,$SERVER_SOFTWARE;
		$ret=array(
			"toolkitDocsUrl" => "http://phpxmlrpc.sourceforge.net/",
			"toolkitName" => $xmlrpcName,
			"toolkitVersion" => $xmlrpcVersion,
			"toolkitOperatingSystem" => isset ($SERVER_SOFTWARE) ? $SERVER_SOFTWARE : $_SERVER['SERVER_SOFTWARE']
		);
		return new xmlrpcresp ( php_xmlrpc_encode($ret));
	}

	$o=new xmlrpc_server_methods_container;
	$a=array(
		"examples.getStateName" => array(
			"function" => "findstate",
			"signature" => $findstate_sig,
			"docstring" => $findstate_doc
		),
		"examples.sortByAge" => array(
			"function" => "agesorter",
			"signature" => $agesorter_sig,
			"docstring" => $agesorter_doc
		),
		"examples.addtwo" => array(
			"function" => "addtwo",
			"signature" => $addtwo_sig,
			"docstring" => $addtwo_doc
		),
		"examples.addtwodouble" => array(
			"function" => "addtwodouble",
			"signature" => $addtwodouble_sig,
			"docstring" => $addtwodouble_doc
		),
		"examples.stringecho" => array(
			"function" => "stringecho",
			"signature" => $stringecho_sig,
			"docstring" => $stringecho_doc
		),
		"examples.echo" => array(
			"function" => "echoback",
			"signature" => $echoback_sig,
			"docstring" => $echoback_doc
		),
		"examples.decode64" => array(
			"function" => "echosixtyfour",
			"signature" => $echosixtyfour_sig,
			"docstring" => $echosixtyfour_doc
		),
		"examples.invertBooleans" => array(
			"function" => "bitflipper",
			"signature" => $bitflipper_sig,
			"docstring" => $bitflipper_doc
		),
		"examples.generatePHPWarning" => array(
			"function" => array($o, "phpwarninggenerator")
			//'function' => 'xmlrpc_server_methods_container::phpwarninggenerator'
		),
		"examples.getallheaders" => array(
			"function" => 'getallheaders_xmlrpc',
			"signature" => $getallheaders_sig,
			"docstring" => $getallheaders_doc
		),
		"examples.setcookies" => array(
			"function" => 'setcookies',
			"signature" => $setcookies_sig,
			"docstring" => $setcookies_doc
		),
		"mail.send" => array(
			"function" => "mail_send",
			"signature" => $mail_send_sig,
			"docstring" => $mail_send_doc
		),
		"validator1.arrayOfStructsTest" => array(
			"function" => "v1_arrayOfStructs",
			"signature" => $v1_arrayOfStructs_sig,
			"docstring" => $v1_arrayOfStructs_doc
		),
		"validator1.easyStructTest" => array(
			"function" => "v1_easyStruct",
			"signature" => $v1_easyStruct_sig,
			"docstring" => $v1_easyStruct_doc
		),
		"validator1.echoStructTest" => array(
			"function" => "v1_echoStruct",
			"signature" => $v1_echoStruct_sig,
			"docstring" => $v1_echoStruct_doc
		),
		"validator1.manyTypesTest" => array(
			"function" => "v1_manyTypes",
			"signature" => $v1_manyTypes_sig,
			"docstring" => $v1_manyTypes_doc
		),
		"validator1.moderateSizeArrayCheck" => array(
			"function" => "v1_moderateSizeArrayCheck",
			"signature" => $v1_moderateSizeArrayCheck_sig,
			"docstring" => $v1_moderateSizeArrayCheck_doc
		),
		"validator1.simpleStructReturnTest" => array(
			"function" => "v1_simpleStructReturn",
			"signature" => $v1_simpleStructReturn_sig,
			"docstring" => $v1_simpleStructReturn_doc
		),
		"validator1.nestedStructTest" => array(
			"function" => "v1_nestedStruct",
			"signature" => $v1_nestedStruct_sig,
			"docstring" => $v1_nestedStruct_doc
		),
		"validator1.countTheEntities" => array(
			"function" => "v1_countTheEntities",
			"signature" => $v1_countTheEntities_sig,
			"docstring" => $v1_countTheEntities_doc
		),
		"interopEchoTests.echoString" => array(
			"function" => "i_echoString",
			"signature" => $i_echoString_sig,
			"docstring" => $i_echoString_doc
		),
		"interopEchoTests.echoStringArray" => array(
			"function" => "i_echoStringArray",
			"signature" => $i_echoStringArray_sig,
			"docstring" => $i_echoStringArray_doc
		),
		"interopEchoTests.echoInteger" => array(
			"function" => "i_echoInteger",
			"signature" => $i_echoInteger_sig,
			"docstring" => $i_echoInteger_doc
		),
		"interopEchoTests.echoIntegerArray" => array(
			"function" => "i_echoIntegerArray",
			"signature" => $i_echoIntegerArray_sig,
			"docstring" => $i_echoIntegerArray_doc
		),
		"interopEchoTests.echoFloat" => array(
			"function" => "i_echoFloat",
			"signature" => $i_echoFloat_sig,
			"docstring" => $i_echoFloat_doc
		),
		"interopEchoTests.echoFloatArray" => array(
			"function" => "i_echoFloatArray",
			"signature" => $i_echoFloatArray_sig,
			"docstring" => $i_echoFloatArray_doc
		),
		"interopEchoTests.echoStruct" => array(
			"function" => "i_echoStruct",
			"signature" => $i_echoStruct_sig,
			"docstring" => $i_echoStruct_doc
		),
		"interopEchoTests.echoStructArray" => array(
			"function" => "i_echoStructArray",
			"signature" => $i_echoStructArray_sig,
			"docstring" => $i_echoStructArray_doc
		),
		"interopEchoTests.echoValue" => array(
			"function" => "i_echoValue",
			"signature" => $i_echoValue_sig,
			"docstring" => $i_echoValue_doc
		),
		"interopEchoTests.echoBase64" => array(
			"function" => "i_echoBase64",
			"signature" => $i_echoBase64_sig,
			"docstring" => $i_echoBase64_doc
		),
		"interopEchoTests.echoDate" => array(
			"function" => "i_echoDate",
			"signature" => $i_echoDate_sig,
			"docstring" => $i_echoDate_doc
		),
		"interopEchoTests.whichToolkit" => array(
			"function" => "i_whichToolkit",
			"signature" => $i_whichToolkit_sig,
			"docstring" => $i_whichToolkit_doc
		)
	);

	if ($findstate2_sig)
		$a['examples.php.getStateName'] = $findstate2_sig;

	$s=new xmlrpc_server($a, false);
	$s->setdebug(3);
	$s->compress_response = true;

	// out-of-band information: let the client manipulate the server operations.
	// we do this to help the testsuite script: do not reproduce in production!
	if (isset($_GET['RESPONSE_ENCODING']))
		$s->response_charset_encoding = $_GET['RESPONSE_ENCODING'];

	$s->service();
	// that should do all we need!
?>