Re: Build dependencies on OfBiz code for new plugin

2023-08-15 Thread Michael Brohl
the plugin code under /plugins? Everything else under /plugins except you plugin folder (the plugin needs a separate folder, e.g. /plugins/my-plugin/)? Maybe you can post the relevant part of the console.log to see more. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am

Re: Daemon

2023-08-15 Thread Michael Brohl
Hi Craig, you'll find those scripts in the ofbiz-tools repository: https://github.com/apache/ofbiz-tools Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 15.08.23 um 18:34 schrieb Craig Parker: I'm trying to get back into docs, and currently finally have a working OFBiz/MySQL

Re: Mass email of Statements: no session or request for parseReportOptions.bsh

2023-05-04 Thread Michael Brohl
. This is not the case if you are running a scheduled service! So, guessing blindly without seeing your code, you should check if you have the right solution design and if the bsh script is usable in your situation. hth, best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 04.05.23 um 22:40

Re: Class and Methods to find job ID and job Name in a service

2023-04-18 Thread Michael Brohl
is not the same thing. Events cannot be scheduled as a job, whereas services can. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 18.04.23 um 14:42 schrieb Aditya Sharma: Hello Mahi, Though I could not understand your use case completely, I suspect you are looking for RuntimeData

Re: How to create entities in the database using java events just as like we do in JDBC

2023-03-22 Thread Michael Brohl
give us the reasoning behind your attempt we might be able to help find a solution. Please be aware that OFBiz has a mechanism to automatically create tables, views, references and indexes from the entity definitions. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 22.03.23 um

Re: Async Services

2023-03-07 Thread Michael Brohl
of any additional data you have to provide. The service engine just takes the provided service context and stores it as RuntimeData together with the job in the JobSandbox instead of running the service directly. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 07.03.23 um 09:16

Re: Async Services

2023-03-06 Thread Michael Brohl
Hi Ingo, with persist = true, the async service will be persisted in the Job Sandbox and executed, els it will only be executed. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 07.03.23 um 08:24 schrieb Ingo Wolfmayr: Hi Michael, sorry "persist". Best reg

Re: Async Services

2023-03-06 Thread Michael Brohl
Hi Ingo, where did you find this option and for which version? Best regards, Michael Am 07.03.23 um 08:04 schrieb Ingo Wolfmayr: Hi Community, I would like to know what is the difference between an async service with option set "permit = true" or "permit = false". Best regards, Ingo

Re: OFbiz/Tomcat vs Ofbiz/Tomcat/Apache to serve static resources

2023-01-26 Thread Michael Brohl
standalone without any Webserver in front of it. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 24.01.23 um 10:38 schrieb Giulio Speri - MpStyle Srl: Hello everyone, I hope I found you all well! I would like to ask you an opinion regarding serving static resources of a website powered

Re: Prevent promo discount when there is already a per order disount

2022-11-17 Thread Michael Brohl
will contribute this back to the project. I also like the approach using promo relations, that would offer more flexibility. Looking forward to this. Thanks and best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 17.11.22 um 10:15 schrieb Giulio Speri - MpStyle Srl: Good morning

Prevent promo discount when there is already a per order disount

2022-11-16 Thread Michael Brohl
Hi everyone, is there an out-of-the-box solution for the following promotion scenario: Prevent a per product or product category promotion if there is already a per order promotion active. So if there is already an order percent or flat amount discount, any other (additional) promotions

Re: Which Tomcat version ofbiz internally using

2022-07-30 Thread Michael Brohl
Hi Pranab, you will most likely have to adjust the configuration of the catalina-containerif if you change the major version. You will find those changes if you search for "tomcat" in the git logs or Jira issues. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 3

Re: REST API - Access token and refresh token for login

2022-06-21 Thread Michael Brohl
Hi Rishi, the client should recognize that the token is not valid or that the token based authentication failed and do a refresh of the token by re-authenticating again. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 21.06.22 um 11:26 schrieb Rishi Agr: Hi, Whenever I

Re: Default Transaction Timeout

2022-06-07 Thread Michael Brohl
Hi Johan, the default transaction timeout is typically 60 seconds. You can change this for specific (service) transactions by using the service attribute "transaction-timeout". See /framework/service/dtd/services.xsd. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de A

