Changeset 2944
- Timestamp:
- 09/24/08 15:54:58 (2 months ago)
- Location:
- branches/1.0
- Files:
-
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
samples/pub/soap-test.php (modified) (1 diff)
-
samples/pub/xmlrpc-test.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/CHANGELOG
r2942 r2944 80 80 ------------------------------- 81 81 82 FIX: SOAP and XMLRPC test scripts in sample app are broken (#866) (David) 82 83 FIX: Certain validator names will cause a fatal error (#863) (David) 83 84 FIX: Sample app SearchEngineSpamAction works with invalid product names (#861) (David) -
branches/1.0/samples/pub/soap-test.php
r2028 r2944 10 10 11 11 if(!isset($_GET['item'])) { 12 $_GET['item'] = 'nonsense';12 $_GET['item'] = 123456; 13 13 } 14 14 -
branches/1.0/samples/pub/xmlrpc-test.php
r1964 r2944 8 8 <h1>Agavi XML-RPC Test</h1> 9 9 <?php 10 $request = xmlrpc_encode_request('getItemPrice', array(' name' => 'nonsense'), array("encoding" => "utf-8", "escaping" => "markup"));10 $request = xmlrpc_encode_request('getItemPrice', array('id' => 123456), array("encoding" => "utf-8", "escaping" => "markup")); 11 11 12 12 $url = "http://localhost/~dzuelke/_projects/agavi/branches/0.11/samples/pub/xmlrpc.php";

