payment gateway response

We are creating a custom gateway through Authorize.net. We are getting an error saying "The Method or operations is not implemented" while using PaymentGatewayResponse response Object.

Has anyone had a similar issue and have you been able to resolve? It also to submit a response string. Does any one know how the string should be formatted?

Please see the attached code segment.

 

Thanks,

MSP

 

AttachmentSize
PaymentGatewayResponse.doc22.5 KB

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Looks like you didn't

Looks like you didn't implement PaymentGatewayResponse object methods correctly. have you got all these methods in your class

 

public class PayflowProPaymentGatewayResponse : PaymentGatewayResponse
{
      // Methods
      public PayflowProPaymentGatewayResponse();
      internal static PayflowProPaymentGatewayResponse GenerateResponse(string responseString);
      internal static Hashtable ParseQueryString(string queryString);
      internal static PayflowProPaymentGatewayResponse SetStatus(PayflowProPaymentGatewayResponse response, string statusCode);
}

Thank you

Balaji,

Thank you for taking time to read the code and your response. Yes, we figured out the same over the weekend on how to use the Response Class.  I appreciate you posting sample code that would help other new imis users like me.

Thank you,

MSP.