Re: Subscription HOWTO

2008-01-31 Thread Rodrigo Souza
Hi Laura, OfBIZ? 2008/1/31, EC Suite <[EMAIL PROTECTED]>: > > > Hello, > My name is Laura Perez a business development manager at EC Suite. We > specialize in on-line transaction processing and provide an inclusive > e-commerce toolset designed to reduce the cost of processing and marketing > wh

Re: Setup ofbiz with another servlet container

2008-01-06 Thread Rodrigo Souza
OfBiz is the complete solution, AppServer and Business Applitcation. TomCat is a project of Apache, Ofbiz is a project of Apache. Customize your deploy, update de classpath engine, and good nice. 2008/1/6, Yin T <[EMAIL PROTECTED]>: > > > Hello, > > I was trying to follow the instructions in th

Re: Deployment in external Container

2007-11-30 Thread Rodrigo Souza
Yes, www.crocodilo.com.br. Use IBM IDC - WebSphere 2007/11/30, guo weizhan <[EMAIL PROTECTED]>: > > Hi Rodrigo Souza, > > Can you share the experience how to deploy the ofbiz with the WebSphere? I > want to do this but don't know how to start. > > Thanks, > &

Re: Price Rules...discounted amount?

2007-10-21 Thread Rodrigo Souza
Only Crocodilo join to change 2007/10/21, Walter Vaughan <[EMAIL PROTECTED]>: > > Calum Miller wrote: > > Hi, > > > > When adding in a price rule to create a quantity discount, how do I > > display the amount discounted? For example, 6 [EMAIL PROTECTED] per item > > with a > > 10% discount I'd li

Re: Certificate Installation

2007-10-21 Thread Rodrigo Souza
Use keytools 2007/10/20, BJ Freeman <[EMAIL PROTECTED]>: > > as far as code, I don't have it on the production machine. > I have a utility that makes a zip or tar file that is uploaded to a new > machine. it only had the files necessary to run of biz. > > have you read > > http://docs.ofbiz.org/di

Re: How to activate php support in the webserver used in ofbiz

2007-10-05 Thread Rodrigo Souza
PHP??? How??? It's bad! Application Server Instance , bad idea use other interpreter. 2007/10/5, BJ Freeman <[EMAIL PROTECTED]>: > > here is a good place to start if you have not already read through > http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation+Index > and this is good for setup

Re: query combining and and like

2007-08-16 Thread Rodrigo Souza
Use index attribute: <#list salesLevelsList as s> s.index 2007/8/16, Scott Gray <[EMAIL PROTECTED]>: > > You'd be better off preparing your data in a bsh script beforehand rather > than attempting to prepare and display in an ftl. > > Regards > Scott > > On 16/08/07, na

Re: java.lang.IllegalArgumentException error when accessing

2007-08-15 Thread Rodrigo Souza
Compiled with Java 1.5? 2007/8/14, Case Torres <[EMAIL PROTECTED]>: > > Hello, > > > > Does anyone know what might be wrong with my install given this error > message when accessing: > > > > http://localhost:8080/webtools/control/main > > > > type Exception report > > message > > description The s

Re: Screen widget question

2007-08-10 Thread Rodrigo Souza
#x27;t seem to get anything to do what I want. I end up with exceptions > or empty strings. > > > Rodrigo Souza wrote: > > > Oks! Your app is mini-lang or bsh? > > > > 2007/8/10, Adrian Crum <[EMAIL PROTECTED]>: > > > >>I think that c

Re: Screen widget question

2007-08-10 Thread Rodrigo Souza
Oks! Your app is mini-lang or bsh? 2007/8/10, Adrian Crum <[EMAIL PROTECTED]>: > > I think that code is intended for mini-lang, not screen widgets. > > Rodrigo Souza wrote: > > > One sugestion: > > > > > method-name="replaceAll

Re: Screen widget question

2007-08-10 Thread Rodrigo Souza
One sugestion: In service definition. 2007/8/10, Adrian Crum <[EMAIL PROTECTED]>: > > Does anyone know how I can do the equivalent of > java.lang.String.replaceAll(...) in the screen > widget? I need to remove some characters from a screen widget field and I > don't know how.

Re: Getting Connection object in bsh or java

2007-08-10 Thread Rodrigo Souza
Get default helperName. Connection conn = tfi.getConnection("default"); 2007/8/10, Gautam Deb <[EMAIL PROTECTED]>: > > Please go through the entityengine.xml (ofbiz.home > /framework/entity/config/). > > Also this document will be helpful > http://ofbiz.apache.org/docs/entity.html#The_Entity_En

Re: How to Invoke a function written in a Bsh script through FTL.

2007-08-08 Thread Rodrigo Souza
Other sugestion, call the method from .ftl: i.e: in .ftl file: <#assign result = Static["package.ClassName"].yourMethod( par1,par2) > 2007/8/8, Scott Gray <[EMAIL PROTECTED]>: > > Hi Vijay > > Everything that is available to the ftl is available to a bsh script > running > beforehand, you ju

Re: Conditions in table joiners