Re: Call Center Software w/ Ofbiz

2022-05-19 Thread Michael Brohl
-EU_2015_Ofbiz-CRM-asterisk-.pdf Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 19.05.22 um 20:20 schrieb ja...@productive1.com: Anyone have any experience with open source call center software integrated or built within Ofbiz. Software like Osdial or comparable. The requirement would

Re: Error building Ofbiz on Windows 10

2022-05-04 Thread Michael Brohl
if Gradle 7.0 is used (which is not the case right now). You can safely ignore these warnings. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 04.05.22 um 17:01 schrieb Emad Radwan: Hi Michael, Unfortunately, I’m not a java developer! I re-run with - stacktrace parameter

Re: Error building Ofbiz on Windows 10

2022-05-04 Thread Michael Brohl
Hi Emad, It seems the build is running fine with just some deprecation warnings. What do you think is going wrong? Michael Brohl ecomify GmbH - www.ecomify.de Am 04.05.22 um 15:48 schrieb Emad Radwan: Hi, if it helps, I tried ‘cleanall’ and got the following. Anny hint, please. Regards

Re: Scheduled job problem

2022-04-11 Thread Michael Brohl
Hi, is it possible that your job run time is longer than the 5 minutes scheduling interval and it is not configured against parallel execution? If yes, consider using the semaphore settings for your service (see [1]). Best regards, Michael Brohl ecomify GmbH - www.ecomify.de [1] https

Re: Store / Facility Relationship

2022-04-10 Thread Michael Brohl
Hi Emad, yes. ProductStore.oneInventoryFacility indicates that there is only one inventory to check and the one referenced by inventoryFacilityId is used. If you search the codebase for the mentioned fields you will find the business logic which handles it. Best regards, Michael Brohl

Re: Store / Facility Relationship

2022-04-10 Thread Michael Brohl
Hi Emad, please have a look at the facility entity, which has a reference to a product store. You can have as much facilities referencing a product store as you want. You can also have a facility hierarchy by connecting multiple facilities to a parent facility. Best regards, Michael

Re: Rest-API the request always sets the locale to "en"

2022-04-08 Thread Michael Brohl
Hi Rishi, that's a good point, I think this is not handled yet and would be a good addition. Please file a subtask ticket under https://issues.apache.org/jira/browse/OFBIZ-11328 Thanks, Michael Brohl ecomify GmbH - www.ecomify.de Am 08.04.22 um 16:01 schrieb Rishi Agr: Hi, I am trying

Re: rest-api Plugin

2022-03-25 Thread Michael Brohl
, Michael Brohl ecomify GmbH - www.ecomify.de Am 24.03.22 um 19:16 schrieb Johan Cronje: Hi Michael, Thank you for the advice. Would you rather advise that I change my source branches over to the trunk, is the trunk based on the r18.12? Or should I bring the changes from the trunk over to my

Re: rest-api Plugin

2022-03-24 Thread Michael Brohl
Hi Johan, for r18.12 you would have to make some modifications in the framework / service engine to make it compatible. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 24.03.22 um 11:19 schrieb Johan Cronje: Good day, I would just like to find out if the rest-api Plugin

Re: intstall

2022-03-16 Thread Michael Brohl
Biz and serve OFBiz through a subdomain like ofbiz.yourdomain.com. You'll find further reading in our wiki, for example here: https://cwiki.apache.org/confluence/display/OFBIZ/Install+OFBiz+with+MariaDB%2C+Apache2+Proxy+and+SSL Regards Michael Brohl ecomify GmbH - www.ecomify.de Am 16.03.22 um 18

Re: intstall

2022-03-16 Thread Michael Brohl
How can i get into the security.properties to update this, and if possible can you tell me where to update. What do you want to change exactly? Regards Reinier On 2022-03-16 11:43, Michael Brohl wrote: What is the output of "sudo netstat -plnt" on the server? Michael

Re: intstall

2022-03-16 Thread Michael Brohl
What is the output of "sudo netstat -plnt" on the server? Michael Brohl ecomify GmbH - www.ecomify.de Am 16.03.22 um 16:29 schrieb sa...@maxcapital.co.za: Hi Michael, thanks for the reply, opened the ports on my server but still the same problem. Details from the server below.

