Re: depreciate fields

2009-03-10 Thread David E Jones
Aside from it being easier to find the data when they are in these entity fields (which are always there, don't require a join/view or additional find, etc), not all of the data is available in the *Role entity. The fields on the CommunicationEvent entity have 3 bits of information for

Re: depreciate fields

2009-03-10 Thread Hans Bakker
see below... On Tue, 2009-03-10 at 01:15 -0600, David E Jones wrote: > Aside from it being easier to find the data when they are in these > entity fields (which are always there, don't require a join/view or > additional find, etc), not all of the data is available in the *Role > entity. >

Re: depreciate fields

2009-03-10 Thread David E Jones
On Mar 10, 2009, at 1:42 AM, Hans Bakker wrote: see below... On Tue, 2009-03-10 at 01:15 -0600, David E Jones wrote: Aside from it being easier to find the data when they are in these entity fields (which are always there, don't require a join/view or additional find, etc), not all of the dat

Product Overview?

2009-03-10 Thread Sam Hamilton
We are currently building up a few OFBiz websites and I was wondering if I had missed a feature or if we will need to build it. We use 10 different catalogs for each of the 10 different sites we run but in a few exceptions we are not able to sell a product into a market place due to local laws.

Re: Product Overview?

2009-03-10 Thread David E Jones
On Mar 10, 2009, at 2:24 AM, Sam Hamilton wrote: We are currently building up a few OFBiz websites and I was wondering if I had missed a feature or if we will need to build it. We use 10 different catalogs for each of the 10 different sites we run but in a few exceptions we are not able to

Re: depreciate fields

2009-03-10 Thread Hans Bakker
Hi David, thanks for the time to provide an extensive answer. The problem i have with these fields is actually mostly showing when the communication event is used as an email but also in the other commEvent types. What you describe below is theoretically completely true, however the reality is d

Re: depreciate fields

2009-03-10 Thread David E Jones
On Mar 10, 2009, at 2:53 AM, Hans Bakker wrote: Hi David, thanks for the time to provide an extensive answer. The problem i have with these fields is actually mostly showing when the communication event is used as an email but also in the other commEvent types. What you describe below is

Re: depreciate fields

2009-03-10 Thread Daniel Martínez
see below David E Jones escribió: On Mar 10, 2009, at 1:42 AM, Hans Bakker wrote: see below... On Tue, 2009-03-10 at 01:15 -0600, David E Jones wrote: Aside from it being easier to find the data when they are in these entity fields (which are always there, don't require a join/view or addit

problem in contactsubmit

2009-03-10 Thread ajitsingh
Hello all, Whats will happen when contactsubmit request goes in ecommerce and in which entity regarding information is get stored ?

Re: problem in contactsubmit

2009-03-10 Thread Ajit Singh
Hello all, I am not able to trace out the process at the time of submission of the form with message & subject on contactus page of ecommerce application. I can not see what gets happened while I submit the form. Please help me to solve my problem.

keepAlive

2009-03-10 Thread Sanders, Brian
I'm trying to implement the keepAlive workaround per http://docs.ofbiz.org/pages/viewpage.action?pageId=1021 When I try to run the service, it says: Column 'GEO_TYPE_ID' cannot be null Not sure what I'm doing wrong or how I could go abou

RE: keepAlive

2009-03-10 Thread Sanders, Brian
I think I found some leads. The log file indicates that some of the elements are wrong (ie. Error message: cvc-complex-type.3.2.2: Attribute 'value-field' is not allowed to appear in element 'make-value'.) However, that's not what the XSD says. -Original Message- From: Sanders, Brian [mail

Lookup values

2009-03-10 Thread Jacek Wagner
All, There are a lot of examples of lookup values implementation in ofbiz. Yet all of the implementation are using two forms called from...LookupScreens... e.g. lookupProductAndPrice --> widget-form listLookupProductAndPrice --> widget-form Can anybody help me to find an example where listLo

RE: keepAlive

2009-03-10 Thread Sanders, Brian
I'm not sure what trunk revision of OFBiz I'm on, but it seems that OFBiz and the XSD file (http://www.ofbiz.org/dtds/simple-methods.xsd) are in disagreement as to what attributes should go with certain elements. For example, OFBiz is looking for the value-name attribute in , while the XSD says tha

Re: keepAlive

2009-03-10 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 try a ant clean and ant run-install depending on when you upgraded you may have to do a ant clean-all and purge your db if not the built in one. then ant run-install Sanders, Brian sent the following on 3/10/2009 11:12 AM: > I'm not sure what trunk r

Demo error. https://demo.hotwaxmedia.com/partymgr/control/main

2009-03-10 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Expression catalogQuickaddUse is undefined on line 99, column 16 in component://multiflex/includes/header.ftl. The problematic instruction: - -- ==> if catalogQuickaddUse [on line 99, column 11 in component://multiflex/includes/header.ftl] ---

RE: keepAlive

2009-03-10 Thread Sanders, Brian
I checked the XSD in /framework/minilang/dtd/simple-methods.xsd against http://www.ofbiz.org/dtds/simple-methods.xsd and they are most certainly different versions. Maybe there is a reason it's not done, but may I suggest adding some sort of version identifier to the end of the XSD file? Spring doe

restful web services

2009-03-10 Thread Vince M. Clark
This blog is arguing that Axis2 doesn't do true RESTful web services. I'm interested in thoughts and comments from the community. http://atmanes.blogspot.com/2007/06/how-not-to-do-restful-web-services.html

Re: keepAlive

2009-03-10 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 if your using subverion you can get a version and history of all the changes to any file. Sanders, Brian sent the following on 3/10/2009 12:03 PM: > I checked the XSD in /framework/minilang/dtd/simple-methods.xsd against > http://www.ofbiz.org/dtds/si

Re: keepAlive

2009-03-10 Thread David E Jones
At runtime OFBiz always uses local XSD files for validation, and you should do the same in your XML editor. The one on ofbiz.apache.org (if it says www.ofbiz.org it's a very old revision, at least 2-3 years old) is updated regularly to keep up with the trunk. So yeah, the solution is to

Re: restful web services

2009-03-10 Thread David E Jones
Yes, the term "REST" and it's cousin "REST-ful" are some of my least favorite these days. They were watered down and misinterpreted from day 1. The concept of them has been around for years, but people started applying it to everything that isn't SOAP, which is just silly. The thing to ke

Re: restful web services

2009-03-10 Thread Vince M. Clark
Very helpful, thank you. As you may have noticed from recent threads we have been working with Axis. To date we have only used SOAP. Our client just informed us that they want to standardize on REST, which seems easy enough to do with Axis. As we started down this path we came across the blog

compiling source

2009-03-10 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 looks like a change in the build on 3/5/08 I last downloaded on the 7th I can build fine in eclipse but get some new messages. when I try to build from ant I get a couple of messages I have not got before. ant clean-all ant run-install I got this mes

Re: problem in contactsubmit

2009-03-10 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 it ends up as a communications event. depends if you use release 4.0 or the Trunk how that is displayed. in 4.0 it is in the partymgr->communications in Trunk it will depend on what version. the latest uses myportal, though you can see the communicatio

ClientAbortException (broken pipe) serving error pages

2009-03-10 Thread Hansen Wang
Hi, I frequently receive the following exception. It indicates that the connection is reset when sending the error page to the client. This kind of exception is normal OK to ignore. But before I change the log level for the corresponding package to get rid of the noise, I want to make sure that th

Re: quickShipEntireOrder problems

2009-03-10 Thread Hansen Wang
Thanks for the help. I will play around the code and check the difference. I will reply with my findings to update this thread. On Mon, Mar 9, 2009 at 3:10 PM, Jacques Le Roux < jacques.le.r...@les7arts.com> wrote: > From: "Hansen Wang" > >> 1. Yes. The transaction is rolled back. >> 1'. Yes. Th

Re: restful web services

2009-03-10 Thread David E Jones
OAGIS message are just XML files, and can be sent over whatever transport protocol. The code in OFBiz sends them via HTTPS, which is the most common form of synchronous transfer. They are written to get asynchronous responses though, so doing it via a message broker would work well too.

A question about the categories list in the catalog application left panel

2009-03-10 Thread Larry.Liu
Hi, We have found that the category hierarchy tree in the catalog application left panel is a little bit confusing, cause it displayed categories from all levels into a flat structure, as shown below Shoes Woman Shoes Man Shoes Man Sports Shoes Basketball shoes Basketball Shoes

Re: A question about the categories list in the catalog application left panel

2009-03-10 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 using rollup you should be able to create you own tree and depth. https://demo.hotwaxmedia.com/catalog/control/EditCategoryRollup?showProductCategoryId=200 Larry.Liu sent the following on 3/10/2009 7:43 PM: > Hi, > > We have found that the category h

Error Message trying to Close an unused Time Period

2009-03-10 Thread Sharan-F
Hi I've been doing some testing on the latest Hotwax Demo in Accounting and have just come across this error message: The Following Errors Occurred: Error calling event: org.ofbiz.webapp.event.EventHandlerException: Found URL parameter [customTimePeriodId] passed to secure (https) request-map wi

Wrong Assumption?

2009-03-10 Thread Muhammad Aamir
I am new to ofbiz ERP and trying to understand how it works. I've just read Party and Accounting chapters from Data Model Resource Book Vol 1. After a quick glance on the modules (Party and Accounting) of ofbiz, following is my first impression I would like to share with you and request you to corr

Re: Wrong Assumption?

2009-03-10 Thread David E Jones
It sounds like you're starting to scratch the surface. Best wishes on a more thorough and deep review. -David On Mar 10, 2009, at 10:22 PM, Muhammad Aamir wrote: I am new to ofbiz ERP and trying to understand how it works. I've just read Party and Accounting chapters from Data Model Reso

Re: A question about the categories list in the catalog application left panel

2009-03-10 Thread Larry.Liu
Yeah, the whole tree were created by setting of rollup, but if a categories is on the forth level, then it will be displayed in the first level, second level, third level and forth level of the tree, so I think maybe better only display it in the forth level. Regards, Liu Xiangqian Wizitsoft Info