2007-08-07 Thread Rodrigo Souza
ains a value in Member.memberId(eg > "1234", "5534", > etc), and NOT "LEADER" or "VICE" or "MEMBER". > > "LEADER" or "VICE" or "MEMBER" appears in field Member.roleId. > > Jonathon > > Rodrigo Sou

Re: Conditions in table joiners

2007-08-07 Thread Rodrigo Souza
Or... conditions.add(new EntityExpr("memberId", EntityOperator.IN, UtilMisc.toList ("LEADER","MEMBER","VICE"))); For all. 2007/8/7, Rodrigo Souza <[EMAIL PROTECTED]>: > > One sample: > > > List conditions = new ArrayList(); >

Re: Conditions in table joiners

2007-08-07 Thread Rodrigo Souza
t;> > >> What is possible is only: > >> > >> "... JOIN ON (.partyId = .partyId) ..." > >> > >> So, to answer my own question, the OFBiz Entity framework doesn't seem > >> to handle what I requested for. > >>

Re: Display a resultset in an .ftl file

2007-08-06 Thread Rodrigo Souza
User delegator to data layer. Not use in .ftl files. 2007/8/6, Richard Fleming <[EMAIL PROTECTED]>: > Hello all- > > I've put together a bsh script that puts a java.sql.resultset into the > context. How do I create a list tag in my freemarker file to display the > resultset? > > Thanks > Rick >

Re: Conditions in table joiners

2007-08-06 Thread Rodrigo Souza
Add to your code: i.e > > > 2007/8/6, Jonathon -- Improov <[EMAIL PROTECTED]>: > In view-entity(s), is it possible to have conditionals in ? > > For eg, an entity Group can have 3 types of members: "LEADER", "VICE" and > "MEMBER". > > I've included my thoughts in the c

Re: SOAP version

2007-07-27 Thread Rodrigo Souza
SOAP 1.1 and 1.2. Ofbiz create instance of apache axis 1.4 2007/7/27, KrisM78 <[EMAIL PROTECTED]>: > > Is anyone knows the version of SOAP compliance that OFBiz supports? > -- > View this message in context: > http://www.nabble.com/SOAP-version-tf4156991.html#a11826971 > Sent from the OFBiz - U

Re: Deployment in external Container

2007-07-20 Thread Rodrigo Souza
We made one deploy with the WebSphere 6.0.2, we were dramatical. 2007/7/20, David E Jones <[EMAIL PROTECTED]>: Also check out the framework/appserver component, and the README file in it. -David Jacques Le Roux wrote: > Best thread : http://www.nabble.com/Users---Question%3AThe-Ofbiz3.1-de

Re: problem with retrieving variables in .ftl file

