Changeset 2943

Show
Ignore:
Timestamp:
09/24/08 15:50:07 (8 weeks ago)
Author:
david
Message:

Fixed #866: SOAP and XMLRPC test scripts in sample app are broken

Location:
branches/0.11
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/CHANGELOG

    r2931 r2943  
    55------------------------------- 
    66 
     7FIX: SOAP and XMLRPC test scripts in sample app are broken (#866) (David) 
    78FIX: Certain validator names will cause a fatal error (#863) (David) 
    89FIX: Sample app SearchEngineSpamAction works with invalid product names (#861) (David) 
  • branches/0.11/samples/pub/soap-test.php

    r2014 r2943  
    1010 
    1111if(!isset($_GET['item'])) { 
    12   $_GET['item'] = 'nonsense'; 
     12  $_GET['item'] = 123456; 
    1313} 
    1414 
  • branches/0.11/samples/pub/xmlrpc-test.php

    r1894 r2943  
    88    <h1>Agavi XML-RPC Test</h1> 
    99<?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")); 
    1111 
    1212$url = "http://localhost/~dzuelke/_projects/agavi/branches/0.11/samples/pub/xmlrpc.php";