Re: intstall

2022-03-16 Thread Michael Brohl
Catalina configuration to 443/80 to make it work. For production use, it is recommended to put an Apache Webserver before the OFBiz instance, connected with AJP. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 16.03.22 um 15:32 schrieb sa...@maxcapital.co.za: Hi Mathew, it's

Re: EmailPasswordUiLabels missing multi-language for certain properties

2022-03-07 Thread Michael Brohl
Hi Rishi, if you can provide additional translations, please create a Jira and add a patch or pull request. Thanks and regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 07.03.22 um 10:17 schrieb Rishi Agr: Hi, There are 2 properties namely *SecurityExtIgnoreEmail

Re: Rest API versioning and redirection

2022-03-02 Thread Michael Brohl
path="/v2/parties". Redirection is not configurable inside OFBiz currently but you can easily achieve what you want with an Apache Web Server (which is recommended for productive systems anyway) and rewrite rules. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 02.03.22 um

Re: Rest API does not send the null properties in response

2022-02-28 Thread Michael Brohl
as a subtask for https://issues.apache.org/jira/browse/OFBIZ-11328 to discuss this further and track development. Thanks and regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 28.02.22 um 11:25 schrieb Rishi Agr: Hi, I have observed that the response data from any API does not contain

Re: Rest API bypassing certain APIs from authentication

2022-02-22 Thread Michael Brohl
Hi Rishi, how is your operation inside the resource being configured? If ommitted, auth defaults to true there. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 22.02.22 um 12:56 schrieb Rishi Agr: Hi, I am implementing an API that needs to be processed without authentication

Re: Ofbiz Rest API content-type

2022-02-20 Thread Michael Brohl
as-is and render the JSON results using some templating in your consuming client. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de [1] https://issues.apache.org/jira/browse/OFBIZ-11328 Am 19.02.22 um 07:36 schrieb Carsten Schinzer: Hi again, I wonder why a REST API Service would be expected

Re: Session Lost after returning from paypal

2022-02-10 Thread Michael Brohl
regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 10.02.22 um 08:53 schrieb Markus: Hello Ladies and Gentleman, I'm running Ofbiz 18.12.02 in a local installation on localhost in an eCommerce scenario. I like to setup and run the paypal integration for payments properly. The jump

Re: MRP Not Working

2022-02-01 Thread Michael Brohl
might want to file a Jira. Please give as much information as possible there on how to recreate this error. Thanks and regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 01.02.22 um 21:37 schrieb Steven Payne: Hi Michael, Thanks for the quick response. Here is the full stacktrace (I

Re: MRP Not Working

2022-02-01 Thread Michael Brohl
shown in the log unreadable next time ;-) Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 01.02.22 um 21:02 schrieb Steven Payne: Hi All, I am trying to run the MRP system here and I am coming across a weird error. Has anyone else had issues with running MRP and it not being

Re: Products included in Service

2022-01-29 Thread Michael Brohl
(in this case products and the service), specifying which products are mandatory and which are optional. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 29.01.22 um 13:24 schrieb Emad Radwan: Hello Community, Regarding this issue, I found in Silverston's book that he has a table called

Re: Support/Installation/Customization of OfBiz

2022-01-29 Thread Michael Brohl
Some corrections to avoid confusion and going in the wrong directions - Ingo Könemann (now Ingo Richter) is an employee of ecomify GmbH - Georg Potthast is an OFBiz user and does not provide support services Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 29.01.22 um 09:35

Re: Support/Installation/Customization of OfBiz

2022-01-28 Thread Michael Brohl
Good evening, at ecomify, we are providing professional services to customize, integrate, support and host Apache OFBiz installations. I will contact you off-list. Thanks and regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 28.01.22 um 21:44 schrieb Dr. Thorsten Brandau: Hi We

Re: Pass JVM options in ofbizBackground

2022-01-13 Thread Michael Brohl
and process. Maybe there is a bug using this together with ofbizBackground. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 10.01.22 um 16:51 schrieb Bs Serge: Hi all, I'm starting OFBIZ in the background but I'm failing to add memory JVM options using below commands : ./gra

