Questions tagged [ofbiz]

Apache OFBiz® is an open source product for the automation of enterprise processes that includes framework components and business applications for ERP (Enterprise Resource Planning), CRM (Customer Relationship Management), E-Business / E-Commerce, SCM (Supply Chain Management), MRP (Manufacturing Resource Planning), MMS/EAM (Maintenance Management System/Enterprise Asset Management). Apache OFBiz is a project of The Apache Software Foundation.

Apache OFBiz (The Apache Open For Business Project) is an open source enterprise automation software. By open source enterprise automation we mean: Open Source ERP, Open Source CRM, Open Source E-Commerce, Open Source SCM, Open Source MRP, Open Source CMMS/EAM, and so on.

Reference:

312 questions
1
vote
1 answer

Apache OFBiz 18.12.04 build failure

I am trying to build OFBiz 18.12.04 on Ubuntu Sever 20.04 and I get the following build failure: FAILURE: Build failed with an exception. Where: Build file '../apache-ofbiz/build.gradle' line: 133 What went wrong: A problem occurred evaluating…
gareth_t
  • 13
  • 4
1
vote
1 answer

Groovy Pattern for matching a value in map

Hy guys, i'm working on a IDEA plugin and custom references. I have many references working, but i'm stuck with a difficult one. I'd like to detect patterns in groovy such as this one : result = run service: 'createAgreementItem', with:…
Gaetan
  • 31
  • 5
1
vote
1 answer

GKE OFBiz pod not connecting to Google Cloud SQL database

Following this tutorial to connect OFBiz to a MySQL database. I'm trying to create an OFBiz deployment with persistent storage where new pods will store and retrieve data from MySQL. Dockerfile for OFBiz pods FROM openjdk:8 RUN apt-get update &&…
1
vote
1 answer

Changing existing components/applications?

Can I change existing applications for example accounting. Like removing fields and menus not required, by not breaking the application? Or, is it possible to make a copy of the application/component and change it without changing the original?
1
vote
1 answer

Tomcat9 web access other than localhost failed

I am trying to evaluate ofbiz ( v17.2.03 ) just now. I can access it via https://127.0.0.1:8443/.../ from local machine (192.168.110.182) but not from other machines. The error message is like(from…
DKay
  • 21
  • 3
1
vote
3 answers

OFbiz configuration on production site

I'm new to OFBiz and having trouble making it work on production. I'd appreciate it very much if you could help me to narrow down or even better solve the problem :-) I was able to able to run OFbiz successfully at localhost and access data that…
1
vote
1 answer

What are the new features in apache ofbiz branch release 17.12 or 18.12 compared to stable version of 16.11

After stable version of ofbiz 16.11, ofbiz did two more branch releases, 17.12 and 18.12. What is the new feature this two releases are offering? Is there any guide for this? I searched in there source code readme file but not found any definite…
1
vote
3 answers

Iterating over HashMap in Freemarker template displays map's methods

In Apache OfBiz application, I have such code in controller: public static String runRequest(HttpServletRequest request, HttpServletResponse response) { Map typesToCount = getTypesToCount(); …
srzhio
  • 186
  • 2
  • 12
1
vote
1 answer

Ofbiz Websocket Example setup not connecting wss

I am trying to setup websocket environment by setting up ofbiz 16.11.04 build and from catalina.properties, i set websocket=true. I tried to get into "Example", i am getting following error Firefox can’t establish a connection to the server at …
1
vote
1 answer

How to integrate alfresco with ofbiz

Could anyone let me know how can we integrate alfresco with ofbiz?
Sitesh
  • 11
  • 1
1
vote
0 answers

Websocket implementation not working in Apache Ofbiz

I am checking the Websocket implementation in Apache Ofbiz. I followed the parent ticket OFBIZ-7073 and its child tickets. But I am getting the following error- ExamplePushNotifications.js:23 WebSocket connection to…
Pallavi Goyal
  • 536
  • 1
  • 4
  • 21
1
vote
0 answers

OfBiz does not find Java service

I am using OfBiz 16.11.03 and try to implement some new services. Every service setup up with engine="entity-auto" works just fine. However, when I try to create a service with engine="java" during runtime, it fails locating the implementing…
sarathas
  • 25
  • 6
1
vote
2 answers

Apache ofbiz "build.xml does not exist!" error

I'm trying to reset my admin password using a guide that uses Ant. However when I try to change the password using the ant command I get the error Buildfle: build.xml does not exist! Build failed Does anyone have any suggestions on how to get…
harry
  • 129
  • 5
  • 14
1
vote
1 answer

difference between "applications" folder and the "hot-deploy" folders in ofbiz?

I'm new to ofbiz. I create an application in my "ofbiz/hot-deploy" folder. In some site, books they mention our application should be present in "applications" folders also. But I don't know the difference between put user defined applications in…
SIVAKUMAR.J
  • 4,258
  • 9
  • 45
  • 80
1
vote
3 answers

include not parsing template file

I have three very simple files: main.ftl <#include "header.ftl">

Test

<#include "footer.ftl"> header.ftl

Header

footer.ftl

Footer

Technically it should output three h1's however my actual output is: I read that…
Script47
  • 14,230
  • 4
  • 45
  • 66