Re: PayPal Websites Payments Pro implementation

2007-11-14 Thread Richard Fleming
Vince, The PayPal Express button gave me enough trouble to back burner it. I did implement the Payments Pro gateway API and I'm half heartedly working on the Express - slowly. The API was easy. The trouble was with the ofbiz checkout flow - I liked the way it moved along. However, yo

Re: SQL help needed

2007-11-14 Thread Jonathon -- Improov
Walter, SQL cross-products are quite simple, actually, although not immediately obvious to start with. Consider that every join you make is for a specific purpose. Here's a quick contrived example, for illustration only, not congruent with OFBiz entities. Say you join "Party.employees" to "P

Re: Form validations

2007-11-14 Thread BJ Freeman
if you do a search thru the code for the things you find in that file you will find examples. just a a note: all that answer here are volunteers. we freely answer questions about what is in ofbiz now. if you wish a specific answer to a design you are doing, I suggest on enlist one of the that ans

Re: Form validations

2007-11-14 Thread Vedam B
Thanks. Can you send some more information, if possible, regarding which method i have to use to do basic required field validations, Range validations, etc. from any screen. Basically steps to validate a form before submitting to send appropriate notifications regarding mandatory fields. Regar

Re: Form validations

2007-11-14 Thread BJ Freeman
look in /framework/widgets/src/org/ofbiz/widgets/forms/ModelFormField.java Vedam B sent the following on 11/14/2007 2:02 PM: > Hi all, > > I need help on "how to do validations in form for mandatory fields". > > Thanks in advance for any help or directions. > > Regards > Vedam >

Re: PayPal Websites Payments Pro implementation

2007-11-14 Thread Vince Clark
Has there been any progress on PayPal Express? Richard Fleming wrote: > > Hi all - > > I've just signed up for PayPal Payments Pro(Verisign). > > 1. Has anyone implemented it yet? > 2. How closely related is the Verisign implementation and code? > 3. Has anyone added a "Paypal Payment Expre

Form validations

2007-11-14 Thread Vedam B
Hi all, I need help on "how to do validations in form for mandatory fields". Thanks in advance for any help or directions. Regards Vedam

Re: Geronimo version

2007-11-14 Thread Gautam Deb
Yes, certain libraries of Geronimo are used for Transaction Management in OFBiz. Geronimo is used/deployed as a JAR; the code-base is not part of OFBiz. Regards, Gautam Deb On Nov 13, 2007 11:58 AM, Vedam B <[EMAIL PROTECTED]> wrote: > So we are only using certain libraries of Geronimo for Trans

Re: USPS rate estimation

2007-11-14 Thread Dave Tenerowicz
Thanks BJ, but I'm not sure how this helps? If I'm understanding this document correctly, the NCOA product is a change of address service. We are simply trying to connect to USPS to do rate estimation. What am I missing? -Dave BJ Freeman wrote: may need to go this route http://ribbs.usps.go

Re: how to get value defined in web.xml ?

2007-11-14 Thread BJ Freeman
and I apologize DispatcherContext will not help you. context is a Map. you have to pull the particular context you want using .get and a cast so if you find how the web.xml context is stored you will fine how to retrieve it from the context passed. BJ Freeman sent the following on 11/14/2007 4:1

Re: how to get value defined in web.xml ?

2007-11-14 Thread BJ Freeman
DispatcherContext.java along with examples that are in the code should give you your answer. for instance it uses Map. if you look thru ofbiz code you will find examples to help you. sqlien sent the following on 11/14/2007 2:46 AM: > Hi, > thak your for your responses, but my problem is not yet

Re: how to get value defined in web.xml ?

2007-11-14 Thread BJ Freeman
http://docs.ofbiz.org/display/OFBTECH/Framework+Introduction+Videos+and+Diagrams sqlien sent the following on 11/14/2007 2:46 AM: > Hi, > thak your for your responses, but my problem is not yet resolved : > 1) i can not use public static String getWebSiteId(ServletRequest request) > because i

Re: how to get value defined in web.xml ?

2007-11-14 Thread sqlien
Hi, thak your for your responses, but my problem is not yet resolved : 1) i can not use public static String getWebSiteId(ServletRequest request) because i have not the object request from DispatcherContext 2) I have tack a look at DispatcherContext no method appropriated for my problem Thank