Re: Content Service

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hard, as in you just can not plug in code, but have to walk through application and make flow charts, then turn those into ofbiz. and I agree that understanding ofbiz and what it has, is paramount. don't forget, David, since your the architect and

Re: Content Service

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Actually the SEAS of ofbiz allows you the flexibility of doing what you describe in Drupal. You have security for Services and UI, so I don't see what Drupal has in that regard that is any better. Sounds like you comparing ofbiz and drupal from a

showing digital products after being bought

2009-01-24 Thread Heidi Dehaes
Hello, When i want to show the digital products someone has bought, onto my screen, what do i have to do? I see digitalproductlist.ftl and digitalproductedit.ftl are part of /applications/ecommerce/widget/Customerscreens.xml and are not part of the standard

Re: Improper PULL synchronization from MCS

2009-01-24 Thread Pradeep Kumar
Hi Vince, As per you, you did the initial PULL, then updated the timestamps on the records and they got pulled properly the next time. Can you pls put some help here that how can we update the timestamps on the records we need for PULL? Is it something different than what happened always before

Re: is this an indication of a security whole

2009-01-24 Thread Bilgin Ibryam
I think it is possible because admin username and password are provided in demo link. It is a demo hole ;) Bilgin On Jan 23, 2009, at 1:26 PM, BJ Freeman wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 looking at

Re: Improper PULL synchronization from MCS

2009-01-24 Thread Vince M. Clark
Correct. After updating timestamps the records pulled correctly. Of course you need to make sure you aren't doing a PUSH in the other direction that overwrites the records that did not pull correctly. Changing the timestamps is just a tool to help you isolate your problem, not a solution. The

Webtools

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This section of ofbiz yields a lot of information. a newbie would be far a head to poke around and learn what this all does. even look at the code that generates this info. https://demo.hotwaxmedia.com/webtools/control/main -BEGIN PGP

Re: showing digital products after being bought

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 another approach is to do a list of order Items that are digital item, then iterate through them and find the parties that ordered them this would give a display of the item and all the customers that ordered it. BJ Freeman sent the following on

Re: is this an indication of a security whole

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Probaby so :D Bilgin Ibryam sent the following on 1/24/2009 4:50 AM: I think it is possible because admin username and password are provided in demo link. It is a demo hole ;) Bilgin On Jan 23, 2009, at 1:26 PM, BJ Freeman wrote: looking at

field level security in oFBiz

2009-01-24 Thread Milind Parikh
What is the best practice of implementing instance specific - field level security in ofBiz? servers can belong to different groups. servers have a non-secure field called ip address ip address can be viewed and updated by anyone. servers have a secure field

Re: field level security in oFBiz

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Fields in ofbiz are part of Entities. the Actual Database is does not have any security accept that it is only accessible on 127.0.0.1. if other servers had db's, then need to be on the same class c and behind the same router. The Ip would be like

Re: field level security in oFBiz

2009-01-24 Thread Jacques Le Roux
Did you read http://docs.ofbiz.org/display/OFBTECH/OFBiz+security ? Jacques From: Milind Parikh milindpar...@gmail.com What is the best practice of implementing instance specific - field level security in ofBiz? servers can belong to different groups. servers have a non-secure

Error while running install and startup

2009-01-24 Thread jazerb
I get the following exception when running: java -jar ofbiz.jar -install -readers=seed,ext This started happening around rev 736486. Thanks for your help! 2009-01-24 16:39:04,765 (main) [UtilXml.java:246:INFO ] XML Read 0.015s: J:/working/SimplyArt/project/ofbiz/

Re: Error while running install and startup

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 did you do a ant clean first? if you use ant run-install-seed or ant run-install instead of java -jar ofbiz.jar -install jazerb sent the following on 1/24/2009 3:55 PM: I get the following exception when running: java -jar ofbiz.jar -install

Re: Error while running install and startup

2009-01-24 Thread jazerb
I am doing a clean first. I tried ant run-install-seed and it is giving me the same error. It is throwing the error when it can't find the ModelEntity Requirement. The NullPointerException is coming from ModelViewEntity.populateFields. Thanks. BJ Freeman wrote: -BEGIN PGP SIGNED

Re: Error while running install and startup

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 what version of the svn do you have? you may have a incomplete download since Entity referred to in member-entity WRF not found, ignoring: WorkRequirementFulfillment says that the module that has the WRF is not loaded. jazerb sent the following on

Re: field level security in oFBiz

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 here is how ofbiz handles this: servers have a secure field called notes. These notes can be viewed only by person belonging to the group managing the server. delegator name=default entity-model-reader=main

Re: field level security in oFBiz

2009-01-24 Thread Milind Parikh
I think that my example (of servers and notes) may not have been the clearest. Let me try once more (in context of orders and notes iso servers and notes). In the REST API, if I do http://127.0.0.1:8080/rest-for-ofbiz/customer/1/orders, I get rfo:orders

Re: field level security in oFBiz

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 why not follow my example of how ofbiz does this, I think you will get your answer. Milind Parikh sent the following on 1/24/2009 6:49 PM: I think that my example (of servers and notes) may not have been the clearest. Let me try once more (in

Re: field level security in oFBiz

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 first Not sure what the URL is, if it is representing an ofbiz url, is does not support REST OOTB. if this is something that ofbiz is suppose to read and parse then a service would be called, that then goes to

Re: field level security in oFBiz

2009-01-24 Thread Milind Parikh
I am aware that REST is not supported OOTB into ofBiz. This is an effort to get REST into ofBiz (primarily because I need REST to work with Android - the gPhone). The URL would not login (against REST to maintain states). Fortunately the dispatcher code has thought through this exact possibility

Re: field level security in oFBiz

2009-01-24 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 we have some examples of interfacing with other system in the specialpurpose. so my suggestion is you use ofbiz in it native mode and create a interface to Android-gphone using rest. in this senario, you would field a Rest request

Ship Order problem

2009-01-24 Thread murp3433
I get this error after i pack item and click complete. The Following Errors Occurred: Problems with the transaction. (The current transaction is marked for rollback, not beginning a new transaction and aborting current operation; the rollbackOnly was caused by: Service Error

Re: Remove(Mask) Control Servlet URI

2009-01-24 Thread Vince M. Clark
Can /control be removed/changed in this section of a web.xml file? servlet servlet-nameControlServlet/servlet-name display-nameControlServlet/display-name descriptionMain Control Servlet/description servlet-classorg.ofbiz.webapp.control.ControlServlet/servlet-class

Re: Content Service

2009-01-24 Thread Vince M. Clark
I posed the question yesterday about integrating with Lenya. I've done more research since then and realized that apparently Lenya does not yet implement any standards such as JCR, which was really the point of my question. So I want to raise a larger issue. It is my opinion that certain