Problem with the sending order to paypal
Someone please help! I am getting this problem when I click on ORDER SUBMIT link to send order to paypal for processing.
The partner transaction manager has disabled its support for remote/network transactions. (Exception from HRESULT: 0x8004D025)
Line 658: cmd.Parameters.Add("@Quantity", SqlDbType.Int).Value = orderItem.Quantity;Line 659: cmd.Parameters.Add("@OrderItemID", SqlDbType.Int).Direction = ParameterDirection.Output;Line 660: cn.Open();Line 661: int ret = ExecuteNonQuery(cmd);Line 662: return (int)cmd.Parameters["@OrderItemID"].Value;
Can anyone please tell me how to resovle this problem.
|