Hi cyberpawn and welcome to Nokia's Discussion Boards,
If you don't receive a call back, that means that the status you receive from the purchaseProduct method
Code:
int status = manager.purchaseProduct("XXXXXX", IAPClientPaymentManager.DEFAULT_AUTHENTICATION);
is not a SUCCESS one, i.e.
Code:
if (status != IAPClientPaymentManager.SUCCESS) {
System.out.println("Failure, with status: " + status);
}
Can you please print out what status is returned from the call?
Also in order to get a better understanding about your case, can you please specify, if this is a DRM or a non-DRM case? Are you using your own backend server for ticket verification purposes?