Re: The number of threads used to run services in async mode

2024-06-26 Thread Tomek
Hi Jacques, Thanks a lot :) Best regards Tomek On 25.06.2024 15:53, Jacques Le Roux wrote: Hi Tomek, If you did not already, I'd look at: https://cwiki.apache.org/confluence/display/OFBIZ/Service+Engine+Guide https://cwiki.apache.org/confluence/display/OFBIZ/Service+Engine+Configuration

The number of threads used to run services in async mode

2024-06-23 Thread Tomek
to execute services: can I manipulate thread pool size? How? Tomek

Re: How to join two dynamic views?

2024-02-05 Thread Tomek
Thanks On 1.02.2024 19:44, Rishi Solanki wrote: Dear Tomek, To create the view link between two tables its definition and fields should be loaded. So instead of linking two dynamic view make static view using entitymodel.xml file and link them. Rishi Solanki *CTO, Mindpath Technology

How to join two dynamic views?

2024-01-25 Thread Tomek
ViewLink("PRD", "PF", false, maps); final List list = EntityQuery.use(delegator).from(view).queryList(); But it does not work. Tomek

Cookies creates by OFBiz

2023-09-14 Thread Tomek
Hi, I'm developing a e-commerce store based on OFBiz and I have to write cookies policy. I have noticed that the OFBiz creates OFBiz.Visitor cookie. Could you explain me what is the purpose of this Cookie and what is it using for? Best regards Tomek

Difference between related url and alternative url

2022-10-11 Thread Tomek
ly URL to the system. But I don't know what it is the difference between "Alternative URL" and "Related URL" types of content? Can somebody explain me when I should use type "Alternative URL" and when I should use type "Related URL"? Tomek

Re: Scheduled job problem

2022-07-05 Thread Tomek
delete some rows in the same table. It is possible that the problem is connected with it? On 11.04.2022 23:27, Tomek wrote: Thank you for your response. I think it is possible that the service run time is longer than the 5 minutes. So, I try to use the semaphore settings. I hope that solve my

Re: Scheduled job problem

2022-04-11 Thread Tomek
Thank you for your response. I think it is possible that the service run time is longer than the 5 minutes. So, I try to use the semaphore settings. I hope that solve my problem :) Tomek On 11.04.2022 22:33, Michael Brohl wrote: Hi, is it possible that your job run time is longer than

Scheduled job problem

2022-04-11 Thread Tomek
Hi, I have created a job: I would like to run partialUpdateOfferJob service every 5 minutes. In the beginning every thing is ok but after some time the service is running two (or even more) times at similar time. Here is a part of my data stored in job_sandbox table: job_id    job_name 

Re: Choosing between Java and Groovy

2021-04-16 Thread Tomek
Hi Danny, Thank you for your response. I prefer Java rather than Groovy. But as far as I know writing services in Java required restart the server. It seems that choosing Groovy is better option from productivity point of view. Tomek On 16.04.2021 15:49, Danny Trunk wrote: > Additiona

Re: How to run single integration test?

2021-04-16 Thread Tomek
On 16.04.2021 16:20, Jacques Le Roux wrote: Hi Jacques, Thank you for your response and help. Currently, I can't help you for the migration because my knowledge about OFBiz i too low. Best regards Tomek > Hi Tomek, > > About your  1st question, the answer is there (not related to

Choosing between Java and Groovy

2021-04-16 Thread Tomek
Hi, I'am browsing the code of OFBiz and I see that the services are written in multiple languages like Java or Groovy and even XML. Are there some rules that help me to choose between Java and Groovy? Tomek

How to run single integration test?

2021-04-16 Thread Tomek
t an error message like "no tasks available". It is possible to run only particular test method instead of all? The second question: why the integration tests was placed in main/java path insted of test/java? Tomek

Re: Naming convention for identifiers?

2021-04-16 Thread Tomek
Thanks Best regards Tomek

Naming convention for identifiers?

2021-04-12 Thread Tomek
Hi, I had reviewed a demo data that loaded by loadAll command of Gradle. Some parts of the data has id like "GZ-1000" (uper case convention) and other has id like "admin" (lower case convention) or  "DemoSupplier". What is the recommended naming conventions for identifiers? Tomek

Re: Running jar archive

2020-04-23 Thread Tomek
(ofbiz.jar). On 23.04.2020 17:24, Girish Vasmatkar wrote: You probably do not have OFBIZ_HOME environment variable defined. It should be the root directory containing your ofbiz installation. export OFBIZ_HOME= Best, Girish On Thu, Apr 23, 2020 at 4:43 PM Tomek wrote: Hi all, Is it possible

Running jar archive

2020-04-23 Thread Tomek
Hi all, Is it possible to run ofbiz.jar file without other resources? I have used 'gradlew clean build' command to build jar archive. The ofbiz.jar archive is located in build/lib/ofbiz.jar directory by default. So I have moved this file to another directory and I used 'java -jar ofbiz.jar'

Re: Multiple configuration for different environments

2020-04-23 Thread Tomek
Thanks :) On 19.04.2020 19:46, Michael Brohl wrote: Hi Tomek, this is not easily possible OOTB. For some approaches, see discussion in [1]. We are using a custom configure mechanism which is described in [2]. It is on my todo list to explain it a bit more and provide a patch/proposal

Multiple configuration for different environments

2020-04-19 Thread Tomek
Hello, I would like to configure Ofbiz for both development and production environment and I would like to switch between them (I need use different data source for development environment and different data source for production environment etc). What is the proper why to do it? Tomek

How to add column to result in simple service

2009-03-15 Thread Zhavic Tomek
Hi, Is there a way to add column to result returned by performFindList in simple service? I have this part in simple service getting data from AcctgTransAndEntries entity: ... ... set field=input.entityName value=AcctgTransAndEntries/ set-service-fields