Congratulations to all monthly winners of May 2013 !!! They have won INR 2900 cash and INR 27497 worth prize.
Go to DotNetFunda.com
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 15627 |  Welcome, Guest!   Register  Login
Home > Articles > C# > Fixiing e24paymentpipe.dll error of HDFC payment gateway

Fixiing e24paymentpipe.dll error of HDFC payment gateway

2 vote(s)
Rating: 4.5 out of 5
Article posted by Andrewjonz on 6/12/2012 | Views: 1531 | Category: C# | Level: Beginner | Points: 250 red flag

Advertisements

Advertisements
This small article explains how to fix e24paymentpipe.dll assembly manifest error.


Introduction


Error while adding the e24paymentpipe.dll. e24paymentpipe.dll which is an intergrated payment method for HDFC Bank from .Net


Fixing the error

I had fix this in the visual studio 2008 framework 3.5.

Step 1: Make sure the permissions of the e24paymentpipe.dll file is set to full control.

Step 2: Copy the dll to the system32 folder.

Step 3: We need to register the dll, to register the dll. Open the Visual Studio Command prompt 2008 from the visual studio tools, type the command regsvr32 in the command prompt

 C:\Windows\System32>  regsvr32  /i  mydll.dll

If the above command does not work or it prompts an error then go for the below step.

Step 4: Using the Interop primary assembly register command.

 C:\Windows\System32> regasm  assemblyname

After registering the dll, add the dll to the GAC.

Step 5: Adding to the GAC

 C:\Program files\Microsoft Visual Studio 9.0\SDK\v3.5\Bin> gacutil  /i  path-of-the-dll

This error may persist because of version mismatch of the e24paymentpipe.dll to the .Net framework.
Check that the version of .Net framework support

Conclusion

Hope this article would help for those who find difficulties in adding e24paymentpipe.dll


Reference

http://www.arabtutors.com/K-035%20Payment%20Gateway%20Merchant%20Integration.pdf


Advertisements

If you like this article, subscribe to our RSS Feed. You can also subscribe via email to our Interview Questions, Codes and Forums section.

Page copy protected against web site content infringement by Copyscape
Found interesting? Add this to:



Please Sign In to vote for this post.

About Andrew Jones

Experience:0 year(s)
Home page:http://www.dotnetfunda.com
Member since:Tuesday, June 12, 2012
Level:Starter
Status: [Member]
Biography:
>> Write Response - Respond to this post and get points
Related Posts

How to validate a Cell Number in Windows foms

The article describes how you can implement your class using INotifyPropertyChanged, INotifyPropertyChanging to work on your objects and INotifyCollectionChanged on your collection. The article also describes the common mistakes and workarounds how you can handle notification scenarios in real world scenarios.

Type Conversions

Recently, I have come across a query in a forum. The query was something like 'difference between ref and out parameters'. Hence, I have just tried to point out the difference between the two.

In this article we shall see how to manage threads in C#.

More ...
About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 6/19/2013 6:24:20 PM