Re: Demos off for a small time

2021-12-19 Thread Michael Brohl
Thanks for all your work, Jacques! Michael Am 19.12.21 um 13:13 schrieb Jacques Le Roux: Le 19/12/2021 à 12:51, Jacques Le Roux a écrit : Hi, After fixing Loag4j CVEs , to test all is OK, I restart all demos Thanks for your patience Jacques All is working again

Re: LOG4J vulnerability

2021-12-15 Thread Michael Brohl
As an addition, the JVM parameter to disable the lookup does not work for log4j versions < 2.10. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 14.12.21 um 23:07 schrieb Carsten Schinzer: Hi, checking the link to Jacques' commit, indeed this is the preferred opt

Re: Resources for customization

2021-11-30 Thread Michael Brohl
a detailed insight in your project, which parts of OFBiz you are using and how etc. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 29.11.21 um 20:24 schrieb Raynhold Schapp: Hi Jacques, thank you for the moderation and pardon for the circumstances, I tried to use an email forwarder

Re: how to import/export data from ofbiz to quickbooks and quickbooks to ofbiz

2021-11-30 Thread Michael Brohl
Hi Maheshwari, you'll have to implement a scheduled service which reads the files from disk, processes them and archives the successfully processed files. For the handling of your xls files, have a look at the Apache POI framework (https://poi.apache.org/). Best regards, Michael Brohl

Re: Product and Store Relationship

2021-10-26 Thread Michael Brohl
can reuse categories with different roll-ups, you cannot have the SAME category containing other products when used with another ProductStore. You surely can build up a SIMILAR category structure twice and map this to the catalog/store to achieve your goal. Best regards, Michael Brohl

Re: Detailed OFBiz Accounting Tutorial Available

2021-10-22 Thread Michael Brohl
Hi Sharan, that's great, thanks for sharing your valuable work with the community! Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 21.10.21 um 19:10 schrieb Sharan Foga: Hi All A while ago I put together a detailed accounting tutorial as an appendix for my Getting Started

Re: Use OfBiz features trough REST, SOAP or the like?

2021-10-17 Thread Michael Brohl
Hi Marius, no, learning OFBiz is not a bad invest. Both projects have their strengths and the same root as on e of the creators of OFBiz is also the creator and main developer of Moqui. You should take a look at both and decide which projects suits you better. Best regards, Michael Brohl

Re: Use OfBiz features trough REST, SOAP or the like?

2021-10-17 Thread Michael Brohl
Hi Marius, please have a look at the REST integration plugin. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 17.10.21 um 10:10 schrieb Marius Schmidt: Is it out-of-the-box possible to access the whole bunch of functionality OfBiz provides via SOAP or REST services or the like

Re: How to facelift the backend applications

2021-10-17 Thread Michael Brohl
ou provide all non-optional data. To retain upgrade compatibility, you should either write your own backend modules or, if you only make minor modifications, mark them as mods to easily merge while upgrading. Happy OFBiz journey, Michael Brohl ecomify GmbH - www.ecomify.de Am 17.10.21 um 09:

Re: Plugin available check?

2021-10-11 Thread Michael Brohl
Hi Ingo, I have no access to the code right now, but have you checked the code behind the artifact info in webtools [1] ? This might give you some hints. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de [1] https://demo-stable.ofbiz.apache.org/webtools/control/ViewComponents Am

Re: Demos seem slow

2021-08-09 Thread Michael Brohl
/mailing-lists.html Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 07.08.21 um 20:30 schrieb Yuresh Akila: Hi Jaques, Please unsubscribe me from this group, if you can. I dont know about the OFBiz Software, I never got a chance to use it. But the support of this group

Re: Product Feature Content handling

2021-07-12 Thread Michael Brohl
Hi Guilio, for custom projects and our OFBiz based plattform we have extended the database model and API with ProductFeatureContent and ProductFeatureContentyType entities. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 12.07.21 um 13:15 schrieb Giulio Speri - MpStyle Srl

Re: The Difference between "Current stable Release ERP" and "Developer Trunk ERP"

