Re: sendMail service over online MS Office365

2014-09-26 Thread Brett Palmer
; > http://ofbiz.135035.n4.nabble.com/how-to-configure-SMTP-td4628571.html > > > ------ > *From:* "Brett Palmer" > *To:* "user@ofbiz.apache.org" > *Sent:* September 26, 2014 12:12 PM > *Subject:* sendMail service over online MS Off

sendMail service over online MS Office365

2014-09-26 Thread Brett Palmer
Ofbiz Users, Our office recently moved from gmail to the online MS Office 365. I'm trying to configure the ofbiz sendMail service to use the SMTP relay to route through smtp.office365.com. I've made the changes in the general.properties file but I'm still getting a "client was not authenticated

Re: Should we use some lock when update qoh of InventoryItem

2014-08-06 Thread Brett Palmer
Sandglass Software > www.sandglass-software.com > > On 8/6/2014 3:44 PM, Brett Palmer wrote: > >> We have run into this problem in the past with the inventory and other >> entities when running multiple application servers under high load. We >> worked around this issue

Re: Should we use some lock when update qoh of InventoryItem

2014-08-06 Thread Brett Palmer
We have run into this problem in the past with the inventory and other entities when running multiple application servers under high load. We worked around this issue by creating a custom class that gets the Connection from the entity engine. Then we built a custom JDBC query to do a SELECT for U

Re: Correct use of the "clustered" property in general.properties files

2014-04-05 Thread Brett Palmer
this.tableName + " WHERE " + SequenceUtil.this.nameColName + "='" + this.seqName + "'"; } Thanks, Brett On Fri, Apr 4, 2014 at 1:38 PM, Jacques Le Roux < jacques.le.r...@les7arts.com> wrote: > > Le 04/04/2014 18:47, Bret

Correct use of the "clustered" property in general.properties files

2014-04-04 Thread Brett Palmer
Ofbiz Users, We upgraded our version of OFBiz a few months ago and are running through some performance tests. We are seeing errors in the SequenceUtil.getNextSeqId() method when we run load tests with multiple application servers. Note: We normally run multiple instances of OFBiz against the sa

Re: Problems with jackrabbit configuration and remote MySql database

2012-10-08 Thread Brett Palmer
and restarted the server and everything came up all right after that. Brett On Mon, Oct 8, 2012 at 10:43 AM, Brett Palmer wrote: > I'm trying to configure jackrabbit to work with a remote mysql database. > I have changed JackRabbit to work with MySql instead of the default derby &g

Problems with jackrabbit configuration and remote MySql database

2012-10-08 Thread Brett Palmer
l as for the > Workspace (Tag: ). > > Hope this helps. > > R, > > Markus > > > > On Mon, 20 Feb 2012 01:16:49 -0700, Brett Palmer wrote: > >> This is probably an easy question, but its been a while since we updated >> our ofbiz version. We are tryin

Re: Ofbiz with MySQL or PostgreSQL

2012-06-23 Thread Brett Palmer
properties will turn off persisting the stats for ofbiz which is where you get constraint errors in mysql because the server stats use a timestamp as a primary key. Brett On Sat, Jun 23, 2012 at 9:07 PM, 李明洋 wrote: > ho > > how to disable server hit? > 在 2012-6-24 上午10:10,"

RE: Ofbiz with MySQL or PostgreSQL

2012-06-23 Thread Brett Palmer
The only place I have found this to be a problem is in the server hit entity. The server hit functionality is configurable. We disable that functionality. We write custom applications using the ofbiz framework and don't do a lot of ecommerce apps so its not a problem for us. Brett On Jun 22, 2

Re: Ofbiz with MySQL or PostgreSQL

2012-06-21 Thread Brett Palmer
Sanjeev, We've used MySQL for several years now. I think most ofbiz user prefer Postgres. We like Postgres but the one feature that keeps us with MySQL is its replication feature. Replication in MySQL is very good and easy to administer. We use them for running reports which helps us scale our

Re: Running multiple instances of OFBiz to the same database

2012-03-21 Thread Brett Palmer
Mike, I posted a similar question a while ago on this topic. The subject was "How to assign JobSandbox jobs to specific application server?" In the posting I asked if different app servers could be configured to run against different job pools in the service engine. Here is a copy of what I pos

Re: Who is using the seleniumxml and why?

