Re: How to implement and EDA

2009-12-04 Thread ramram
Hi Anil, Jacques Well as you know I am new to OfBiz and what I am really interested in is the workflow that is provided by the OfBiz but after researches I find out the ofBiz stopped the working with the workflow of shark and instead are based on EDA (event driven architecture) which is also

Re: Java 6 Question

2009-12-04 Thread Jacques Le Roux
I was more thinking about Debian/Ubuntu packages, but anyway Linux package at large, yes! Jacques From: Shi Jinghai sh...@langhua.cn Exciting... As Jacques mentioned 'packages', the packages may look like yum install ofbiz-framework-9.04 yum install ofbiz-applications-9.04 yum install

Re: Not finding pages

2009-12-04 Thread Jacques Le Roux
I can make a confirmation if needed, if have the all history too... (only from september 2004 though) Jacques From: Scott Gray scott.g...@hotwaxmedia.com On 4/12/2009, at 4:17 PM, BJ Freeman wrote: it is interesting because I wrote this based on some emails. so you don't show the fact I

RE: order re-submission !

2009-12-04 Thread Prashant Punekar
Hi Sumit, The order is already in created state before even hitting the payment service. So if the payment fails and I call the createOrder service again (for resubmission) it will says the ordered exsist and will not allow us to create the same order again. Is my understanding correct or I am

How to set permissions to all new users?

2009-12-04 Thread MarioF
Hi all, I want that the new registered users have always some permissions. How can I do that without the admin has to set one by one in the party application? Thanks in advance. -- View this message in context: http://n4.nabble.com/How-to-set-permissions-to-all-new-users-tp948378p948378.html

Re: order re-submission !

2009-12-04 Thread Abdullah Shaikh
Prashant, Which payment gateway are you using ? Is it the one from ofbiz itself or have you implemented your own ? What you need to do is when the payment fails you need to set the order id to null in request, request.setAttribute(orderId, null), so that ofbiz creates a new order, because when

Re: Java 6 Question

2009-12-04 Thread Jacques Le Roux
Hi Sam, Inline... From: Sam Hamilton s...@sh81.com Thanks Shi. I found that OFBiz trunk is in Hudson and from what I can tell is only building against sun-java6-jdk-1.6.0.10 (http://ci.apache.org/builders/ofbiz-trunk) but I totally could be reading this wrong. Builbot is not Hudson

Re: Java 6 Question

2009-12-04 Thread Scott Gray
I'm guessing no committers are using OpenJDK since it's not compiling on it at the moment, which would make it pretty difficult to fix any problems that arise. IMO anyone who is using OpenJDK should just submit fixes for any issues that they find while using it, I'd rather not have

Re: Not finding pages

2009-12-04 Thread BJ Freeman
Unless the content will be recovered it is a mute point. Jacques Le Roux sent the following on 12/4/2009 1:07 AM: I can make a confirmation if needed, if have the all history too... (only from september 2004 though) Jacques From: Scott Gray scott.g...@hotwaxmedia.com On 4/12/2009, at

Re: order re-submission !

2009-12-04 Thread Sumit Pandit
Hi Prashant, Ideally you can not recreate canceled order. It is not valid change. You can recreate a new order with same number of item which was in canceled order. You can find its reference at order detail page. -- Thanks And Regards Sumit Pandit On Dec 4, 2009, at 2:42 AM, Prashant Punekar

Re: Creating an Billing Account

2009-12-04 Thread Alexander1893
Hi Sharan, thanks for your reply - but actually thaht doesn't help too much. I know how I can setup a billing account in the admin-area. But I want to create one during the registration of a user in the Shop-Frontend. My problem is, that I couldn't find any method or service in the API that I

Re: Creating an Billing Account

2009-12-04 Thread Anil Patel
Alexander, I suggest you should look at the screen implementation for creating billing account from ofbiz accounting. If you trace code from there to controller, you will be able to reach to the service that finally creates billing account. Based on your business process requirements you use

Last referred url

2009-12-04 Thread Stephen Rufle
I want to create a back link in an ftl page that goes back to the calling page. How would I accomplish that? I think I want whatever the value would have been for view-last. I just do not know if there is some OfBiz way of doing it or if I should just look at the request directly in the ftl.

RE: order re-submission !

2009-12-04 Thread Prashant Punekar
Thanks Abdulla and Sumit, This should work for me. Regards, Prashant -Original Message- From: abdullah.shaik...@gmail.com [mailto:abdullah.shaik...@gmail.com] On Behalf Of Abdullah Shaikh Sent: Friday, December 04, 2009 3:23 PM To: user@ofbiz.apache.org Subject: Re: order re-submission

Re: How to implement and EDA

2009-12-04 Thread Rishi Solanki
Hi Ram, There are three types of Events offers by OFBiz to implement Business Logic. 1) Services which may be in java or minilang. 2) Events in java. 3) Events in minilang. All events are loaded once on server starts, to know more you can refer the Example Component in which probably each of these

Re: Last referred url

2009-12-04 Thread Rishi Solanki
Hi Stephen, Add the link on ftl say go back create a request in the controller to show the last visited view like this. request-map uri=goBack security https=false auth=false/ response name=success type=view-last/ /request-map Here the goBack is the target of your link in

Re: How to set permissions to all new users?

2009-12-04 Thread Rishi Solanki
Hi Mario, Add its UserLoginSecurityGroup data and associate the permission you want. Once the data load and even you drop the DB instance it will loaded again on ant targets. This way you won't need to assign permission again and again to your user from party application. Rishi Solanki Enterprise

Re: Java 6 Question

2009-12-04 Thread Shi Jinghai
It's unnecessary to add OpenJDK to the build list. Don't use packages of sun.*, then it should be OK. 在 2009-12-04五的 13:30 +0100,Jacques Le Roux写道: Hi Sam, Inline... From: Sam Hamilton s...@sh81.com Thanks Shi. I found that OFBiz trunk is in Hudson and from what I can tell is only