2021-05-21 Thread Michael Brohl
As an addition to Gil's informations: the different layouts you see in the demos are caused by the theme selection the last demo user was using. You can change the current theme anytime. Both demos should have the same themes available. Best regards, Michael Brohl ecomify GmbH

Re: Naming convention for identifiers?

2021-04-12 Thread Michael Brohl
qId using SequenceValueItem are numerical, starting at 1 by default. Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 12.04.21 um 08:46 schrieb 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" (

Re: Build failure > Ofbiz 17.12.06 in Ubuntu 18.04.5 LTS; Build success > Ofbiz 17.12.06 Windows Server 2016 : RESOLVED

2021-03-25 Thread Michael Brohl
the properties file present in our repository. See https://issues.apache.org/jira/browse/OFBIZ-12192?focusedCommentId=17300432=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17300432 and following. Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 25.03.21 um

Re: Fwd: Alerte Google : ofbiz

2021-03-23 Thread Michael Brohl
I'm pretty sure that this is not the kind of popularity we want to have for the project and don't see the funny part of it. Michael Am 23.03.21 um 09:47 schrieb Jacques Le Roux: Hi, Seems that OFBiz is becoming more popular :) Have a good day Jacques

Re: Stable is down since Feb. 28

2021-03-09 Thread Michael Brohl
Looks like the plugins for 17.12 are not up-to-date on the server The dependency for org.jasig.cas:cas-server-core was changed toorg.apereo.cas:cas-server-support-ldap-core during the JCenter/Maven Central migration. Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 09.03.21 um 13

Re: OFBiz REST implementation session #2 (10/07/2020)

2021-02-25 Thread Michael Brohl
0 instead of    GET https://domain.tld/rest/services/getProduct?productId=1 ? Or, even better    GET https://domain.tld/rest/product/1 ? Thanks for an update, Michael Brohl ecomify GmbH - www.ecomify.de Am 06.10.20 um 16:15 schrieb Girish Vasmatkar: Hi All Please note the meeti

Re: Can't have same invoiceID for invoices created in different years

2021-02-20 Thread Michael Brohl
will not help with the problem during import. Because of the primary key, you cannot have the same invoice id twice so *I guess* the setting will generate an invoice id with the year and id (like 2021-1 or similar). But I'm not sure though... Regards, Michael Brohl ecomify GmbH

Re: System error, could not commit transaction XAException (null) on resuming transaction

2021-02-20 Thread Michael Brohl
commit. Have you checked timeout settings for the connection pool? That's plain guessing without having the code and environment visible so please excuse if it goes in the wrong direction. Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 20.02.21 um 19:43 schrieb Giulio Speri

Re: Add CSS/JS to backend theme from plugin

2021-02-18 Thread Michael Brohl
Hi Ingo, I see. You want the theme to "visit" every plugin to pick up ressources which are meant to enhance the theme, right? Thats interesting but - to my knowledge - not implemented or possible to achieve OOTB. Sounds like a feature worth thinking about though. Regards, Mic

Re: System error, could not commit transaction XAException (null) on resuming transaction

2021-02-18 Thread Michael Brohl
Hi Giulio, have you checked that the transaction timeout is set high enough for the parent transaction? Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 17.02.21 um 01:08 schrieb Giulio Speri - MpStyle Srl: Hello everyone, I hope you are all doing well. I write because I am

Re: Add CSS/JS to backend theme from plugin

2021-02-16 Thread Michael Brohl
ing? Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 16.02.21 um 19:52 schrieb Ingo Wolfmayr: Hi Michael, that’s what I already did - and yes it works. I am looking for a way to add js/css files to the plugin and make it available in other application. Saying: "Common-th

Re: Add CSS/JS to backend theme from plugin

2021-02-16 Thread Michael Brohl
Theme.xml? This works OOTB with ftl files, should also work with JavaScript, no? HTH, Michael Brohl ecomify GmbH - www.ecomify.de Am 16.02.21 um 17:44 schrieb Ingo Wolfmayr: Hi Aditya, I already create my own theme by extending an existing one. It works but I feel quite uncomfortab

Re: How to get a service call stack?

2021-02-05 Thread Michael Brohl
Hi Danny, in such a case, I would simply search the codebase for the service name to see where it is referenced. In most cases, an eeca or seca is the cause for unexpected high frequency service calls. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 05.02.21 um 11:58