2012-02-29 Thread Brett Palmer
Jacopo, Your recommendation sounds good. Selenium has been moving away from their Selenium RC technology which is the foundation for SeleniumXML. Instead they are moving to their new Selenium Web Driver which works a lot like SeleniumXML. Unless ofbiz users are actively developing SeleniumXml s

Re: ofbiz not running from recent update in trunk

2012-02-20 Thread Brett Palmer
p://10.202.10.80:5432/ofbizcms>" /> > > > > > > > > Adopt this for both, the Versioning (Tag: ) as well as for the > Workspace (Tag: ). > > Hope this helps. > > R, > > Markus > > > > On Mon, 20 Feb 2012 01:16:49 -0700, Brett Palmer wrote: > >

ofbiz not running from recent update in trunk

2012-02-20 Thread Brett Palmer
This is probably an easy question, but its been a while since we updated our ofbiz version. We are trying to update to the latest version from the trunk to determine what changes we need to make to our code. When I start ofbiz after setting up the database and build, I get a JCR LoginException an

Re: JobManager failing to schedule jobs

2011-07-14 Thread Brett Palmer
;>>> > >>>>>>> On Wed, Jul 13, 2011 at 5:34 PM, Scott Gray < > scott.g...@hotwaxmedia.com> wrote: > >>>>>>>> That configuration is for the frequency of job polls. There isn't > any ability to specify the transaction ti

Re: JobManager failing to schedule jobs

