ofbiz payflow pro integration

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

ofbiz payflow pro integration

Varun Bhansaly
Anybody having any experience on VeriSign PayFlow Pro integration ?
Is this supported in ofbiz 10.04 release ?

Came acrosss a link in the cookbook but it does not work (re directs to
ofbiz website)
https://cwiki.apache.org/OFBIZ/faq-tips-tricks-cookbook-howto.html#FAQ-Tips-Tricks-Cookbook-HowTo-Payment

--
Regards,
Varun Bhansaly
Reply | Threaded
Open this post in threaded view
|

Re: ofbiz payflow pro integration

Jacques Le Roux
Administrator
You are in luck, I have a copy of that locally, here it is

I'd really appreciate if you could fix the description and create a page under the FAQ page and put the link in FAQ to it

Jacques


Date: Thu, 03 Mar 2005 15:29:07 +0000
From: "Helmut Eggebert" <[hidden email]>
Subject: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set up
To: [hidden email]
Message-ID: <[hidden email]>
Content-Type: text/plain; format=flowed

Hi Users,

Thanks to Brett's generous assistance I figured out what was wrong.  It was
a classpath issue.  I needed to add the following line to my
OFBIZ_HOME/applications/accounting/ofbiz-component.xml file:
  <classpath type="jar" location="lib/verisign/*"/>

Once I added that, it worked fine.  So, for those trying to do this in the
future, here's a review that somebody might want to put on the wiki:

VeriSign Payflow Pro OFBiz Config Howto (based on trunk revision 4576)

1) Verified all the correct properties to use by talking to VeriSign and
confirming the cert directory in their downloaded sdk as well as the vendor,
partner, username and password for our account
2) Set thse properties correctly in payment.properties including the cert
directory, vendor, partner, username and password.
3) Put Verisign.jar from Verisign's Java SDK in a verisign directory in
applications/accounting/lib, changed the accounting build.xml and built it
again
4) Confirm that
applications/accounting/build/classes/org/ofbiz/accounting/thirdparty/verisign/PayflowPro.class
was built and exists
5) Add the classpath to the Verisign.jar file in the
applications/accounting/ofbiz-component.xml file with an entry such as  
<classpath type="jar" location="lib/verisign/*"/>
6) In Catalog Manager -> Stores -> Payments, remove demo data configured as
test services for credit cards and set up the all these services to the
service name "payflowCCProcessor"
7) Restart ofbiz
8) Test by simulatin a user checkout in the demo store and put a valid CC in
9) Submit the order so the card could be authorized

Thanks again.



From: "David E. Jones" <[hidden email]>
Subject: Re: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set
up
To: "OFBiz Users / Usage Discussion \(High Traffic\)"
<[hidden email]>
Message-ID: <[hidden email]>
Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed


There's something funny here...

You say in #3 to put the jar in the "applications/accounting/lib"  
folder, but then in #5 you put in a reference to the "lib/verisign/*"  
location, which translates to the  
"applications/accounting/lib/verisign" folder. Perhaps that was a  
problem, or am I missing something here... ?

-David



From: "Helmut Eggebert" <[hidden email]>
Subject: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set up
To: [hidden email]
Message-ID: <[hidden email]>
Content-Type: text/plain; format=flowed

Hi,

David, you are correct that my instructions had an error.  However, it was
just a typo.

I made a directory in accouning/lib called verisign and put Verisign.jar
into accounting/lib/verisign and then the classpath was to lib/verisign.  It
worked.  The problem was that originally I had no entry at all in
accounting/ofbiz-component.xml so my classpath was missing.



Reply | Threaded
Open this post in threaded view
|

Re: ofbiz payflow pro integration

Varun Bhansaly
Thanks Jacques, that was helpful indeed.
Though I came across this very helpful guide here -
https://cwiki.apache.org/OFBENDUSER/apache-ofbiz-business-setup-guide.html#ApacheOFBizBusinessSetupGuide-PayflowProPaymentSetup