Re: How to create a new facility in Apache Ofbiz 17.12.05?

2021-02-03 Thread Michael Brohl
from the Jira issue to your 17.12 release. Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 03.02.21 um 09:10 schrieb Vy Do: (1) I am using Apache Ofbiz 17.12.05 (release version). I download at https://downloads.apache.org/ofbiz/apache-ofbiz-17.12.05.zip No button for creating new

Re: OFBiz Community Days - November 2020

2020-11-27 Thread Michael Brohl
You can simply continue with your email instead of choosing Google. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 27.11.20 um 12:19 schrieb Georg Potthast 2: At least I cannot successfully open an account on Slack. When I selected "Access with Google"

Re: OFBiz Community Days - November 2020

2020-11-26 Thread Michael Brohl
regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 27.11.20 um 08:07 schrieb Georg Potthast: Devanshu, I tried to get an account with Slack to join the room as you mentioned. However, I can only create an account with an email address that ends with @apache.org. When I try to get

Re: How to return to a previous plugin version?

2020-11-02 Thread Michael Brohl
Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 02.11.20 um 07:19 schrieb Aditya Sharma: Hi Georg, What I suspect with a cursory reading is as you made a replica the values of mount point etc may be the same https://github.com/apache/ofbiz-plugins/blob/trunk/ecommerce/ofbiz-compo

Re: How to Configure Ofbiz SSL

2020-10-28 Thread Michael Brohl
Hi Dominic, welcome to the OFBiz community! If you think there is a bug, please file a Jira issue in our bug tracking system, describing the exact steps and possibly provide screenshots to be able to validate the problem. Thanks, Michael Brohl ecomify GmbH - www.ecomify.de Am 27.10.20

Double posts

2020-10-06 Thread Michael Brohl
Hi, anyone else receiving double posts in this list since yesterday? Thanks, Michael Brohl ecomify GmbH - www.ecomify.de smime.p7s Description: S/MIME Cryptographic Signature

Re: Fail installing apache-ofbiz-17.12.04 on windows 10

2020-08-15 Thread Michael Brohl
and point the JAVA_HOME environment variable to this folder. I recommend doing this in the start/stop scripts to avoid problems with other applications relying on the JAVA_HOME from the global Windows environment variables. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am

Re: Trouble getting ofbizDemo to run

2020-08-02 Thread Michael Brohl
, it was replaced by the plugins mechanism. Every third party or custom enhancement should be located in the plugins directory. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 02.08.20 um 10:54 schrieb Georg Potthast: I installed the JDK version 8 and OFBiz on my Windows 10 system

Re: Need help/direction getting started with OFBIZ ERP

2020-07-17 Thread Michael Brohl
Hi Phoon, see here: https://www.youtube.com/watch?v=Lzmv0DCC5N4 Should be very similar to the MariaDB configuration. For MariaDB installation: https://vitux.com/how-to-install-and-configure-mysql-in-ubuntu-18-04-lts/ hth, Michael Brohl ecomify GmbH - www.ecomify.de Am 17.07.20 um 10:22

Re: OFBiz configuration on production site

2020-07-13 Thread Michael Brohl
Hi Katie, can you provide your Apache virtual host configuration with the AJP settings? Thanks, Michael Am 13.07.20 um 09:10 schrieb Katie Qiu: Hi Pierre, Jacques and Michael, I want to thank you all again. I am finally able to make OFBiz on Windows Server work with SSL Let's encrypt

Re: [TUTORIAL] APACHE OFBIZ INSTALL ON WINDOWS 10

2020-07-08 Thread Michael Brohl
we had changes in the task naming (loadAll/loadDefault). Thanks, Michael Brohl ecomify GmbH - www.ecomify.de Am 07.07.20 um 20:59 schrieb moh.kar...@gmail.com: Dear SK The same problem The Load data failed!! Thank you MOhammad -Original Message- From: S K Pradeep Kumar Sent

Re: [TUTORIAL] APACHE OFBIZ INSTALL ON WINDOWS 10