2007-07-18 Thread Rodrigo Souza
To events: ${requestAttributes.partyId} 2007/7/18, sqlien <[EMAIL PROTECTED]>: Hi, I try to retrieve my variable "partyId" defined in Historic.java in list.ftl, but i have no display of this variable. here my code: Historic.java String partyId="10006"; request.setAttribute("partyId",partyId

Re: XML Data export using pre-configured sets

2007-07-13 Thread Rodrigo Souza
Well, >> Rodrigo Souza wrote: >>> Error: >>> >>> caused a violation of foreign key constraint 'PROD_PRCAT_PROMO' for >>> key (10020) >>> >>> See 10020 duplicated key in table, or, remove the >>> constraint.

Re: XML Data export using pre-configured sets

2007-07-12 Thread Rodrigo Souza
Error: caused a violation of foreign key constraint 'PROD_PRCAT_PROMO' for key (10020) See 10020 duplicated key in table, or, remove the constraint. 2007/7/12, Dave Tenerowicz <[EMAIL PROTECTED]>: I've used the (OFBiz) pre-configured sets for an xml export of product data, and am getting fore

Re: ofbiz data model in an open format?

2007-07-11 Thread Rodrigo Souza
It is last update? 2007/7/11, Jacques Le Roux <[EMAIL PROTECTED]>: Try "microsoft visio viewer" in google Jacques De : "David Cuenca" <[EMAIL PROTECTED]> > Does anybody have the ofbiz data model complete diagram in an open > format? It's tedious to search entities in a gif, and I can't dispose

Re: startofbiz.bat error

2007-07-10 Thread Rodrigo Souza
Run install and verify memory in java. i.e: -Xms512m -Xmx800m -XX : PermSize=128m -XX:MaxPermSize=256m 2007/7/10, Scott Gray <[EMAIL PROTECTED]>: How did the ant run-install go? Any errors/exceptions? Same as last time just run "ant clean" and "ant" and keep an eye out for problems. Regards S

Re: How to access Database thru FTL

2007-07-10 Thread Rodrigo Souza
See delegator methods. Or, use the call to static method. i.e: ${Static["org.ofbiz.party.party.PartyWorker"].makeMatchingString(delegator, match.address1)} 2007/7/10, Scott Gray <[EMAIL PROTECTED]>: Hi Vijay It is best if you look at the existing applications for examples. Also ftl files are t

Re: How to debug SQL

2007-07-04 Thread Rodrigo Souza
Restart or clear cache. 2007/7/5, Brett Palmer <[EMAIL PROTECTED]>: Change the debug.properties to use verbose. I think this file is on the base/config directory but that is from memory. Brett On 7/4/07, X Gylee <[EMAIL PROTECTED]> wrote: > Hello all, > I just started using OFBiz for my work,

Re: How to debug SQL

2007-07-04 Thread Rodrigo Souza
Change Log Level in webtools application. 2007/7/4, X Gylee <[EMAIL PROTECTED]>: Hello all, I just started using OFBiz for my work, and I need help to debug a findByAnd problem. Is there a way in OFBiz to see the generated SQL statement during an entity operation? This way, I can debug my appli

Re: GenericDelegator

2007-07-04 Thread Rodrigo Souza
at the GenericDelegator don't retrieve all records at once. Sorry for the noise. Amine. 2007/7/4, Rodrigo Souza <[EMAIL PROTECTED]>: > > 2 ways, > > 1 - Use selectCountByCondition; ( High cost, two querys executes) > > 2 - Use selectListIteratorByCondition; ( Low cost - do not

Re: GenericDelegator

2007-07-04 Thread Rodrigo Souza
2 ways, 1 - Use selectCountByCondition; ( High cost, two querys executes) 2 - Use selectListIteratorByCondition; ( Low cost - do not create instance of GenericValues). See PartyServices.findParty method to example. 2007/7/4, Amine AZZI <[EMAIL PROTECTED]>: Hi all, I am working on a project

Re: how to remove orders

2007-07-03 Thread Rodrigo Souza
Confirm Job Scheduler 2007/7/3, Chris Howe <[EMAIL PROTECTED]>: There are not many things in OFBiz that you actually want to remove. However, you may want to move things to an expired or cancelled status. An order is one of the things you would want to change to a cancelled status. This is don

Re: view-entity with condition

2007-06-30 Thread Rodrigo Souza
I created one experience with handlers XML without freemarker and ajax. It was easy and very practical. 2007/6/30, Krzysztof Podejma <[EMAIL PROTECTED]>: do you think such service is a good option to populate comboboxes with projects which party is assigned to? workeffort table has a lot of row

Re: receiving null

2007-06-30 Thread Rodrigo Souza
Which the error message? That variable that she is null? Confirm variable list in service.xml of your application. 2007/6/30, amit charaya <[EMAIL PROTECTED]>: i have created a UI form using .ftl file. on clicking on the submit button i called a java service via controller. but when i try to a

Re: Does OfBiz support Ajax?

2007-06-30 Thread Rodrigo Souza
loper? 2007/6/30, Rodrigo Souza <[EMAIL PROTECTED]>: update the application controller. create you controler. create a .ftl file, out to XML type. Generate a service to your business logic. Our, purchase or create de API Handlers, and get results without FreeMarker. You it is a developer

Re: Does OfBiz support Ajax?

2007-06-30 Thread Rodrigo Souza
;: Hi Rodrigo, Thanks for your feedback. Do you have an example on how to implement it? Currently, I would like to refresh the content of certain part of the screen (such as dropdown) in the background. Best regards, Mathius Allo Rodrigo Souza <[EMAIL PROTECTED]> wrote: Hi, YES!

Re: OFBiz SQL Processor questions

2007-06-30 Thread Rodrigo Souza
Use BETWEEN and more new EntityCondition AND to values. Query ie: fieldName BETWEEN 10 AND 20. 2007/6/30, Cameron Smith <[EMAIL PROTECTED]>: Hi, in the last few weeks I have come across a couple of issues with the SQL Processor generating incorrect SQL. I am using MySQL 5.0, but I stress th

Re: Does OfBiz support Ajax?

2007-06-29 Thread Rodrigo Souza
Hi, YES! The OfBIZ is prepared for Ajax , in the truth, it can create exits XML with incredible easiness. We implement here of two forms in the Brazil: 1 - We create a Handler XML, where we return the MAP from the services. 2 - We create a service, where freemarker render the data with ex

Re: web services and Ofbiz

2007-06-28 Thread Rodrigo Souza
Hi Daniel, I implemented WEBServices using a service. Net, I had problems with the model of service of the OfBIZ. I made some changes in AXIS 1,4 to decide the problem. 2007/6/28, Daniel Martínez <[EMAIL PROTECTED]>: Hi, I have just been asked about integrating an ofbiz-based application with

Re: Update of database

2007-06-28 Thread Rodrigo Souza
See Cache Maintenance in webtools aplication. Do you need Clear All Caches. 2007/6/28, Jorge Alanis <[EMAIL PROTECTED]>: Hello, I made a script in Postgresql for a massive upload of products in the ecommerce app. But after running the script, changes aren't noticeable until I restart ofbiz.

Performance in org.ofbiz.entity.util.EntityListIterator

2007-06-26 Thread Rodrigo Souza
Hi community! This is a my implementation to best performance in pagination using org.ofbiz.entity.util.EntityListIterator class. Add this method to get size of resultset without create GenericValue. * public int getSize()throws GenericEntityException {* *int result = 0;* *try{*