<https://cwiki.apache.org/OFBENDUSER/apache-ofbiz-business-setup-guide.html#ApacheOFBizBusinessSetupGuide-PayflowProPaymentSetup>I've
tried the steps & they work fine.
May be update the link in the FAQ section to point to this URL.

On Sat, May 21, 2011 at 1:23 PM, Jacques Le Roux <
[hidden email]> wrote:

> You are in luck, I have a copy of that locally, here it is
>
> I'd really appreciate if you could fix the description and create a page
> under the FAQ page and put the link in FAQ to it
>
> Jacques
>
>
> Date: Thu, 03 Mar 2005 15:29:07 +0000
> From: "Helmut Eggebert" <[hidden email]>
> Subject: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set up
> To: [hidden email]
> Message-ID: <[hidden email]>
> Content-Type: text/plain; format=flowed
>
> Hi Users,
>
> Thanks to Brett's generous assistance I figured out what was wrong.  It was
> a classpath issue.  I needed to add the following line to my
> OFBIZ_HOME/applications/accounting/ofbiz-component.xml file:
>  <classpath type="jar" location="lib/verisign/*"/>
>
> Once I added that, it worked fine.  So, for those trying to do this in the
> future, here's a review that somebody might want to put on the wiki:
>
> VeriSign Payflow Pro OFBiz Config Howto (based on trunk revision 4576)
>
> 1) Verified all the correct properties to use by talking to VeriSign and
> confirming the cert directory in their downloaded sdk as well as the vendor,
> partner, username and password for our account
> 2) Set thse properties correctly in payment.properties including the cert
> directory, vendor, partner, username and password.
> 3) Put Verisign.jar from Verisign's Java SDK in a verisign directory in
> applications/accounting/lib, changed the accounting build.xml and built it
> again
> 4) Confirm that
> applications/accounting/build/classes/org/ofbiz/accounting/thirdparty/verisign/PayflowPro.class
> was built and exists
> 5) Add the classpath to the Verisign.jar file in the
> applications/accounting/ofbiz-component.xml file with an entry such as
> <classpath type="jar" location="lib/verisign/*"/>
> 6) In Catalog Manager -> Stores -> Payments, remove demo data configured as
> test services for credit cards and set up the all these services to the
> service name "payflowCCProcessor"
> 7) Restart ofbiz
> 8) Test by simulatin a user checkout in the demo store and put a valid CC
> in
> 9) Submit the order so the card could be authorized
>
> Thanks again.
>
>
>
> From: "David E. Jones" <[hidden email]>
> Subject: Re: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set
> up
> To: "OFBiz Users / Usage Discussion \(High Traffic\)"
> <[hidden email]>
> Message-ID: <[hidden email]>
> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed
>
>
> There's something funny here...
>
> You say in #3 to put the jar in the "applications/accounting/lib"  folder,
> but then in #5 you put in a reference to the "lib/verisign/*"  location,
> which translates to the  "applications/accounting/lib/verisign" folder.
> Perhaps that was a  problem, or am I missing something here... ?
>
> -David
>
>
>
> From: "Helmut Eggebert" <[hidden email]>
> Subject: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set up
> To: [hidden email]
> Message-ID: <[hidden email]>
> Content-Type: text/plain; format=flowed
>
> Hi,
>
> David, you are correct that my instructions had an error.  However, it was
> just a typo.
>
> I made a directory in accouning/lib called verisign and put Verisign.jar
> into accounting/lib/verisign and then the classpath was to lib/verisign.  It
> worked.  The problem was that originally I had no entry at all in
> accounting/ofbiz-component.xml so my classpath was missing.
>
>
>
>


--
Regards,
Varun Bhansaly
Reply | Threaded
Open this post in threaded view
|

Re: ofbiz payflow pro integration

Jacques Le Roux
Administrator
Even better indeed, thanks Varun, done

Jacques

From: "varun bhansaly" <[hidden email]>