2020-07-05 Thread Michael Brohl
Hi John, it's all in the INSTALL/README files included in the release download package. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 05.07.20 um 18:15 schrieb John The: Hi Support, Do you have tutorial for installation Apache OfBiz on Windows 10 OS? Thank  you

Re: OFBiz configuration on production site

2020-06-27 Thread Michael Brohl
Hi Katie, please refer to our Wiki: https://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo#FAQTipsTricksCookbookHowTo-HTTPD If you use the Apache Webserver you don't need to bother with the Tomcat keystore. HTH, Michael Brohl ecomify GmbH

Re: Open Source Enterprise Job Scheduler with Ofbiz in Production

2020-05-07 Thread Michael Brohl
Hi Sakthivel, OFBiz already comes with a job scheduler, see https://demo-trunk.ofbiz.apache.org/webtools/control/scheduleJob Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 07.05.20 um 05:32 schrieb Sakthivel Vellingiri: Hi All, Wanted to reach out to see if you have any

Re: Multiple configuration for different environments

2020-04-19 Thread Michael Brohl
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 for introduction into OFBiz. Best regards, Michael

Re: Ofbiz integration with Azure AD SSO

2020-03-26 Thread Michael Brohl
external SAML2 authentication * the SAML SSO login can be configured/activated per webapp You will still need an OFBiz user for the use of your application, if it is not to be used anonymously. Hope that helps, best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 23.03.20 um 11:14

Re: Unsubscribe from Mailing List

2020-02-04 Thread Michael Brohl
Hi Garima, please help yourself: https://ofbiz.apache.org/mailing-lists.html (at the bottom). Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 04.02.20 um 13:12 schrieb Garima Jain: I request you to unsubscribe me from your mailing list. smime.p7s Description: S/MIME

Re: Start Service on Ofbiz Startup

2020-01-28 Thread Michael Brohl
). Michael Brohl ecomify GmbH - www.ecomify.de Am 28.01.20 um 11:06 schrieb Gil Portenseigne: Hello Ingo, For this case, i think I would plan a job to run every X minutes, that will check if the connexion is alive or, establish it. The jobPoller will then take care of it after OFBiz

Re: Solr Demo

2020-01-26 Thread Michael Brohl
Hi James, the official demos include the Solr integration. I'm not sure what you are missing, can you specify more detailed what you like to see? Thanks, Michael Brohl ecomify GmbH - www.ecomify.de Am 27.01.20 um 02:15 schrieb ja...@productive1.com: Is there a demo of the Solr

Re: Developing a client site with OFBIZ.

2020-01-24 Thread Michael Brohl
update even if you made changes/MODS in the standard components (which should be avoided where possible), git mergetool will help you during merge. Hope this helps, Michael Brohl ecomify GmbH - www.ecomify.de Am 24.01.20 um 17:45 schrieb Robert Wynkoop: Hello everyone. Still trying to figure

Re: Installation trouble

2020-01-23 Thread Michael Brohl
Feel free to improve them if you see room for optimization, Pierre. Thanks, Michael Brohl ecomify GmbH - www.ecomify.de Am 23.01.20 um 13:00 schrieb Pierre Smits: Perhaps the instructions are not as clesr as they could be... Op do 23 jan. 2020 12:38 schreef L : ./gradlew loadAll doesn't

Re: Installation trouble

2020-01-23 Thread Michael Brohl
Hi, as you might have noticed, my answer was addressed to Parminder's answer, particularily the fact that the gradlew file is not included. I may come back to your topics if noone else beats me to it. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 22.01.20 um 20:50 schrieb

Re: Installation trouble

2020-01-22 Thread Michael Brohl
This is well documented in the README along with the system requirements which is always a good read ;-) You can find the reasons for this here: [1] Thanks, Michael Brohl ecomify GmbH - www.ecomify.de [1] https://issues.apache.org/jira/browse/OFBIZ-10145 Am 22.01.20 um 15:08 schrieb

Re: Multi Tenancy Support

2019-10-17 Thread Michael Brohl
Hi Rajesh, I'm not sure if I understand correctly: are you offering to provide the fix under the condition that you are being paid for it? Regards, Michael Am 16.10.19 um 17:47 schrieb Rajesh Mallah: Hi We are willing to sponsor the resolution of this issue.

