Hi All,
My following line of Code in the Checkout Webservice of my android application is taking too much time. its taking 60 seconds while it was working properly before.
$orderId = $cli->shoppingCartOrder($session_id, $shoppingCartId, null, null);
Checked further and Found following code is taking too much time.
$transaction->addObject($order);
$transaction->addCommitCallback(array($order, 'place'));
$transaction->addCommitCallback(array($order, 'save'));
$transaction->save();
Please help
Thanks,