> Thanks Jacques, that was helpful indeed.
> Though I came across this very helpful guide here -
> https://cwiki.apache.org/OFBENDUSER/apache-ofbiz-business-setup-guide.html#ApacheOFBizBusinessSetupGuide-PayflowProPaymentSetup
>
> <https://cwiki.apache.org/OFBENDUSER/apache-ofbiz-business-setup-guide.html#ApacheOFBizBusinessSetupGuide-PayflowProPaymentSetup>I've
> tried the steps & they work fine.
> May be update the link in the FAQ section to point to this URL.
>
> On Sat, May 21, 2011 at 1:23 PM, Jacques Le Roux <
> [hidden email]> wrote:
>
>> You are in luck, I have a copy of that locally, here it is
>>
>> I'd really appreciate if you could fix the description and create a page
>> under the FAQ page and put the link in FAQ to it
>>
>> Jacques
>>
>>
>> Date: Thu, 03 Mar 2005 15:29:07 +0000
>> From: "Helmut Eggebert" <[hidden email]>
>> Subject: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set up
>> To: [hidden email]
>> Message-ID: <[hidden email]>
>> Content-Type: text/plain; format=flowed
>>
>> Hi Users,
>>
>> Thanks to Brett's generous assistance I figured out what was wrong.  It was
>> a classpath issue.  I needed to add the following line to my
>> OFBIZ_HOME/applications/accounting/ofbiz-component.xml file:
>>  <classpath type="jar" location="lib/verisign/*"/>
>>
>> Once I added that, it worked fine.  So, for those trying to do this in the
>> future, here's a review that somebody might want to put on the wiki:
>>
>> VeriSign Payflow Pro OFBiz Config Howto (based on trunk revision 4576)
>>
>> 1) Verified all the correct properties to use by talking to VeriSign and
>> confirming the cert directory in their downloaded sdk as well as the vendor,
>> partner, username and password for our account
>> 2) Set thse properties correctly in payment.properties including the cert
>> directory, vendor, partner, username and password.
>> 3) Put Verisign.jar from Verisign's Java SDK in a verisign directory in
>> applications/accounting/lib, changed the accounting build.xml and built it
>> again
>> 4) Confirm that
>> applications/accounting/build/classes/org/ofbiz/accounting/thirdparty/verisign/PayflowPro.class
>> was built and exists
>> 5) Add the classpath to the Verisign.jar file in the
>> applications/accounting/ofbiz-component.xml file with an entry such as
>> <classpath type="jar" location="lib/verisign/*"/>
>> 6) In Catalog Manager -> Stores -> Payments, remove demo data configured as
>> test services for credit cards and set up the all these services to the
>> service name "payflowCCProcessor"
>> 7) Restart ofbiz
>> 8) Test by simulatin a user checkout in the demo store and put a valid CC
>> in
>> 9) Submit the order so the card could be authorized
>>
>> Thanks again.
>>
>>
>>
>> From: "David E. Jones" <[hidden email]>
>> Subject: Re: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set
>> up
>> To: "OFBiz Users / Usage Discussion \(High Traffic\)"
>> <[hidden email]>
>> Message-ID: <[hidden email]>
>> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed
>>
>>
>> There's something funny here...
>>
>> You say in #3 to put the jar in the "applications/accounting/lib"  folder,
>> but then in #5 you put in a reference to the "lib/verisign/*"  location,
>> which translates to the  "applications/accounting/lib/verisign" folder.
>> Perhaps that was a  problem, or am I missing something here... ?
>>
>> -David
>>
>>
>>
>> From: "Helmut Eggebert" <[hidden email]>
>> Subject: [OFBiz] Users - Re: problem with VeriSign PayFlow Pro set up
>> To: [hidden email]
>> Message-ID: <[hidden email]>
>> Content-Type: text/plain; format=flowed
>>
>> Hi,
>>
>> David, you are correct that my instructions had an error.  However, it was
>> just a typo.
>>
>> I made a directory in accouning/lib called verisign and put Verisign.jar
>> into accounting/lib/verisign and then the classpath was to lib/verisign.  It
>> worked.  The problem was that originally I had no entry at all in
>> accounting/ofbiz-component.xml so my classpath was missing.
>>
>>
>>
>>
>
>
> --
> Regards,
> Varun Bhansaly
>