Re: Update about Apachecon 2019, Las Vegas(September 09 - September 12)

2019-09-26 Thread Michael Brohl
Hi Ashish, thank you for the great summary, insights and photos! You all seem to have had a great time, wish I could have been there too. Kudos, Michael Am 26.09.19 um 15:04 schrieb Ashish Vijaywargiya: Dear All, I am writing this email to share the update about Apachecon 2019 which was

Re: Looking for a consultant

2019-07-12 Thread Michael Brohl
Hi Mariano, welcome to the OFBiz community! You will find a list of service providers for Apache OFBiz in our wiki: https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Service+Providers Best regards, Michael Am 12.07.19 um 04:29 schrieb Mariano Marks: Hello everybody, I am

Re: OFBiz Community Days – May 2019

2019-06-08 Thread Michael Brohl
Hi Swapnil, thank you and everyone involved for the efforts and insights! Best regards, Michael Am 08.06.19 um 09:41 schrieb Swapnil M Mane: Thanks so much everyone who participated in the OFBiz community day. Indeed it was a very impactful community day, the community worked on around 31

Re: Fwd: Unsubscribe footer

2019-06-07 Thread Michael Brohl
r (without privileges) since 2008* Apache Steve <https://steve.apache.org>, committer On Thu, Jun 6, 2019 at 2:23 PM Michael Brohl wrote: Thanks everyone, the footers are removed by Infra on my request (with apologies) with reference to this discussion (see [1]). @Pierre: do you want to tell us

Re: Unsubscribe footer

2019-06-06 Thread Michael Brohl
individuals not wanting to unsubscribe. I would also recommend that future actions with infra to be taken by a PMC member (after community approval) since they have access to necessary resources and are hence best fit to guide infra on the needs of the project. On Wed, Jun 5, 2019, 11:09 AM Michael Brohl

Re: Unsubscribe footer

2019-06-05 Thread Michael Brohl
Hi all, I've already informed Infra about this step taken without approvement from the community, see [1] Should I ask them to remove the footers? Thanks, Michael [1] https://issues.apache.org/jira/browse/INFRA-18553 Am 03.06.19 um 15:12 schrieb Michael Brohl: I don't think that we need

Re: Unsubscribe footer

2019-06-03 Thread Michael Brohl
. Thanks, Michael Am 03.06.19 um 13:11 schrieb Jacques Le Roux: +1 But I can't see a way to enforce that. Apart maybe asking infra, and even then not sure it makes sense for "external writers" who have those kinds of disclaimer messages at bottom Jacques Le 03/06/2019 à 12:36, Mic

Re: Unsubscribe footer

2019-06-03 Thread Michael Brohl
them more readable. Some bad example with a content/noise ratio of 1:7 lines can be seen below... Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 03.06.19 um 12:24 schrieb Taher Alkhateeb: Why was this done without community agreement first? On Mon, Jun 3, 2019 at 8:59 AM Pierre

Re: Plugin development with pure java

2019-05-07 Thread Michael Brohl
Just an addon to Rishi's summary: you will find services and event logic programmed in mini/simple lang (XML). This is deprecated and will be replaced by Groovy over time. Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 07.05.19 um 13:52 schrieb Rishi Solanki: Dear OFBiz User, All

Re: Legacy Data

2019-05-02 Thread Michael Brohl
for the number of rows containing data - copy the first column and paste into the load data xml file. Example: =CONCATENATE( "externalId='";sheet1!C65;"' statusId='";sheet1!D65;"' />" ) Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 01.05.19 um 18

Re: Problem creating task and phases in Projects

2019-04-15 Thread Michael Brohl
Please see https://ofbiz.apache.org/mailing-lists.html Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 15.04.19 um 08:42 schrieb ariela.ele...@gmail.com: Hello Jacques, I am trying to find the link to subscribe to the users mailing list, but I can't find it. It says: - Log

Re: Responsive Theme

2019-04-13 Thread Michael Brohl
As far as I know, Scipio is not compatible with current versions of standard OFBiz. It's based on the 14.12 branch which is out of support and the widget/template mechanism was changed. Regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 12.04.19 um 23:58 schrieb jhlab: Hello, I

  1   2   3   4   >