Hey,
I have run into a bit of a problem. Because of problems with displaying the order confirmation with DIBS payment, I would like to subscribe to "Ecom7CartCheckoutDoneOrderIsComplete" but it does not seem to work either. I getthe order as an argument, so it could be a way to circumvent the Cart v2 bug.
This just doesn't seem to work:
[Dynamicweb.Extensibility.Subscribe ("Ecom7CartCheckoutDoneOrderIsComplete")]
public class AfterDIBS: Dynamicweb.Extensibility.NotificationSubscriber
(
public override void OnNotify (string notification, object [] args)
(
HttpContext.Current.Response.Write ("notify");
)
)
Do I have to subscribe to eCom7 notifications in another way?
What to do here?