Page 1 of 1

soap issue

Posted: Wed Dec 13, 2006 2:19 am
by itsmani1

Code: Select all

require_once('nusoap.php');
function getXML($actionz,$param)
{
	$serverpath ='http://services.Preview.eventinventory.com/webservices/ticketsearch.asmx';
	$namespace="http://www.eventinventory.com/webservices/";
	$soapclient = new soapclient($serverpath);
	$soapAction='http://www.eventinventory.com/webservices/'.$actionz.'';
	$result = $soapclient->call($actionz,$param,$namespace,$soapAction);
	if (isset($fault))
	{
		print "Error: ". $fault;
	}
	else if ($result)
	{
		$mannan_tmp = $soapclient->responseData;
	}
	else
	{
		print "No result";
	}
	unset($soapclient);
	return $mannan_tmp;
}

Code: Select all

$b =& new xmlParser();
	$b->tmp = 'ROW';
	$tstz = getXML('GetAllProductions',array('SecurityToken' => '2220'));
	$mike = $b->parse($tstz);

	print_r($mike);
	exit;
when i try to access 5000 record its says no result, if i try to access an xml with 2000 it works fine. any help.