2011-07-13 Thread Brett Palmer
; >>> > >>>> Brett, > >>>> > >>>> Before I start trying to run the jobs manually, I want to give your > >>>> suggestion a try. I think I know where to configure the job polling > >>>> transaction time (I believe it'

Re: JobManager failing to schedule jobs

2011-07-13 Thread Brett Palmer
> first? > Do you mean somehow removing the current pending jobs, applying you > patch and the copying them back again? > > Thanks, > > > On Wed, Jul 13, 2011 at 12:08 PM, Brett Palmer > wrote: > > Josh, > > > > I've also seen this problem if the

Re: JobManager failing to schedule jobs

2011-07-13 Thread Brett Palmer
Josh, I've also seen this problem if the JobSandbox table has too many rows to process. I ran into a similar problem when I tried to run 10,000 Async batch processes. The time it took for the JobPoller to process all the records was too long and the transaction would time out. I had a patch to

Restarting an ofbiz service

2011-06-02 Thread Brett Palmer
I recently had to stop a service running in production. I changed the status_id in the JOB_SANDBOX from SERVICE_PENDING and SERVICE_RUNNING to SERVICE_FINISHED. This stopped the service from running but now I want the service to start again. I've tried changing the last SERVICE_FINISHED job to S

Re: Unable to acquire a new connection from the pool

2010-11-18 Thread Brett Palmer
We are seeing errors about unable to acquire a new connection pool from MySQL. The entityengine.xml pool-minsize and pool-maxsize are set correctly. We have a pool-maxsize of 250 which we never reacher. I think the problem may be an idle connection problem where the DB host system cuts the datab

Re: using json

2010-09-19 Thread Brett Palmer
Chris, We use the DojoJSONServiceEventHandler in our controller.xml file to make service request via an AJAX client. The client specifies the service name and appropriate parameters. Then the handler returns a json string back to the client. We've like using json for many things as it is light

Re: Optimistic locking based on timestamps

2010-08-13 Thread Brett Palmer
James, We have run into this same problem on MySQL and ofbiz. We worked around the problem by creating a custom method that got a direction connection from the transaction manager. Then we wrote a custom SELECT for UPDATE on that connection. We needed this functionality because we had multiple

Re: Optimistic locking based on timestamps

2010-08-13 Thread Brett Palmer
David, I like postgres for the reason you have mentioned. The number one reason we use MySQL in some of our deployments is because its replication solution is very good. You can replicate your data from the database very quickly. We do this for database backups in production as well as creating

Re: Using Drools to Help with Rules

2010-07-28 Thread Brett Palmer
I'm working on a non-ofbiz project right now where they are considering replacing the commercial rules engine solution with something like drools. Drools looks like a solid rules engine. They have their own domain specific language (DSL) which makes the rules easy to develop and follow. The also

Re: Multiple instances and the JobSandbox

2010-07-22 Thread Brett Palmer
Scott, Thanks for this information. I think the instanceId solves the problem for the Service engine and the JobSandbox table. Do you know if OFBiz has a similar solution for other tables that might have problems with concurrency? We ran into some problems with the order and inventory tables wh

Re: Service engine timeouts

2010-07-10 Thread Brett Palmer
ould just add a > timeout value to the TransactionUtil.begin() call in poll() and see if that > does the trick. We could always look at making this configurable if you > wanted to provide a patch for such a thing. > > > > Regards > > Scott > > > >

Re: Service engine timeouts

2010-06-28 Thread Brett Palmer
velopment > HotWax Media Pvt. Ltd. > Direct: +91-9893287847 > http://www.hotwaxmedia.com > > > On Sun, Jun 27, 2010 at 2:17 AM, Brett Palmer >wrote: > > > We are running into a problem with the service engine when trying to run > an > > archiving batch servi

Service engine timeouts

2010-06-26 Thread Brett Palmer
We are running into a problem with the service engine when trying to run an archiving batch service. Here is how the service runs. 1. We run a service that collects a bunch of records for data warehousing. 2. The data warehouse service calls an async service call to process each individual recor

Re: Using custom delegator in simple method

2010-04-15 Thread Brett Palmer
st your code here'} > > HTH! > > > > Rishi Solanki > > Manager, Enterprise Software Developer > > HotWax Media Pvt. Ltd. > > Direct: +91-9893287847 > > http://www.hotwaxmedia.com > > > > > > On Wed, Apr 14, 2010 at 3:14 AM, Brett Palm

Using custom delegator in simple method

2010-04-13 Thread Brett Palmer
Does anyone know if it's possible to specify the entity delegator you want to use in a simple method instead of using the "default" delegator? I know you can do it from a Java service but I would like to do it from a simple method if possible. We have an ofbiz application that uses two delegators

Re: Profiling using OFBiz

2010-03-17 Thread Brett Palmer
Neha, I posted this message a few months ago about some profiling probes we wrote to measure method times. They work pretty well and allow you specify what you want to profile (e.g. com.mycode.* or org.ofbiz.entity, etc). I've been meaning to contribute these tools back with instructions on how

Re: Avoiding the "Got a insecure (non-https) form POST" warning when running non-secure between Apache and Tomcat

2010-03-04 Thread Brett Palmer
Thanks that was a helpful link. We are still trying to determine what performs better, mod_jk or mod_proxy. We thought we found some bottlenecks under heavy loads with mod_Jk but we never confirmed that. I'll update the group on our findings as we discover them. Brett On Thu, Mar 4, 2010 at

Re: Avoiding the "Got a insecure (non-https) form POST" warning when running non-secure between Apache and Tomcat

2010-03-04 Thread Brett Palmer
Gray wrote: > On 4/03/2010, at 10:50 AM, Brett Palmer wrote: > > > We use Apache web servers to communicate with our OFBiz servers using a > > combination of mod_jk and mod_proxy. For our mod_proxy configuration, we > > forward secure requests (https) from Apache to

Avoiding the "Got a insecure (non-https) form POST" warning when running non-secure between Apache and Tomcat

2010-03-04 Thread Brett Palmer
We use Apache web servers to communicate with our OFBiz servers using a combination of mod_jk and mod_proxy. For our mod_proxy configuration, we forward secure requests (https) from Apache to a non-secure port (8080) on Tomcat/OFBiz. Our application is an AJAX/Dojo application that posts normal H

Re: debugging Groovy files in Eclipse

2010-02-10 Thread Brett Palmer
Kojo, Does the Groovy plugin slowdown your eclipse environment? I tried it a while ago but it was continually rebuilding the projects and making eclipse run slowly. I finally had to uninstall the plugin. Have the improved the plugin with these newer releases? Brett On Wed, Feb 10, 2010 at 6:

Re: Any chance for an upgrade? - help please

2010-01-29 Thread Brett Palmer
Florin, Have you tried using Apache's mod_proxy instead of mod_jk? I'm not surprised that you get faster responses directly from Apache but 2-3 req/sec doesn't sound good for Tomcat either. I'll try this same tool in our configuration and see what we get. For us we configure mod_jk to communica

Re: Any chance for an upgrade? - help please

2010-01-29 Thread Brett Palmer
Florin, I'm not sure what you mean when you say "apache talke with ofbiz instances via AJP rather than mod_jk". I thought mod_jk used AJP. I would be interested if you find that AJP is a bottleneck. We use a configuration with Apache on the front end and ofbiz on behind it. We use mod_jk becau

Re: How to create a new entity

2009-12-30 Thread Brett Palmer
There are two steps to definining a new entity. 1. First add the entity definition to your entitymodel.xml file which looks you have. 2. Then add the entity to the group file which is usually called entitygroup.xml If you don't have the entity added to the entitygroup.xml file it won't be crea

Re: Method to tie into the ofbiz shutdown process

2009-12-22 Thread Brett Palmer
> basic way. > > -David > > > On Dec 22, 2009, at 10:12 AM, Brett Palmer wrote: > > > We need to perform a clean up operation for some custom caching we are > doing > > with our ofbiz servers. Is there a convenient way to tie into the ofbiz > > shutdown proce

Method to tie into the ofbiz shutdown process

2009-12-22 Thread Brett Palmer
We need to perform a clean up operation for some custom caching we are doing with our ofbiz servers. Is there a convenient way to tie into the ofbiz shutdown process for this type of cleanup? Another approach would be for us to write a custom servlet and implement the "init" and "destroy" methods

Re: How to assign JobSandbox jobs to specific application server?

2009-12-22 Thread Brett Palmer
1 pool for app server 1 and worker2 pool for app server 2: Brett On Tue, Dec 22, 2009 at 7:30 AM, Brett Palmer wrote: > We run multiple ofbiz application servers against the same ofbiz database. > We would like to have spec

How to assign JobSandbox jobs to specific application server?

2009-12-22 Thread Brett Palmer
We run multiple ofbiz application servers against the same ofbiz database. We would like to have specific application servers execute scheduled batch services through the JobSandbox. For example, server 1 executes service 1, server 2 executes service 2, etc. The default behavior is that each app

Re: How to change default entity sequencer increment of 10

2009-12-12 Thread Brett Palmer
r. > > BTW, which version of OFBiz are you using? Getting sequence IDs should be > in a separate transaction from your main transaction, but of course even > with a tiny transaction like that conflicts could occur. > > -David > > > On Dec 12, 2009, at 11:26 AM, Brett Pa

How to change default entity sequencer increment of 10

2009-12-12 Thread Brett Palmer
We are running a mysql 5.x database with 4 applications servers on the same db. We use the GenericDelegator.getNextSeqId() a lot in our code and simple methods. The default is for the sequencer to increment by 10 but under heavy loads we are seeing the SequenceValueItem table get really hot with

ApacheCon 2009 Round Table User Feedback

2009-11-10 Thread Brett Palmer
Here are the notes that I took during the ApacheCon 2009 User Round Table. The conference was a success but I believe was less attended than normal. I've been to about 6 ofbiz conferences and this one was the least attended by ofbiz users than others. I attribute this to the current economic situa

Re: ApacheCon 2009

2009-11-05 Thread Brett Palmer
David, sorry to hear that you're not coming. I arrived yesterday but I've been busy putting out production fires today. I should be ready for my presentation tomorrow. Brett On Thu, Nov 5, 2009 at 1:27 PM, David E Jones wrote: > > It's great that there are a few OFBiz people there! > > I was

Re: deploying ofbiz in amazon EC2

2009-10-05 Thread Brett Palmer
What are the issues you've had with EC2? We've been using it for several months now and haven't found a problem. Curious what others are finding for f others are using it. Thread specific: we are using the OOTB ofbiz embedded tomcat and use svn to distribute code to our EC2 servers. I can't se

Re: JobPoller causing high cpu utilization.

2009-09-23 Thread Brett Palmer
I think Ofbiz 3.0 is pretty old so its going to be hard for the community to help with this issue. Here are a few suggestions: - are you archiving the job_sandbox table? This table can get very large if you don't - make sure you have services set to fail after a certain amount of retries. I hav

Re: Load Balancing in OFbiz

2009-09-22 Thread Brett Palmer
. Brett On Tue, Sep 22, 2009 at 11:30 PM, Brett Palmer wrote: > 1. We run one instance of ofbiz on a separate server but this is because > we are running a single application and want to scale by adding more > machines. > > 2. It is easier to use the embedded ofbiz version rather th

Re: Load Balancing in OFbiz

2009-09-22 Thread Brett Palmer
1. We run one instance of ofbiz on a separate server but this is because we are running a single application and want to scale by adding more machines. 2. It is easier to use the embedded ofbiz version rather than a standalone tomcat with ofbiz placed as a standard WAR file. From the Apache Web

Re: Delivering .swf files via the serveObjectData object

2009-09-22 Thread Brett Palmer
Al, The only thing I see that stands out is the "chartset" setting for the non-working CMS url. charset=UTF-8 Maybe setting the chartset the flashplayer assumes it is text and not binary file. Brett On Tue, Sep 22, 2009 at 11:01 PM, Al Byers wrote: > These are the headers when coming for thi

Re: Load Balancing in OFbiz

2009-09-22 Thread Brett Palmer
Neha, Here is a configuration we use to do load balancing in ofbiz. Others may do something else. 1. One machine is running an Apache Web server with mod_jk setup to communicate with different instances of ofbiz. The mod_jk is setup to load balance between the different ofbiz instances. Here i

Re: Thesis Idea

2009-08-25 Thread Brett Palmer
Naing, There are lots are areas in OFBiz that could be used for a Master's thesis. I would recommend you first work with one of your professors to see if they can help you define a thesis around OFBiz. You need that sponsorship to complete the work and they can help you decide what would be appro

Setup Tomcat for JMX monitoring with Hyperic

2009-07-30 Thread Brett Palmer
I'm trying to use Hyperic to monitor multiple ofbiz instances. http://sourceforge.net/projects/hyperic-hq/ It requires Tomcat to be setup with JMX enabled. I'm not seeing JMX settings with the ofbiz embedded tomcat configuration. Has anyone else setup hyperic or JMX with ofbiz? Thanks, Bret

Re: Missing webslinger jar in ofbiz build path

2009-06-15 Thread Brett Palmer
I've seen it and fixed it manually. It would be nice if this could be committed. Brett On 6/15/09, Evan Fowler wrote: > Hi All, > > Doing a recent project update to ofbiz in Eclipse, I've come across an > error in the build path that states: > > Project 'ofbiz' is missing required library: 'fra

Re: Jython error

2009-06-01 Thread Brett Palmer
I think there were some early implementations in the test framework to support jython but there were never fully completed. This wouldn't be very difficult to complete though. I wrote an custom jython web event handler for ofbiz for creating easy test scripts for our application. The same could b

How to implement dynamic response view (e.g. logout)

2009-05-04 Thread Brett Palmer
We need to change the behavior of the “logout” feature in one of our custom ofbiz applications. We want the response view to depend on specific session information about the user. For example, the user's role or other security rights the user may have. Here is one way to do it but I wanted to kn

Re: best web framework

2009-04-15 Thread Brett Palmer
Another alternative to RMI is JSON. We use the JSON library that comes with ofbiz to make ofbiz service calls. The library converts the results from the service to a json string. This can be easily parsed by an AJax client or java client. Rmi is ok but a little heavy for our needs. There were

Re: About OFBiz and RMI

2009-03-28 Thread Brett Palmer
This is one of the problems of using RMI. Complex objects such as GenericValues are available but entity methods on that object won't work as they require the entity engine. A workaround is to define facade services that return simple pojos. Then rmi works pretty well. Brett On 3/28/09, Cimbal

Re: security error

2009-01-14 Thread Brett Palmer
You need to login as a user that as those permission. For example user, admin. Brett On 1/14/09, Deepika Deepika wrote: > Hi > Iam trying to create a new DataSource or DataSourceType in Marketing > application. > But i get a security error saying 'To run createDataSource you must have the > one

Re: Ofbiz Training in India

2009-01-07 Thread Brett Palmer
If you live in Mumbai, Amicon Technologies from Amit Shinde could help with ofbiz training. I've worked with his group before. They are very familiar with ofbiz. Brett On Wed, Jan 7, 2009 at 7:22 AM, kaychaks wrote: > Hi, > > My company wants to send me to a training in OfBiz. I searched in t

Re: Perfromance meter tool

2008-12-23 Thread Brett Palmer
We have been experimenting with the TPTP tools from eclipse to find performance bottlenecks. The tool let's you create your own custom probes that can be inserted at run time into your deployed application. The nice thing about these custom probes are they don't create a large footprint like so m

Re: Interesting test results

2008-05-08 Thread Brett Palmer
I have noticed similar response times when doing a build run-install with Derby and Postgres. I would be interested in seeing the performance difference with Postgres vs. MySQL. In the past MySQL was faster but we didn't use it because of the poor transaction support in MySQL. Brett On Thu, Ma

Re: Service cannot be called

2007-11-21 Thread Brett Palmer
First of all I'm not sure the JXComponentLoader even works anymore. I wrote it to load the service and entity engine for local development testing. AFAIK it has not been maintained. You could try setting an ofbiz.home environment variable for the junit test you run in eclipse (I.e -Dofbiz.home=y

Re: ofBiz for a Super Market

2007-09-11 Thread Brett Palmer
Thomas, If you do use Flex or Lazlo you will need to access the services through the ofbiz controller (presentation layer). You will also have to re-implement existing funtionality in Flex/Lazlo if you don't use ofbiz screens. If you need to use a UI like flex I would isolate it to some key funt

Re: ofbiz handheld

2007-08-29 Thread Brett Palmer
It would be a big project to put the ofbiz shopping cart on a j2me application. It would be easier to use WAP and communicate with an ofbiz server. Brett On 8/29/07, 2275429 <[EMAIL PROTECTED]> wrote: > > I am new to ofbiz i had to devlop application for online webstore for > mobile (handheld

Re: ofbiz handheld

2007-08-28 Thread Brett Palmer
I'm not sure what you mean by "handheld devices using ofbiz framework". OFBiz is an enterprise framework that would be too large to run on a handheld device. You can integrate a j2me client with an ofbiz web application by using http request to the server. If you provide more details on what you

Re: RMI problem

2007-08-14 Thread Brett Palmer
You will need to get a copy of the org.ofbiz.service.rmi.socket.zip.CompressionClientSocketFactory and org.ofbiz.service.rmi.socket.zip.CompressionServerSocketFactory from revision 451171 as they are no longer in the trunk due to license issues if you want the example from the wiki to work. Quot

Re: Debugging new component in eclipse

2007-08-06 Thread Brett Palmer
Rizwan, You need to make sure your remote connection is setup in the same eclipse project as the component you are debugging or it can miss it. If you set it up this way you can also debug the default ofbiz code as well because your project likely depends on it. This problem occurs if you have mu

Re: Why is a new java class cannot be found?

2007-08-04 Thread Brett Palmer
If you are running an ant build make sure the built Jar file is part of the classpath in your ofbiz-component.xml file. Brett On 8/4/07, Mathius Allo <[EMAIL PROTECTED]> wrote: > Hi, > > I just created a new java class to implement java method but when I could > not make use if it. > > why

xsl-fo question on border around page

2007-08-02 Thread Brett Palmer
I'm trying to create a "certificate" PDF report using xsl-fo, but I can't get the border to show around the whole page. I am able to get borders on single cells in a table but not around the whole page. Does anyone have a simple sample of how this would work? Here is what I have for the border

Re: Apache server, Tomcat , SEO and 302 issue

2007-07-23 Thread Brett Palmer
I have had similar requests from clients that use an Apache-Tomcat combination. In this case it was a tomcat struts application but the problem was the same for ofbiz. We were advised that redirecting to tomcat was not recommended for SEO. This is particularly a problem when the whole site it i

Re: PayPal - Verisign SDK

2007-07-09 Thread Brett Palmer
't make any calls to the PayPal API. I'll check the ofbiz-component.xml in the morning. Thanks for the heads up. (PayPal requires the PayflowPro.jar and two other xerces executables.) Are you using Verisign with OfBiz? Thanks Rick Brett Palmer <[EMAIL PROTECTED]> wrote: Rick, I

Re: How to debug SQL

2007-07-04 Thread Brett Palmer
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, and I need help to debug a findByAnd problem. Is there a way in OFBiz to

Re: Linux install instruction error

2007-06-23 Thread Brett Palmer
Is there a space between "ofbiz" and "chown"? It should mean something like "add the user ofbiz" and then recursively "-R" change the ownership for the new user "ofbiz". I'm not running Fedora but the command should work in any linux install. Brett On 6/23/07, BJ Freeman <[EMAIL PROTECTED]> wr

Re: Subscription HOWTO

2007-05-14 Thread Brett Palmer
We are working on a subscription project that is scheduled to roll out in June. We will post our findings and possibly a HowTo document when complete. FYI, we are using the ShoppingList module for doing subscription based payments. This is similar to how recurring orders are done with the ecomm

Re: Chat Modules

2007-04-23 Thread Brett Palmer
I don't know of any ofbiz modules. You might want to look at jabber as a good open source I.M. technology. I'm not sure what the license is but there are lots of clients to choose from and the security is good. You could possibly integrate this with ofbiz but it depends on what you want to acco

Re: Quickbooks & OfBi

2007-04-11 Thread Brett Palmer
I worked on a contract where we integrated ofbiz orders with quickbooks. The project never finished but we did discover that using a 3rd party library call QODBC was much faster than the intuit web services interface. The difficult part was mapping all the data values between the two systems. A