From jeff at atlassian.com Fri Aug 1 00:04:07 2003 From: jeff at atlassian.com (Jeff Turner) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Re: Re: Using Tyrex/JOTM with a JNDI datasource? In-Reply-To: <032f01c357e4$93e3dd90$8901010a@AJZT30> References: <20030801011921.GA9392@localhost.localdomain> <3F29C338.9070902@ofbiz.org> <20030801022742.GB9392@localhost.localdomain> <032f01c357e4$93e3dd90$8901010a@AJZT30> Message-ID: <20030801070311.GA31758@localhost.localdomain> On Fri, Aug 01, 2003 at 12:22:50AM -0400, Andy Zeneski wrote: > What if you don't put it in WEB-INF/lib? Then it works. > I think the one in common/lib should be available to the webapps. There > is no reason to have to have two.. Works for Tomcat, but it makes the webapp non-portable, as most containers don't include commons-logging. > This is the main reason why I hate Tomcat and always recommend something > else, like Jetty. :) Well the real problem is commons-logging trying to do clever reactive stuff with classloaders. Over the last week I've come to deeply identify with http://www.qos.ch/logging/thinkAgain.html I think I've found a solution of sorts: - Hack JOTM, replacing commons-logging with log4j - When declaring the datasource in Tomcat, use commons-dbcp instead of JOTM: factory org.apache.commons.dbcp.BasicDataSourceFactory (but still use JOTM for the javax.transaction.UserTransaction) Pretty ugly, but I think it will do for now. Thanks, --Jeff > -Andy > From ofbiz_a_dev at yahoo.com Fri Aug 1 05:40:07 2003 From: ofbiz_a_dev at yahoo.com (Philip Lee) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]changes in workflow since ofbiz 2.2.1 In-Reply-To: <3F292EB2.8020101@ofbiz.org> Message-ID: <20030801123919.49717.qmail@web20509.mail.yahoo.com> You are right I mean 2.1.1, I hope we all see 2.2.1 soon and that would be great! a. Also in new version of orderProcessXPDL.xml I observed the participant Order Clerk is changed from Type Human to Role removing Extended attribute roleTypeId=ORDER_CLERK and changed the name of this participant to ORDER_CLERK.(with this in place is it possible that If we wish we can still restrict that the Manual Activity (Approve Sales Order #${orderId}) assignment/completion could be only done by specific clerk say PHILEE may be we can define a new Extended Attribute:partyId=PHILEE for this performer is this possible?) How can find which are the Extended attributes workflow engine is expecting or it can read at different level of workflow like participant, post condition and so on...? b. All the manual activities are done by performer type = Role c. All automatic activities are done by admin d. The workflow Start and End are within same performer here ORDER_CLERK (is it required to be like this) e.Why there is a Cancel Workflow activity which connect Start and End and nothing else and with Extended Attribute canStart=N (interesting is it it?) Sorry I asked too many questions. Thanks Philee "David E. Jones" wrote: Philip, You mean 2.1.1, right? i: The ${} syntax is used to expand a string using values from the workflow context ii: Those are old mistake modules that we can't get rid of very easily since we don't have shell access on the CVS servers at SourceForge; just ignore them, you can check out all active modules using the "all" alias (ie cvs -d:... co all). Later, -David Philip Lee wrote: > I found and curious about the changes in sample workflow > orderProcessXPDL.xml > i) Why we have activity Approve Sales Order #${orderId} and Approve > Purchase Order #${orderId} with orderid in it what is the significance > of #${orderId} in the activity name? > ii) Also I found two main module under ofbiz root wfengine and workmgr > but not found web pages using those what is the purpose of those module? > > Pl reply > -phlee > > ------------------------------------------------------------------------ > Do you Yahoo!? > Yahoo! SiteBuilder > - Free, > easy-to-use web site design software ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030801/6ab439cb/attachment.htm From jaz at ofbiz.org Fri Aug 1 05:42:12 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Re: Re: Using Tyrex/JOTM with a JNDI datasource? References: <20030801011921.GA9392@localhost.localdomain> <3F29C338.9070902@ofbiz.org> <20030801022742.GB9392@localhost.localdomain> <032f01c357e4$93e3dd90$8901010a@AJZT30> <20030801070311.GA31758@localhost.localdomain> Message-ID: <034b01c3582a$4233fd40$8901010a@AJZT30> Have you tested transactions when doing it this way? I would expect the connection would not be enlisted since DBCP does not support XA resources. Another option is to embed JOTM inside of Tomcat and let the EE get both the Datasource AND the TM from JNDI. There are examples of doing this on the ObjectWeb site. (jotm.objectweb.org) -Andy ----- Original Message ----- From: "Jeff Turner" To: Sent: Friday, August 01, 2003 3:03 AM Subject: [OFBiz-Users]Re: Re: Using Tyrex/JOTM with a JNDI datasource? > On Fri, Aug 01, 2003 at 12:22:50AM -0400, Andy Zeneski wrote: > > What if you don't put it in WEB-INF/lib? > > Then it works. > > > I think the one in common/lib should be available to the webapps. There > > is no reason to have to have two.. > > Works for Tomcat, but it makes the webapp non-portable, as most containers > don't include commons-logging. > > > This is the main reason why I hate Tomcat and always recommend something > > else, like Jetty. > > :) Well the real problem is commons-logging trying to do clever reactive > stuff with classloaders. Over the last week I've come to deeply identify > with http://www.qos.ch/logging/thinkAgain.html > > I think I've found a solution of sorts: > > - Hack JOTM, replacing commons-logging with log4j > > - When declaring the datasource in Tomcat, use commons-dbcp instead of JOTM: > > > > > factory > org.apache.commons.dbcp.BasicDataSourceFactory > > > > (but still use JOTM for the javax.transaction.UserTransaction) > > Pretty ugly, but I think it will do for now. > > Thanks, > > > --Jeff > > > -Andy > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From jaz at ofbiz.org Fri Aug 1 06:13:12 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]changes in workflow since ofbiz 2.2.1 References: <20030801123919.49717.qmail@web20509.mail.yahoo.com> Message-ID: <036c01c3582e$990f9120$8901010a@AJZT30> Philip, You are right I mean 2.1.1, I hope we all see 2.2.1 soon and that would be great! I hope so too, if not we may not see anymore of the 2.x series.. which wouldn't be a bad thing... a. Also in new version of orderProcessXPDL.xml I observed the participant Order Clerk is changed from Type Human to Role removing Extended attribute roleTypeId=ORDER_CLERK and changed the name of this participant to ORDER_CLERK.(with this in place is it possible that If we wish we can still restrict that the Manual Activity (Approve Sales Order #${orderId}) assignment/completion could be only done by specific clerk say PHILEE may be we can define a new Extended Attribute:partyId=PHILEE for this performer is this possible?) Was it HUMAN before? Didn't that seem odd? It was defined as a HUMAN but a roleTypeId was set. Now it is defined as a ROLE as it should. No roleTypeId? That is okay because if non is supplied it will use the participantId as either the partyId for HUMAN and roleTypeId for ROLE. Of course it can still be a specific clerk, that is when you would use HUMAN. How can find which are the Extended attributes workflow engine is expecting or it can read at different level of workflow like participant, post condition and so on...? Sorry, I really do not understand the question. b. All the manual activities are done by performer type = Role Yes, but only due to the design of this specific workflow (orderProcessXPDL) c. All automatic activities are done by admin Yes, but only due to the design of this specific workflow (orderProcessXPDL) d. The workflow Start and End are within same performer here ORDER_CLERK (is it required to be like this) Is it? I didn't notice. Not required, just happened to be. e.Why there is a Cancel Workflow activity which connect Start and End and nothing else and with Extended Attribute canStart=N (interesting is it it?) Very interesting... connects start and end, I assume you are looking at this in JAwE. Start = Any activity which has NO transitions TO it. End = Any activity which has NO transitions FROM it. This activity is left over from before the last update and now this activity is not being used. Since there are no transitions to or from it, it connects start to end. Since canStart is false, it can not start the workflow so it will never be called. :) It could actually be removed, but it is still there in case something needs to be changed back. Sorry I asked too many questions. Actually these were pretty good questions. They pointed out new features of the WF engine, so I think many will benefit. -Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030801/dbf08962/attachment.htm From mluise at computercenter.it Fri Aug 1 07:46:10 2003 From: mluise at computercenter.it (Luise Massimo) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Hi all Message-ID: I'm Max from Italy and i'm new to ofbiz....i would like to know if there is an ofbiz version translated in italian or otherwise how could i have a translated version ? i hope someone can help me....bye and thanks. Max From chl326 at 163.com Fri Aug 1 08:55:05 2003 From: chl326 at 163.com (´Ôº£Áú) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]=?gb2312?B?aGksYSBxdWVzdG9uIGFib3V0IG9mYml6IHJ1biBhdCB3ZWJzcGhlcmU=?= Message-ID: <3F2A8D2A.000082.29541@bj231.163.com> i try to make ofbiz deploy to websphere , who help me,thanks ,my emali is chl326@163.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030801/fffa881c/attachment.htm From mark at markgordon.org Fri Aug 1 09:41:25 2003 From: mark at markgordon.org (Mark Gordon) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Catalogs and Categories & merchant accounts Message-ID: I have been messing around with ofbiz for a couple of weeks and it is starting to sink in.... but, Is there a document that explains the different category types and what effect they have on the ecommerce app? I have been experimenting but I am still having some trouble getting the app to do what I want :-) Merchant Account: Does anyone have any advice on a low volume merchant account that works with ofbiz? I looked into CyberSource and it looks a bit expense for a low volume site. Thanks, Mark From jonesde at ofbiz.org Fri Aug 1 13:53:10 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Catalogs and Categories & merchant accounts Message-ID: <200308012046.h71KkDQ32721@jaz.jportfolio.com> Mark, On question 1, what are you trying to do? On question 2, you could use PayPal or WorldPay,though PayPal seems better in many ways. Both are supported in ofbiz. Later, -David -----Original Message----- >From: "Mark Gordon" >Sent: 08/01/2003 10:40:53 AM >To: "ofbiz-users@lists.sourceforge.net" >Subject: [OFBiz-Users]Catalogs and Categories & merchant accounts > > >I have been messing around with ofbiz for a couple of weeks and it is >starting to sink in.... but, > >Is there a document that explains the different category types and what >effect they have on the ecommerce app? I have been experimenting but I am >still having some trouble getting the app to do what I want :-) > >Merchant Account: > >Does anyone have any advice on a low volume merchant account that works with >ofbiz? I looked into CyberSource and it looks a bit expense for a low >volume site. > >Thanks, >Mark > > > > > > > > >------------------------------------------------------- >This SF.Net email sponsored by: Free pre-built ASP.NET sites including >Data Reports, E-commerce, Portals, and Forums are available now. >Download today and enter to win an XBOX or Visual Studio .NET. >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >_______________________________________________ >OFBiz-Users mailing list >OFBiz-Users@lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From krthekeyan at verchaska.com Fri Aug 1 22:02:03 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]ecommerce deployment help Message-ID: <006301c358b3$357fe3f0$0300a8c0@vtech> Hi all, I am facing the deployment problem. my console gives me this message and I was unable to proceed. This is the Message that I got in console Aug 1, 2003 12:17:27 PM org.apache.commons.modeler.Registry loadRegistry INFO: Loading registry information Aug 1, 2003 12:17:27 PM org.apache.commons.modeler.Registry getRegistry INFO: Creating new Registry instance Aug 1, 2003 12:17:28 PM org.apache.commons.modeler.Registry getServer INFO: Creating MBeanServer Aug 1, 2003 12:17:30 PM org.apache.coyote.http11.Http11Protocol init INFO: Initializing Coyote HTTP/1.1 on port 8080 Starting service Tomcat-Standalone Apache Tomcat/4.1.24-LE-jdk14 log4j:ERROR Attempted to append to closed appender named [stdout]. 0 [ ControlServlet.java:62 :INFO ] [ControlServlet.init] Loading Control Servlet mounted on path D:\krthekeyan\SERVERS\jakarta-tomcat-4.1.24-LE-jdk14\web apps\ofbiz\ecommerce\webapp\ log4j:ERROR Attempted to append to closed appender named [stdout]. 181 [ ControlServlet.java:348:INFO ] [ControlServlet.init] Getting Entity E ngine Delegator with delegator name default log4j:ERROR Attempted to append to closed appender named [stdout]. 281 [ GenericDelegator.java:107:INFO ] Creating new Delegator with name "defa ult". Aug 1, 2003 12:17:42 PM org.apache.coyote.http11.Http11Protocol start INFO: Starting Coyote HTTP/1.1 on port 8080 Aug 1, 2003 12:17:42 PM org.apache.jk.common.ChannelSocket init INFO: JK2: ajp13 listening on /0.0.0.0:8009 Aug 1, 2003 12:17:42 PM org.apache.jk.server.JkMain start INFO: Jk running ID=0 time=30/101 config=D:\krthekeyan\SERVERS\jakarta-tomcat-4 .1.24-LE-jdk14\conf\jk2.properties log4j:ERROR Attempted to append to closed appender named [stdout]. 54738[ ControlServlet.java:62 :INFO ] [ControlServlet.init] Loading Control Servlet mounted on path D:\krthekeyan\SERVERS\jakarta-tomcat-4.1.24-LE-jdk14\web apps\ofbiz\ecommerce\webapp\ log4j:ERROR Attempted to append to closed appender named [stdout]. 54738[ ControlServlet.java:348:INFO ] [ControlServlet.init] Getting Entity E ngine Delegator with delegator name default log4j:ERROR Attempted to append to closed appender named [stdout]. 54748[ GenericDelegator.java:107:INFO ] Creating new Delegator with name "defa ult". log4j:ERROR Attempted to append to closed appender named [stdout]. 93623[ ControlServlet.java:62 :INFO ] [ControlServlet.init] Loading Control Servlet mounted on path D:\krthekeyan\SERVERS\jakarta-tomcat-4.1.24-LE-jdk14\web apps\ofbiz\ecommerce\webapp\ log4j:ERROR Attempted to append to closed appender named [stdout]. 93623[ ControlServlet.java:348:INFO ] [ControlServlet.init] Getting Entity E ngine Delegator with delegator name default log4j:ERROR Attempted to append to closed appender named [stdout]. 93623[ GenericDelegator.java:107:INFO ] Creating new Delegator with name "defa ult". log4j:ERROR Attempted to append to closed appender named [stdout]. 106401[ ControlServlet.java:62 :INFO ] [ControlServlet.init] Loading Control Servlet mounted on path D:\krthekeyan\SERVERS\jakarta-tomcat-4.1.24-LE-jdk14\we bapps\ofbiz\ecommerce\webapp\ log4j:ERROR Attempted to append to closed appender named [stdout]. 106411[ ControlServlet.java:348:INFO ] [ControlServlet.init] Getting Entity Engine Delegator with delegator name default log4j:ERROR Attempted to append to closed appender named [stdout]. 106411[ GenericDelegator.java:107:INFO ] Creating new Delegator with name "def ault". log4j:ERROR Attempted to append to closed appender named [stdout]. 119340[ ControlServlet.java:62 :INFO ] [ControlServlet.init] Loading Control Servlet mounted on path D:\krthekeyan\SERVERS\jakarta-tomcat-4.1.24-LE-jdk14\we bapps\ofbiz\ecommerce\webapp\ log4j:ERROR Attempted to append to closed appender named [stdout]. 119340[ ControlServlet.java:348:INFO ] [ControlServlet.init] Getting Entity Engine Delegator with delegator name default log4j:ERROR Attempted to append to closed appender named [stdout]. 119360[ GenericDelegator.java:107:INFO ] Creating new Delegator with name "def ault". log4j:ERROR Attempted to append to closed appender named [stdout]. 162681[ ControlServlet.java:62 :INFO ] [ControlServlet.init] Loading Control Servlet mounted on path D:\krthekeyan\SERVERS\jakarta-tomcat-4.1.24-LE-jdk14\we bapps\ofbiz\ecommerce\webapp\ log4j:ERROR Attempted to append to closed appender named [stdout]. 162681[ ControlServlet.java:348:INFO ] [ControlServlet.init] Getting Entity Engine Delegator with delegator name default log4j:ERROR Attempted to append to closed appender named [stdout]. 162691[ GenericDelegator.java:107:INFO ] Creating new Delegator with name "def ault". and the following is the message that I got in the screen HTTP Status 500 - type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception javax.servlet.ServletException: Servlet.init() for servlet ControlServlet threw exception at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:96 3) at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:668) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja va:210) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja va:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180 ) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve. java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172 ) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java :174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConne ction(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav a:619) at java.lang.Thread.run(Thread.java:536) root cause java.lang.NoClassDefFoundError at org.ofbiz.core.entity.model.ModelReader.getModelReader(ModelReader.java:66) at org.ofbiz.core.entity.GenericDelegator.(GenericDelegator.java:111) at org.ofbiz.core.entity.GenericDelegator.getGenericDelegator(GenericDelegator. java:89) at org.ofbiz.core.control.ControlServlet.getDelegator(ControlServlet.java:350) at org.ofbiz.core.control.ControlServlet.init(ControlServlet.java:73) at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:93 5) at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:668) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja va:210) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja va:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180 ) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve. java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172 ) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java :174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok eNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConne ction(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav a:619) at java.lang.Thread.run(Thread.java:536) Apache Tomcat/4.1.24-LE-jdk14 what could be the problem. and one more thing is that I have not set the database yet is the problem because of that. if ot what could be the problem please.. thanks, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030801/d44b8992/attachment.htm From davidg at communication.concepts.cc Fri Aug 1 22:05:02 2003 From: davidg at communication.concepts.cc (David Garrett) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Keyword Search scope Message-ID: <00d001c358b3$4c1f8430$831e150a@Davidg> Is my understanding correct that the keyword search (of the entire catalog) will only search the catalog defined as the "Default Search" ProductCatalogCategory and *NOT* the products contained in child categories of this category. The reason for the question is that I have all the products associated with subcategories which are children of the Default Search category ... I had anticipated the keyword search would have found these. I understand that I can also associate the "Other Search" type which will allow me to search each of these categories individually. Does this mean that ALL products that I want available for a default keyword seach must be in the "Default Seach" Category? David G From jaz at ofbiz.org Fri Aug 1 22:19:02 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]ecommerce deployment help References: <006301c358b3$357fe3f0$0300a8c0@vtech> Message-ID: <03ea01c358b5$781d8030$8901010a@AJZT30> ----- at java.lang.Thread.run(Thread.java:536) root cause java.lang.NoClassDefFoundError at org.ofbiz.core.entity.model.ModelReader.getModelReader(ModelReader.java:66) at org.ofbiz.core.entity.GenericDelegator.(GenericDelegator.java:111) at Looks like classpath related problems. Make sure you have all the libs setup properly. Jetty is much easier to configure and just as stable (if not more) then Tomcat. If Tomcat becomes too much trouble (I know it is a pain) then give Jetty a try. -Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030801/b5311eb5/attachment.htm From jonesde at ofbiz.org Fri Aug 1 22:28:02 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Keyword Search scope In-Reply-To: <00d001c358b3$4c1f8430$831e150a@Davidg> References: <00d001c358b3$4c1f8430$831e150a@Davidg> Message-ID: <3F2B4B8B.10606@ofbiz.org> David, Yes, that is correct. We decided the performance impact of walking the category tree for searching was too big, so this restriction is as you say. You will notice on the Category Products page that there are some tools to make management of this easier. For instance, you can remove all products in a category, and you can add all products in a category to another category, including walking the tree of all sub-categories... Later, -David Jones David Garrett wrote: > Is my understanding correct that the keyword search (of the entire catalog) > will only search the catalog defined as the "Default Search" > ProductCatalogCategory and *NOT* the products contained in child categories > of this category. > > The reason for the question is that I have all the products associated with > subcategories which are children of the Default Search category ... I had > anticipated the keyword search would have found these. > > I understand that I can also associate the "Other Search" type which will > allow me to search each of these categories individually. > > Does this mean that ALL products that I want available for a default keyword > seach must be in the "Default Seach" Category? > > David G > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users From krthekeyan at verchaska.com Sun Aug 3 23:29:04 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]com package in ofbiz Message-ID: <001601c35a51$7e108ad0$0300a8c0@vtech> Hi all, which jar file in ofbiz package contains com.verisign package. I could not find it is giving me a compilation error. which jar file contain com.cybersource package it is giving compilation error . ASAP please bye, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030803/4e6b55aa/attachment.htm From jaz at ofbiz.org Mon Aug 4 02:41:01 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]com package in ofbiz References: <001601c35a51$7e108ad0$0300a8c0@vtech> Message-ID: <000801c35a6c$650155e0$8901010a@AJZT30> OFBiz does not provide the libs required to compile the thirdparty package. If you are interested in using Payflow Pro you will need to go through Verisign to acquire the libs. CyberSource, ClearCommerce and Taxware are the same. This is due to license restrictions on the APIs that just are not Open Source friendly. -Andy ----- Original Message ----- From: krthekeyan To: ofbiz-users@lists.sourceforge.net Sent: Monday, August 04, 2003 2:27 AM Subject: [OFBiz-Users]com package in ofbiz Hi all, which jar file in ofbiz package contains com.verisign package. I could not find it is giving me a compilation error. which jar file contain com.cybersource package it is giving compilation error . ASAP please bye, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030804/980d0fd1/attachment.htm From syee at dyadem.com Mon Aug 4 06:57:07 2003 From: syee at dyadem.com (Sean Yee) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]minilang: operator="contains" Message-ID: <5DEC3FFCDE2F7C4DA45433EE09A4F22C6E2F2D@COLOSSUS.dyadem.corp> hi, i was trying to use the "contains" operator in the minilang tag, and found that either i am not using it properly or it doesn't work... here is my aptempt at using this operator: this is supposed to get records that have a dataCategoryId like FORM_I_RA so....FORM_I_RA1, FORM_I_RA2, FORM_I_RA3, etc...etc..unfortunately i am unable to attain the desired effect..is my syntax incorrect?? do i have to have some wild card of some sort?? sean -----Original Message----- From: Andy Zeneski [mailto:jaz@ofbiz.org] Sent: Monday, August 04, 2003 5:40 AM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]com package in ofbiz OFBiz does not provide the libs required to compile the thirdparty package. If you are interested in using Payflow Pro you will need to go through Verisign to acquire the libs. CyberSource, ClearCommerce and Taxware are the same. This is due to license restrictions on the APIs that just are not Open Source friendly. -Andy ----- Original Message ----- From: krthekeyan To: ofbiz-users@lists.sourceforge.net Sent: Monday, August 04, 2003 2:27 AM Subject: [OFBiz-Users]com package in ofbiz Hi all, which jar file in ofbiz package contains com.verisign package. I could not find it is giving me a compilation error. which jar file contain com.cybersource package it is giving compilation error . ASAP please bye, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030804/cece53a9/attachment.htm From mark at markgordon.org Mon Aug 4 07:57:02 2003 From: mark at markgordon.org (Mark Gordon) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Wells Fargo SecureSource Message-ID: After doing a bit of research it seems that Wells Fargo SecureSource is a channel partner with CyberSource. And it also seems that Ofbiz would work out of the box with SecureSource as they are using CyberSource. Is anyone out there using Wells Fargo SecureSource with Ofbiz? Thanks in advance. -Mark From mark at markgordon.org Mon Aug 4 08:01:11 2003 From: mark at markgordon.org (Mark Gordon) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Catalogs and Categories & merchant accounts In-Reply-To: <200308012046.h71KkDQ32721@jaz.jportfolio.com> Message-ID: David, 1. I was not trying to do anything special. I was just having trouble with the product features (virtual and variant was confusing me a bit). I spent some time with it this weekend and I think I have it nailed down.... at least for the time being.... 2. I am looking into a merchant account with wells fargo. They are a channel partner with cybersource. I think it will work... Thanks, Mark -----Original Message----- From: ofbiz-users-admin@lists.sourceforge.net [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of David E. Jones Sent: Friday, August 01, 2003 1:52 PM To: ofbiz-users@lists.sourceforge.net Subject: RE: [OFBiz-Users]Catalogs and Categories & merchant accounts Mark, On question 1, what are you trying to do? On question 2, you could use PayPal or WorldPay,though PayPal seems better in many ways. Both are supported in ofbiz. Later, -David -----Original Message----- >From: "Mark Gordon" >Sent: 08/01/2003 10:40:53 AM >To: "ofbiz-users@lists.sourceforge.net" >Subject: [OFBiz-Users]Catalogs and Categories & merchant accounts > > >I have been messing around with ofbiz for a couple of weeks and it is >starting to sink in.... but, > >Is there a document that explains the different category types and what >effect they have on the ecommerce app? I have been experimenting but I am >still having some trouble getting the app to do what I want :-) > >Merchant Account: > >Does anyone have any advice on a low volume merchant account that works with >ofbiz? I looked into CyberSource and it looks a bit expense for a low >volume site. > >Thanks, >Mark > > > > > > > > >------------------------------------------------------- >This SF.Net email sponsored by: Free pre-built ASP.NET sites including >Data Reports, E-commerce, Portals, and Forums are available now. >Download today and enter to win an XBOX or Visual Studio .NET. >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >_______________________________________________ >OFBiz-Users mailing list >OFBiz-Users@lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/ofbiz-users > ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From rmydam at NDGroup.com Mon Aug 4 08:14:04 2003 From: rmydam at NDGroup.com (Mydam, Rads) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]No party found with the partyId of: null Message-ID: <39E8D60991B11B40B0E5629017D73BA12D97ED@nd-mx1.newburycorp.com> Hi , 1. I downloaded ofbiz code from CVS, and trying to create new person. It is creating a new user, but it gives "No party found with the partyId of: null" error. Thanks, Rads Mydam From jaz at ofbiz.org Mon Aug 4 08:37:07 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]minilang: operator="contains" References: <5DEC3FFCDE2F7C4DA45433EE09A4F22C6E2F2D@COLOSSUS.dyadem.corp> Message-ID: <007601c35a9e$36c6d9c0$8901010a@AJZT30> I didn't write this, but I would assume that the operator would check a Collection to see if it contains FORM_I_RA, rather then acting as a LIKE. What you are looking for is a startsWith and endsWith operator, which probably would be nice to add if it isn't already there. I am sure David will add to this. -Andy ----- Original Message ----- From: Sean Yee To: ofbiz-users@lists.sourceforge.net Sent: Monday, August 04, 2003 9:55 AM Subject: [OFBiz-Users]minilang: operator="contains" hi, i was trying to use the "contains" operator in the minilang tag, and found that either i am not using it properly or it doesn't work... here is my aptempt at using this operator: this is supposed to get records that have a dataCategoryId like FORM_I_RA so....FORM_I_RA1, FORM_I_RA2, FORM_I_RA3, etc...etc..unfortunately i am unable to attain the desired effect..is my syntax incorrect?? do i have to have some wild card of some sort?? sean -----Original Message----- From: Andy Zeneski [mailto:jaz@ofbiz.org] Sent: Monday, August 04, 2003 5:40 AM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]com package in ofbiz OFBiz does not provide the libs required to compile the thirdparty package. If you are interested in using Payflow Pro you will need to go through Verisign to acquire the libs. CyberSource, ClearCommerce and Taxware are the same. This is due to license restrictions on the APIs that just are not Open Source friendly. -Andy ----- Original Message ----- From: krthekeyan To: ofbiz-users@lists.sourceforge.net Sent: Monday, August 04, 2003 2:27 AM Subject: [OFBiz-Users]com package in ofbiz Hi all, which jar file in ofbiz package contains com.verisign package. I could not find it is giving me a compilation error. which jar file contain com.cybersource package it is giving compilation error . ASAP please bye, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030804/7b40b399/attachment.htm From jaz at ofbiz.org Mon Aug 4 08:39:01 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Catalogs and Categories & merchant accounts References: Message-ID: <007b01c35a9e$612393c0$8901010a@AJZT30> I'm the principle developer on the Cybersource integration. So, if you run into any problems with it drop a line to the ofbiz-devel mailing list and we'll see what we can do to get it working. -Andy ----- Original Message ----- From: "Mark Gordon" To: Sent: Monday, August 04, 2003 11:00 AM Subject: RE: [OFBiz-Users]Catalogs and Categories & merchant accounts > > David, > > 1. I was not trying to do anything special. I was just having trouble > with the product features (virtual and variant was confusing me a bit). I > spent some time with it this weekend and I think I have it nailed down.... > at least for the time being.... > > 2. I am looking into a merchant account with wells fargo. They are a > channel partner with cybersource. I think it will work... > > Thanks, > Mark > > > -----Original Message----- > From: ofbiz-users-admin@lists.sourceforge.net > [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of David E. > Jones > Sent: Friday, August 01, 2003 1:52 PM > To: ofbiz-users@lists.sourceforge.net > Subject: RE: [OFBiz-Users]Catalogs and Categories & merchant accounts > > > Mark, > > On question 1, what are you trying to do? > > On question 2, you could use PayPal or WorldPay,though PayPal seems better > in many ways. Both are supported in ofbiz. > > Later, > -David > > -----Original Message----- > >From: "Mark Gordon" > >Sent: 08/01/2003 10:40:53 AM > >To: > "ofbiz-users@lists.sourceforge.net" > >Subject: [OFBiz-Users]Catalogs and Categories & merchant accounts > > > > > >I have been messing around with ofbiz for a couple of weeks and it is > >starting to sink in.... but, > > > >Is there a document that explains the different category types and what > >effect they have on the ecommerce app? I have been experimenting but I > am > >still having some trouble getting the app to do what I want :-) > > > >Merchant Account: > > > >Does anyone have any advice on a low volume merchant account that works > with > >ofbiz? I looked into CyberSource and it looks a bit expense for a low > >volume site. > > > >Thanks, > >Mark > > > > > > > > > > > > > > > > > >------------------------------------------------------- > >This SF.Net email sponsored by: Free pre-built ASP.NET sites including > >Data Reports, E-commerce, Portals, and Forums are available now. > >Download today and enter to win an XBOX or Visual Studio .NET. > > >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > >_______________________________________________ > >OFBiz-Users mailing list > >OFBiz-Users@lists.sourceforge.net > >https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From jaz at ofbiz.org Mon Aug 4 08:39:04 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]No party found with the partyId of: null References: <39E8D60991B11B40B0E5629017D73BA12D97ED@nd-mx1.newburycorp.com> Message-ID: <008001c35a9e$7412af20$8901010a@AJZT30> Is this the CVS version or the 2.1.1 release? -Andy ----- Original Message ----- From: "Mydam, Rads" To: Sent: Monday, August 04, 2003 11:13 AM Subject: [OFBiz-Users]No party found with the partyId of: null > Hi , > > 1. I downloaded ofbiz code from CVS, and trying to create new person. > It is creating a new user, but it gives "No party found with the partyId of: null" error. > Thanks, > Rads Mydam > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From jaz at ofbiz.org Mon Aug 4 08:40:07 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Wells Fargo SecureSource References: Message-ID: <008701c35a9e$a35783a0$8901010a@AJZT30> I haven't heard, but as I mentioned in the last email. If you run into any problems post to the ofbiz-devel mailing list and I'll see what I can do to get it worked out. Wells Fargo would be a good name to advertise with. :) -Andy ----- Original Message ----- From: "Mark Gordon" To: Sent: Monday, August 04, 2003 10:56 AM Subject: [OFBiz-Users]Wells Fargo SecureSource > > > After doing a bit of research it seems that Wells Fargo SecureSource is a > channel partner with CyberSource. And it also seems that Ofbiz would work > out of the box with SecureSource as they are using CyberSource. > > Is anyone out there using Wells Fargo SecureSource with Ofbiz? > > Thanks in advance. > > -Mark > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From rmydam at NDGroup.com Mon Aug 4 08:44:04 2003 From: rmydam at NDGroup.com (Mydam, Rads) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]No party found with the partyId of: null Message-ID: <39E8D60991B11B40B0E5629017D73BA12D97EE@nd-mx1.newburycorp.com> It's CVS Version -----Original Message----- From: Andy Zeneski [mailto:jaz@ofbiz.org] Sent: Monday, August 04, 2003 11:38 AM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]No party found with the partyId of: null Is this the CVS version or the 2.1.1 release? -Andy ----- Original Message ----- From: "Mydam, Rads" To: Sent: Monday, August 04, 2003 11:13 AM Subject: [OFBiz-Users]No party found with the partyId of: null > Hi , > > 1. I downloaded ofbiz code from CVS, and trying to create new person. > It is creating a new user, but it gives "No party found with the partyId of: null" error. > Thanks, > Rads Mydam > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From rmydam at NDGroup.com Mon Aug 4 08:49:05 2003 From: rmydam at NDGroup.com (Mydam, Rads) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]No party found with the partyId of: null Message-ID: <39E8D60991B11B40B0E5629017D73BA12D97EF@nd-mx1.newburycorp.com> Hi Andy, 2.1.1 release works fine. But the problem is with the cvs version. Thanks, Rads -----Original Message----- From: Andy Zeneski [mailto:jaz@ofbiz.org] Sent: Monday, August 04, 2003 11:38 AM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]No party found with the partyId of: null Is this the CVS version or the 2.1.1 release? -Andy ----- Original Message ----- From: "Mydam, Rads" To: Sent: Monday, August 04, 2003 11:13 AM Subject: [OFBiz-Users]No party found with the partyId of: null > Hi , > > 1. I downloaded ofbiz code from CVS, and trying to create new person. > It is creating a new user, but it gives "No party found with the partyId of: null" error. > Thanks, > Rads Mydam > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From jaz at ofbiz.org Mon Aug 4 09:05:03 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]No party found with the partyId of: null References: <39E8D60991B11B40B0E5629017D73BA12D97EF@nd-mx1.newburycorp.com> Message-ID: <00a001c35aa2$0de59f60$8901010a@AJZT30> Yep, thanks! The fixes are in cvs, if you need patches (since cvs is delayed) they are in the commits list, if you aren't subscribed I can forward it to you, just let me know. -Andy ----- Original Message ----- From: "Mydam, Rads" To: Sent: Monday, August 04, 2003 11:48 AM Subject: RE: [OFBiz-Users]No party found with the partyId of: null > Hi Andy, > > 2.1.1 release works fine. But the problem is with the cvs version. > > Thanks, > Rads > > -----Original Message----- > From: Andy Zeneski [mailto:jaz@ofbiz.org] > Sent: Monday, August 04, 2003 11:38 AM > To: ofbiz-users@lists.sourceforge.net > Subject: Re: [OFBiz-Users]No party found with the partyId of: null > > > Is this the CVS version or the 2.1.1 release? > > -Andy > > ----- Original Message ----- > From: "Mydam, Rads" > To: > Sent: Monday, August 04, 2003 11:13 AM > Subject: [OFBiz-Users]No party found with the partyId of: null > > > > Hi , > > > > 1. I downloaded ofbiz code from CVS, and trying to create new person. > > It is creating a new user, but it gives "No party found with the > partyId of: null" error. > > Thanks, > > Rads Mydam > > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From alfred.lopez at gmx.net Mon Aug 4 10:11:04 2003 From: alfred.lopez at gmx.net (Alfred Lopez) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Calling subworkflows In-Reply-To: <00ff01c356d4$ccedae10$8901010a@AJZT30> Message-ID: <994F5C2E-C69E-11D7-AD72-000393641AC6@gmx.net> I seemed to have resolved the problem by changing the transitions for the MAIN activities from NOROUTING to SIMPLEROUTING. If anyone sees a mistake in what I did, please let me know as I am not an expert in XPDL. Thanks. On Wednesday, July 30, 2003, at 03:57 PM, Andy Zeneski wrote: > Sounds like a bug to me.. Do you have a test case (simple WF) I can > use to > debug this? > > -Andy > > ----- Original Message ----- > From: "Alfred Lopez" > To: > Sent: Wednesday, July 30, 2003 3:22 PM > Subject: [OFBiz-Users]Calling subworkflows > > >> I have an XPDL with 6 processes. The first process (MAIN) has five >> activities. Each activity calls the five other processes as >> sub-workflows. The first sub-workflow runs and completes fine, but the >> second sub-workflow does not get invoked even though the first >> activity >> of MAIN starts and ends automatically. >> >> >> I use JaWE to create my workflows and it wants a "start" and an "end" >> node for each process. I suspect that the "end" node of the first >> sub-workflow is causing the whole workflow to stop. Any ideas? Thanks. >> >> >> >> Alfred Lopez >> alfred.lopez@gmx.net >> AIM: AlfredDGR8 >> YahooMsgr: nobodyshouldhavethisloginname >> >> >> >> ------------------------------------------------------- >> This SF.Net email sponsored by: Free pre-built ASP.NET sites including >> Data Reports, E-commerce, Portals, and Forums are available now. >> Download today and enter to win an XBOX or Visual Studio .NET. >> > http://aspnet.click-url.com/go/psa00100003ave/ > direct;at.aspnet_072303_01/01 >> _______________________________________________ >> OFBiz-Users mailing list >> OFBiz-Users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/ > direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > Alfred Lopez alfred.lopez@gmx.net (954) 435-1478 (home) (954) 629-6896 (cell) AIM: AlfredDGR8 YahooMsgr: nobodyshouldhavethisloginname From schen at graciousstyle.com Mon Aug 4 16:05:03 2003 From: schen at graciousstyle.com (Si Chen) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]possible bug and fix in SQLProcessor.java Message-ID: <1b0401c35adc$b41b0340$78703c04@flopsy> I just checked out the latest CVS code and ran it with MySQL and got many "java.sql.SQLException: Can't call commit when autocommit=true" and "SQLException occurred on commit." This didn't happen with the 2.1 OfBiz release. I looked through the CVS and it seems that on line 252 of ofbiz/core/src/entity/org/ofbiz/core/entity/jdbc/SQLProcessor.java: if (!_connection.getAutoCommit()) is wrong. Shouldn't it be if (_connection.getAutoCommit()) because we only want to try to set auto-commit to false if it is already true? I made the change (got rid of the "!"), and it runs fine now. Si Chen schen@graciousstyle.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030804/960945d7/attachment.htm From jeff at atlassian.com Mon Aug 4 16:25:01 2003 From: jeff at atlassian.com (Jeff Turner) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Re: Re: Re: Using Tyrex/JOTM with a JNDI datasource? In-Reply-To: <034b01c3582a$4233fd40$8901010a@AJZT30> References: <20030801011921.GA9392@localhost.localdomain> <3F29C338.9070902@ofbiz.org> <20030801022742.GB9392@localhost.localdomain> <032f01c357e4$93e3dd90$8901010a@AJZT30> <20030801070311.GA31758@localhost.localdomain> <034b01c3582a$4233fd40$8901010a@AJZT30> Message-ID: <20030804232405.GC18987@localhost.localdomain> Wohoo! Updating from commons-logging 1.0.2 to 1.0.3 fixes the problem with my original JNDI-only setup. One can then have a commons-logging in both common/lib/ and WEB-INF/lib/. I discovered this after upgrading to Tomcat 2.1.27 which comes with 1.0.3. I'll submit a doc patch to JOTM. Thanks for your help, --Jeff On Fri, Aug 01, 2003 at 08:41:41AM -0400, Andy Zeneski wrote: > Have you tested transactions when doing it this way? I would expect the > connection would not be enlisted since DBCP does not support XA resources. > > Another option is to embed JOTM inside of Tomcat and let the EE get both the > Datasource AND the TM from JNDI. > > There are examples of doing this on the ObjectWeb site. (jotm.objectweb.org) > > -Andy > > ----- Original Message ----- > From: "Jeff Turner" > To: > Sent: Friday, August 01, 2003 3:03 AM > Subject: [OFBiz-Users]Re: Re: Using Tyrex/JOTM with a JNDI datasource? > > > > On Fri, Aug 01, 2003 at 12:22:50AM -0400, Andy Zeneski wrote: > > > What if you don't put it in WEB-INF/lib? > > > > Then it works. > > > > > I think the one in common/lib should be available to the webapps. There > > > is no reason to have to have two.. > > > > Works for Tomcat, but it makes the webapp non-portable, as most containers > > don't include commons-logging. > > > > > This is the main reason why I hate Tomcat and always recommend something > > > else, like Jetty. > > > > :) Well the real problem is commons-logging trying to do clever reactive > > stuff with classloaders. Over the last week I've come to deeply identify > > with http://www.qos.ch/logging/thinkAgain.html > > > > I think I've found a solution of sorts: > > > > - Hack JOTM, replacing commons-logging with log4j > > > > - When declaring the datasource in Tomcat, use commons-dbcp instead of > JOTM: > > > > type="javax.sql.DataSource"/> > > > > > > factory > > org.apache.commons.dbcp.BasicDataSourceFactory > > > > > > > > (but still use JOTM for the javax.transaction.UserTransaction) > > > > Pretty ugly, but I think it will do for now. > > > > Thanks, > > > > > > --Jeff > > > > > -Andy > > > From jaz at ofbiz.org Mon Aug 4 17:39:06 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Re: Re: Re: Using Tyrex/JOTM with a JNDI datasource? References: <20030801011921.GA9392@localhost.localdomain> <3F29C338.9070902@ofbiz.org> <20030801022742.GB9392@localhost.localdomain> <032f01c357e4$93e3dd90$8901010a@AJZT30> <20030801070311.GA31758@localhost.localdomain> <034b01c3582a$4233fd40$8901010a@AJZT30> <20030804232405.GC18987@localhost.localdomain> Message-ID: <00ee01c35ae9$df076730$8901010a@AJZT30> Good to hear! I'll update OFBiz as well. -Andy ----- Original Message ----- From: "Jeff Turner" To: Sent: Monday, August 04, 2003 7:24 PM Subject: [OFBiz-Users]Re: Re: Re: Using Tyrex/JOTM with a JNDI datasource? > Wohoo! Updating from commons-logging 1.0.2 to 1.0.3 fixes the problem > with my original JNDI-only setup. One can then have a commons-logging in > both common/lib/ and WEB-INF/lib/. I discovered this after upgrading to > Tomcat 2.1.27 which comes with 1.0.3. I'll submit a doc patch to JOTM. > > Thanks for your help, > > --Jeff > > On Fri, Aug 01, 2003 at 08:41:41AM -0400, Andy Zeneski wrote: > > Have you tested transactions when doing it this way? I would expect the > > connection would not be enlisted since DBCP does not support XA resources. > > > > Another option is to embed JOTM inside of Tomcat and let the EE get both the > > Datasource AND the TM from JNDI. > > > > There are examples of doing this on the ObjectWeb site. (jotm.objectweb.org) > > > > -Andy > > > > ----- Original Message ----- > > From: "Jeff Turner" > > To: > > Sent: Friday, August 01, 2003 3:03 AM > > Subject: [OFBiz-Users]Re: Re: Using Tyrex/JOTM with a JNDI datasource? > > > > > > > On Fri, Aug 01, 2003 at 12:22:50AM -0400, Andy Zeneski wrote: > > > > What if you don't put it in WEB-INF/lib? > > > > > > Then it works. > > > > > > > I think the one in common/lib should be available to the webapps. There > > > > is no reason to have to have two.. > > > > > > Works for Tomcat, but it makes the webapp non-portable, as most containers > > > don't include commons-logging. > > > > > > > This is the main reason why I hate Tomcat and always recommend something > > > > else, like Jetty. > > > > > > :) Well the real problem is commons-logging trying to do clever reactive > > > stuff with classloaders. Over the last week I've come to deeply identify > > > with http://www.qos.ch/logging/thinkAgain.html > > > > > > I think I've found a solution of sorts: > > > > > > - Hack JOTM, replacing commons-logging with log4j > > > > > > - When declaring the datasource in Tomcat, use commons-dbcp instead of > > JOTM: > > > > > > > type="javax.sql.DataSource"/> > > > > > > > > > factory > > > org.apache.commons.dbcp.BasicDataSourceFactory > > > > > > > > > > > > (but still use JOTM for the javax.transaction.UserTransaction) > > > > > > Pretty ugly, but I think it will do for now. > > > > > > Thanks, > > > > > > > > > --Jeff > > > > > > > -Andy > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From jaz at ofbiz.org Mon Aug 4 17:52:07 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]possible bug and fix in SQLProcessor.java References: <1b0401c35adc$b41b0340$78703c04@flopsy> Message-ID: <00f501c35aeb$b5208e90$8901010a@AJZT30> You are correct. I wonder how this ever worked.. :) Thanks for pointing it out, the fix is in CVS. -Andy ----- Original Message ----- From: Si Chen To: ofbiz-users@lists.sourceforge.net Sent: Monday, August 04, 2003 7:04 PM Subject: [OFBiz-Users]possible bug and fix in SQLProcessor.java I just checked out the latest CVS code and ran it with MySQL and got many "java.sql.SQLException: Can't call commit when autocommit=true" and "SQLException occurred on commit." This didn't happen with the 2.1 OfBiz release. I looked through the CVS and it seems that on line 252 of ofbiz/core/src/entity/org/ofbiz/core/entity/jdbc/SQLProcessor.java: if (!_connection.getAutoCommit()) is wrong. Shouldn't it be if (_connection.getAutoCommit()) because we only want to try to set auto-commit to false if it is already true? I made the change (got rid of the "!"), and it runs fine now. Si Chen schen@graciousstyle.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030804/aae23a20/attachment.htm From jeff at atlassian.com Mon Aug 4 18:16:05 2003 From: jeff at atlassian.com (Jeff Turner) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]Re: Re: Re: Re: Using Tyrex/JOTM with a JNDI datasource? In-Reply-To: <00ee01c35ae9$df076730$8901010a@AJZT30> References: <20030801011921.GA9392@localhost.localdomain> <3F29C338.9070902@ofbiz.org> <20030801022742.GB9392@localhost.localdomain> <032f01c357e4$93e3dd90$8901010a@AJZT30> <20030801070311.GA31758@localhost.localdomain> <034b01c3582a$4233fd40$8901010a@AJZT30> <20030804232405.GC18987@localhost.localdomain> <00ee01c35ae9$df076730$8901010a@AJZT30> Message-ID: <20030805011538.GD18987@localhost.localdomain> Argh.. spoke too soon. It now works with JDK 1.4, but is still broken under 1.3. Time for another frenzied-ripping-out-commons-logging session.. --Jeff On Mon, Aug 04, 2003 at 08:38:20PM -0400, Andy Zeneski wrote: > Good to hear! I'll update OFBiz as well. > > -Andy > > ----- Original Message ----- > From: "Jeff Turner" > To: > Sent: Monday, August 04, 2003 7:24 PM > Subject: [OFBiz-Users]Re: Re: Re: Using Tyrex/JOTM with a JNDI datasource? > > > > Wohoo! Updating from commons-logging 1.0.2 to 1.0.3 fixes the problem > > with my original JNDI-only setup. One can then have a commons-logging in > > both common/lib/ and WEB-INF/lib/. I discovered this after upgrading to > > Tomcat 2.1.27 which comes with 1.0.3. I'll submit a doc patch to JOTM. > > > > Thanks for your help, > > > > --Jeff > > > > On Fri, Aug 01, 2003 at 08:41:41AM -0400, Andy Zeneski wrote: > > > Have you tested transactions when doing it this way? I would expect the > > > connection would not be enlisted since DBCP does not support XA > resources. > > > > > > Another option is to embed JOTM inside of Tomcat and let the EE get both > the > > > Datasource AND the TM from JNDI. > > > > > > There are examples of doing this on the ObjectWeb site. > (jotm.objectweb.org) > > > > > > -Andy > > > > > > ----- Original Message ----- > > > From: "Jeff Turner" > > > To: > > > Sent: Friday, August 01, 2003 3:03 AM > > > Subject: [OFBiz-Users]Re: Re: Using Tyrex/JOTM with a JNDI datasource? > > > > > > > > > > On Fri, Aug 01, 2003 at 12:22:50AM -0400, Andy Zeneski wrote: > > > > > What if you don't put it in WEB-INF/lib? > > > > > > > > Then it works. > > > > > > > > > I think the one in common/lib should be available to the webapps. > There > > > > > is no reason to have to have two.. > > > > > > > > Works for Tomcat, but it makes the webapp non-portable, as most > containers > > > > don't include commons-logging. > > > > > > > > > This is the main reason why I hate Tomcat and always recommend > something > > > > > else, like Jetty. > > > > > > > > :) Well the real problem is commons-logging trying to do clever > reactive > > > > stuff with classloaders. Over the last week I've come to deeply > identify > > > > with http://www.qos.ch/logging/thinkAgain.html > > > > > > > > I think I've found a solution of sorts: > > > > > > > > - Hack JOTM, replacing commons-logging with log4j > > > > > > > > - When declaring the datasource in Tomcat, use commons-dbcp instead > of > > > JOTM: > > > > > > > > > > type="javax.sql.DataSource"/> > > > > > > > > > > > > factory > > > > org.apache.commons.dbcp.BasicDataSourceFactory > > > > > > > > > > > > > > > > (but still use JOTM for the javax.transaction.UserTransaction) > > > > > > > > Pretty ugly, but I think it will do for now. > > > > > > > > Thanks, > > > > > > > > > > > > --Jeff > > > > > > > > > -Andy > > > > > From chris at publicbar.com Mon Aug 4 18:24:02 2003 From: chris at publicbar.com (chris@publicbar.com) Date: Mon Aug 23 13:51:23 2004 Subject: [OFBiz-Users]possible bug and fix in SQLProcessor.java References: <1b0401c35adc$b41b0340$78703c04@flopsy> <00f501c35aeb$b5208e90$8901010a@AJZT30> Message-ID: <009d01c35af0$079545e0$1e0ba8c0@geckodev.breastscreen.org.au> I just tried getting an update but its not there yet, is there a delay in SF ? ----- Original Message ----- From: "Andy Zeneski" To: Sent: Tuesday, August 05, 2003 10:51 AM Subject: Re: [OFBiz-Users]possible bug and fix in SQLProcessor.java You are correct. I wonder how this ever worked.. :) Thanks for pointing it out, the fix is in CVS. -Andy ----- Original Message ----- From: Si Chen To: ofbiz-users@lists.sourceforge.net Sent: Monday, August 04, 2003 7:04 PM Subject: [OFBiz-Users]possible bug and fix in SQLProcessor.java I just checked out the latest CVS code and ran it with MySQL and got many "java.sql.SQLException: Can't call commit when autocommit=true" and "SQLException occurred on commit." This didn't happen with the 2.1 OfBiz release. I looked through the CVS and it seems that on line 252 of ofbiz/core/src/entity/org/ofbiz/core/entity/jdbc/SQLProcessor.java: if (!_connection.getAutoCommit()) is wrong. Shouldn't it be if (_connection.getAutoCommit()) because we only want to try to set auto-commit to false if it is already true? I made the change (got rid of the "!"), and it runs fine now. Si Chen schen@graciousstyle.com IMPORTANT: This email transmission is intended for the exclusive use of the person, organisation, or corporation to which it is addressed, and may contain information that is privileged or confidential. If the reader of this email transmission is not the intended recipient, or an employee or agent responsible for delivering this email transmission to the intended recipient, you are hereby notified that any disclosure, distribution (forwarding) or copying of this email transmission is prohibited and that the contents must be kept strictly confidential. If you have received this email transmission in error, kindly notify us immediately by return email or telephone and delete email immediately. Thank you. From jaz at ofbiz.org Mon Aug 4 19:25:03 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]possible bug and fix in SQLProcessor.java References: <1b0401c35adc$b41b0340$78703c04@flopsy> <00f501c35aeb$b5208e90$8901010a@AJZT30> <009d01c35af0$079545e0$1e0ba8c0@geckodev.breastscreen.org.au> Message-ID: <00fe01c35af8$b2e9c580$8901010a@AJZT30> Yes, has been for a while and is posted on the SF site status. -Andy ----- Original Message ----- From: To: Sent: Monday, August 04, 2003 9:22 PM Subject: Re: [OFBiz-Users]possible bug and fix in SQLProcessor.java > I just tried getting an update but its not there yet, is there a delay in SF > ? > > ----- Original Message ----- > From: "Andy Zeneski" > To: > Sent: Tuesday, August 05, 2003 10:51 AM > Subject: Re: [OFBiz-Users]possible bug and fix in SQLProcessor.java > > > You are correct. I wonder how this ever worked.. :) Thanks for pointing it > out, the fix is in CVS. > > -Andy > > ----- Original Message ----- > From: Si Chen > To: ofbiz-users@lists.sourceforge.net > Sent: Monday, August 04, 2003 7:04 PM > Subject: [OFBiz-Users]possible bug and fix in SQLProcessor.java > > > I just checked out the latest CVS code and ran it with MySQL and got many > "java.sql.SQLException: Can't call commit when autocommit=true" and > "SQLException occurred on commit." This didn't happen with the 2.1 OfBiz > release. I looked through the CVS and it seems that on line 252 of > ofbiz/core/src/entity/org/ofbiz/core/entity/jdbc/SQLProcessor.java: > > if (!_connection.getAutoCommit()) > > is wrong. Shouldn't it be > > if (_connection.getAutoCommit()) > > because we only want to try to set auto-commit to false if it is already > true? I made the change (got rid of the "!"), and it runs fine now. > > Si Chen > schen@graciousstyle.com > > IMPORTANT: > > This email transmission is intended for the exclusive use of > the person, organisation, or corporation to which it is addressed, > and may contain information that is privileged or confidential. > If the reader of this email transmission is not the intended > recipient, or an employee or agent responsible for delivering this > email transmission to the intended recipient, you are hereby notified > that any disclosure, distribution (forwarding) or copying of this > email transmission is prohibited and that the contents must be kept > strictly confidential. > > If you have received this email transmission in error, kindly notify us > immediately by return email or telephone and delete email immediately. > > Thank you. > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From rmydam at NDGroup.com Tue Aug 5 13:35:03 2003 From: rmydam at NDGroup.com (Mydam, Rads) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]No party found with the partyId of: null Message-ID: <39E8D60991B11B40B0E5629017D73BA12D97F5@nd-mx1.newburycorp.com> Thanks, I downloaded the code from cvs, but still I am getting the same problem. Can u please forward the fixes. Thanks, Rads -----Original Message----- From: Andy Zeneski [mailto:jaz@ofbiz.org] Sent: Monday, August 04, 2003 12:04 PM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]No party found with the partyId of: null Yep, thanks! The fixes are in cvs, if you need patches (since cvs is delayed) they are in the commits list, if you aren't subscribed I can forward it to you, just let me know. -Andy ----- Original Message ----- From: "Mydam, Rads" To: Sent: Monday, August 04, 2003 11:48 AM Subject: RE: [OFBiz-Users]No party found with the partyId of: null > Hi Andy, > > 2.1.1 release works fine. But the problem is with the cvs version. > > Thanks, > Rads > > -----Original Message----- > From: Andy Zeneski [mailto:jaz@ofbiz.org] > Sent: Monday, August 04, 2003 11:38 AM > To: ofbiz-users@lists.sourceforge.net > Subject: Re: [OFBiz-Users]No party found with the partyId of: null > > > Is this the CVS version or the 2.1.1 release? > > -Andy > > ----- Original Message ----- > From: "Mydam, Rads" > To: > Sent: Monday, August 04, 2003 11:13 AM > Subject: [OFBiz-Users]No party found with the partyId of: null > > > > Hi , > > > > 1. I downloaded ofbiz code from CVS, and trying to create new person. > > It is creating a new user, but it gives "No party found with the > partyId of: null" error. > > Thanks, > > Rads Mydam > > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From krthekeyan at verchaska.com Wed Aug 6 00:20:46 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]writing a simple component using ofbiz framework Message-ID: <001d01c35be7$02ab4e60$0300a8c0@vtech> Hi all, we are in the learning stage of ofbiz framework. got deployed with the sample application provided by ofbiz in tomcat.I would like to need a help from the ofbiz users for writing a simple component which interacts with database. basically i would like to have a simple sample application explained with the entries that has to be affected over various xml files. ASAP. thanks in advance, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030806/85eb2a68/attachment.htm From gdavies at willowbrook.co.uk Wed Aug 6 09:08:02 2003 From: gdavies at willowbrook.co.uk (Gareth Davies) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Ofbiz installation problem! Message-ID: <005a01c35c27$38bdf940$0202a8c0@willowbrook.local> Hi all, just joined the list. I'm currently trying out various ERP/CRM solutions and stumbled across Ofbiz. I've installed it as per: You can get up and running quickly by downloading the OFBiz Complete distribution and following some simple instructions. For more options and explanations, see the rest of this document. 1.. Download and install the Java 2 v1.3 or later JDK (not the JRE) from Sun's Java site, and make sure your JAVA_HOME environment variable is set 2.. Download the OFBiz Apps archive and unzip it in the directory of your choice. This should create one sub-directory: ofbiz. This will be the OFBIZ_HOME location. 3.. Start OFBiz with embedded Jetty by going into the ofbiz directory and then running "%JAVA_HOME%\bin\java -jar ofbiz.jar" for Windows, or "$JAVA_HOME/bin/java -jar ofbiz.jar" for Linux/Unix. 4.. Open a browser and go to http://127.0.0.1:8080/ecommerce for the ecommerce application or http://127.0.0.1:8080/webtools for the WebTools application or http://127.0.0.1:8080/catalog for the Catalog Manager application. On a GNU/Linux Debian 3.0 machine. It's running and listening on port 8080, I can connect to it as specified above, but I'm prompted with a .htaccess style login Realm: XDB admin/ofbiz, ofbiz/ofbiz, test/test don't work. Have I missed something obvious here? Cheers Gareth Davies ***************************************************************** This email has been checked by the altohiway e-Sweeper Service ***************************************************************** From jaz at ofbiz.org Wed Aug 6 09:17:28 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Ofbiz installation problem! References: <005a01c35c27$38bdf940$0202a8c0@willowbrook.local> Message-ID: <02c601c35c36$29319310$8901010a@AJZT30> How odd.. You must have something else going on here as we have NO realm settings configured in Jetty. /ecommerce should bring you into a store, all other apps should prompt for a login. If you haven't loaded default data (default data is loaded in the 2.1.1 release, but not when checking out from CVS) then there are no accounts. Hit /webtools and follow the instructions on the main page. If this page is prompting for a realm password, something is conflicting with the setup. Make sure something else isn't running on 8080. -Andy ----- Original Message ----- From: "Gareth Davies" To: Sent: Wednesday, August 06, 2003 10:30 AM Subject: [OFBiz-Users]Ofbiz installation problem! > Hi all, just joined the list. > > I'm currently trying out various ERP/CRM solutions and stumbled across > Ofbiz. > > I've installed it as per: > > You can get up and running quickly by downloading the OFBiz Complete > distribution and following some simple instructions. For more options and > explanations, see the rest of this document. > 1.. Download and install the Java 2 v1.3 or later JDK (not the JRE) from > Sun's Java site, and make sure your JAVA_HOME environment variable is set > 2.. Download the OFBiz Apps archive and unzip it in the directory of your > choice. This should create one sub-directory: ofbiz. This will be the > OFBIZ_HOME location. > 3.. Start OFBiz with embedded Jetty by going into the ofbiz directory and > then running "%JAVA_HOME%\bin\java -jar ofbiz.jar" for Windows, or > "$JAVA_HOME/bin/java -jar ofbiz.jar" for Linux/Unix. > 4.. Open a browser and go to http://127.0.0.1:8080/ecommerce for the > ecommerce application or http://127.0.0.1:8080/webtools for the WebTools > application or http://127.0.0.1:8080/catalog for the Catalog Manager > application. > On a GNU/Linux Debian 3.0 machine. > > It's running and listening on port 8080, I can connect to it as specified > above, but I'm prompted with a .htaccess style login Realm: XDB > > admin/ofbiz, ofbiz/ofbiz, test/test don't work. > > Have I missed something obvious here? > > Cheers > > Gareth Davies > > > > > ***************************************************************** > This email has been checked by the altohiway e-Sweeper Service > ***************************************************************** > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From arukala at gmx.de Wed Aug 6 09:18:04 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Newbie Help me To Solve this Error References: <001d01c35be7$02ab4e60$0300a8c0@vtech> Message-ID: <23397.1060186645@www45.gmx.net> Hallo Users and Developers, I am currently new bie to use ofbiz. Recently I updated my ofbiz version from CVS. and I compiled all the files to create Jar files. and Later I started running ofbiz in Jetty server with PostgreSQL Databases. I tried to run the Web tools from Web Browser LocalHost. I Had these Fallowing Exception: And the Same Exceptions for Other Links which are creating New Customer in Party Component etc....... So Please Help Me to Solve this this issue.... Thanx in Advance. Sincerely Arukala -------------------------------------------------------------------------------------------------------------------- org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet error: [javac] Since fork is true, ignoring compiler setting. [javac] Compiling 1 source file [javac] Since fork is true, ignoring compiler setting. [javac] Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) occurred at PC=0xC1D152 [javac] Function=[Unknown.] [javac] Library=(N/A) [javac] NOTE: We are unable to locate the function name symbol for the error [javac] just occurred. Please refer to release documentation for possible [javac] reason and solutions. [javac] Current Java thread: [javac] Dynamic libraries: [javac] 0x00400000 - 0x00408000 C:\Laura\java\jdk1.4\bin\javac.exe [javac] 0x77F40000 - 0x77FF0000 C:\WINDOWS\System32\ntdll.dll [javac] 0x77E40000 - 0x77F37000 C:\WINDOWS\system32\kernel32.dll [javac] 0x77DA0000 - 0x77E3A000 C:\WINDOWS\system32\ADVAPI32.dll [javac] 0x77C90000 - 0x77D05000 C:\WINDOWS\system32\RPCRT4.dll [javac] 0x77BE0000 - 0x77C33000 C:\WINDOWS\system32\MSVCRT.dll [javac] 0x00280000 - 0x002F3000 C:\DOKUME~1\laura\LOKALE~1\Temp\yabB.tmp [javac] 0x77310000 - 0x7739B000 C:\WINDOWS\system32\COMCTL32.DLL [javac] 0x77C40000 - 0x77C80000 C:\WINDOWS\system32\GDI32.dll [javac] 0x77D10000 - 0x77D9D000 C:\WINDOWS\system32\USER32.dll [javac] 0x71A80000 - 0x71A91000 C:\WINDOWS\system32\MPR.DLL [javac] 0x77180000 - 0x7729A000 C:\WINDOWS\system32\OLE32.DLL [javac] 0x770F0000 - 0x7717B000 C:\WINDOWS\system32\OLEAUT32.DLL [javac] 0x71A30000 - 0x71A39000 C:\WINDOWS\System32\WSOCK32.DLL [javac] 0x71A10000 - 0x71A25000 C:\WINDOWS\System32\WS2_32.dll [javac] 0x71A00000 - 0x71A08000 C:\WINDOWS\System32\WS2HELP.dll [javac] **************** [javac] Another exception has been detected while we were handling last error. [javac] 0x08000000 - 0x08136000 C:\Laura\java\jdk1.4\jre\bin\client\jvm.dll [javac] 0x76AF0000 - 0x76B1D000 C:\WINDOWS\System32\WINMM.dll [javac] Dumping information about last error: [javac] ERROR REPORT FILE = (N/A) [javac] PC = 0x00c1d152 [javac] SIGNAL = -1073741678 [javac] 0x10000000 - 0x10007000 C:\Laura\java\jdk1.4\jre\bin\hpi.dll [javac] 0x009B0000 - 0x009BE000 C:\Laura\java\jdk1.4\jre\bin\verify.dll [javac] FUNCTION NAME = (N/A) [javac] OFFSET = 0xFFFFFFFF [javac] LIBRARY NAME = (N/A) [javac] 0x009C0000 - 0x009D8000 C:\Laura\java\jdk1.4\jre\bin\java.dll [javac] 0x009E0000 - 0x009ED000 C:\Laura\java\jdk1.4\jre\bin\zip.dll [javac] Please check ERROR REPORT FILE for further information, if there is any. [javac] Good bye. [javac] 0x76C50000 - 0x76C72000 C:\WINDOWS\system32\imagehlp.dll [javac] 0x6DA00000 - 0x6DA7C000 C:\WINDOWS\system32\DBGHELP.dll [javac] 0x77BD0000 - 0x77BD7000 C:\WINDOWS\system32\VERSION.dll [javac] 0x76BB0000 - 0x76BBB000 C:\WINDOWS\System32\PSAPI.DLL [javac] Heap at VM Abort: [javac] Heap [javac] def new generation total 576K, used 221K [0x10010000, 0x100b0000, 0x104f0000) [javac] eden -------------------------------------------------------------------------------------------------------------------- -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From mark at markgordon.org Wed Aug 6 09:26:06 2003 From: mark at markgordon.org (Mark Gordon) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Ofbiz installation problem! In-Reply-To: <005a01c35c27$38bdf940$0202a8c0@willowbrook.local> Message-ID: Do you have oracle running on this same system.... it deploys a web server on port 8080 that will do exactly what you are saying.... realm:XDB. are you sure that ofbiz did not complain about port 8080 not being available? try running ofbiz on 8081. -mark -----Original Message----- From: ofbiz-users-admin@lists.sourceforge.net [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of Gareth Davies Sent: Wednesday, August 06, 2003 7:30 AM To: ofbiz-users@lists.sourceforge.net Subject: [OFBiz-Users]Ofbiz installation problem! Hi all, just joined the list. I'm currently trying out various ERP/CRM solutions and stumbled across Ofbiz. I've installed it as per: You can get up and running quickly by downloading the OFBiz Complete distribution and following some simple instructions. For more options and explanations, see the rest of this document. 1.. Download and install the Java 2 v1.3 or later JDK (not the JRE) from Sun's Java site, and make sure your JAVA_HOME environment variable is set 2.. Download the OFBiz Apps archive and unzip it in the directory of your choice. This should create one sub-directory: ofbiz. This will be the OFBIZ_HOME location. 3.. Start OFBiz with embedded Jetty by going into the ofbiz directory and then running "%JAVA_HOME%\bin\java -jar ofbiz.jar" for Windows, or "$JAVA_HOME/bin/java -jar ofbiz.jar" for Linux/Unix. 4.. Open a browser and go to http://127.0.0.1:8080/ecommerce for the ecommerce application or http://127.0.0.1:8080/webtools for the WebTools application or http://127.0.0.1:8080/catalog for the Catalog Manager application. On a GNU/Linux Debian 3.0 machine. It's running and listening on port 8080, I can connect to it as specified above, but I'm prompted with a .htaccess style login Realm: XDB admin/ofbiz, ofbiz/ofbiz, test/test don't work. Have I missed something obvious here? Cheers Gareth Davies ***************************************************************** This email has been checked by the altohiway e-Sweeper Service ***************************************************************** ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From jaz at ofbiz.org Wed Aug 6 09:45:17 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Ofbiz installation problem! References: Message-ID: <02cc01c35c3a$06d4e520$8901010a@AJZT30> Quick way to change port.. java -Djetty.port=8081 -jar ofbiz.jar ----- Original Message ----- From: "Mark Gordon" To: Sent: Wednesday, August 06, 2003 12:18 PM Subject: RE: [OFBiz-Users]Ofbiz installation problem! > Do you have oracle running on this same system.... it deploys a web server > on port 8080 > that will do exactly what you are saying.... realm:XDB. > > are you sure that ofbiz did not complain about port 8080 not being > available? > > try running ofbiz on 8081. > > -mark > > -----Original Message----- > From: ofbiz-users-admin@lists.sourceforge.net > [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of Gareth > Davies > Sent: Wednesday, August 06, 2003 7:30 AM > To: ofbiz-users@lists.sourceforge.net > Subject: [OFBiz-Users]Ofbiz installation problem! > > > Hi all, just joined the list. > > I'm currently trying out various ERP/CRM solutions and stumbled across > Ofbiz. > > I've installed it as per: > > You can get up and running quickly by downloading the OFBiz Complete > distribution and following some simple instructions. For more options and > explanations, see the rest of this document. > 1.. Download and install the Java 2 v1.3 or later JDK (not the JRE) from > Sun's Java site, and make sure your JAVA_HOME environment variable is set > 2.. Download the OFBiz Apps archive and unzip it in the directory of your > choice. This should create one sub-directory: ofbiz. This will be the > OFBIZ_HOME location. > 3.. Start OFBiz with embedded Jetty by going into the ofbiz directory and > then running "%JAVA_HOME%\bin\java -jar ofbiz.jar" for Windows, or > "$JAVA_HOME/bin/java -jar ofbiz.jar" for Linux/Unix. > 4.. Open a browser and go to http://127.0.0.1:8080/ecommerce for the > ecommerce application or http://127.0.0.1:8080/webtools for the WebTools > application or http://127.0.0.1:8080/catalog for the Catalog Manager > application. > On a GNU/Linux Debian 3.0 machine. > > It's running and listening on port 8080, I can connect to it as specified > above, but I'm prompted with a .htaccess style login Realm: XDB > > admin/ofbiz, ofbiz/ofbiz, test/test don't work. > > Have I missed something obvious here? > > Cheers > > Gareth Davies > > > > > ***************************************************************** > This email has been checked by the altohiway e-Sweeper Service > ***************************************************************** > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From arukala at gmx.de Wed Aug 6 09:51:14 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Ofbiz installation problem! References: <005a01c35c27$38bdf940$0202a8c0@willowbrook.local> Message-ID: <10604.1060187021@www45.gmx.net> Hallo, Please Load the Data to Database which u r using. that colud be available by running http://localhost:8080/webtools/install.jsp Please try and all the best Sincerey Arukala > Hi all, just joined the list. > > I'm currently trying out various ERP/CRM solutions and stumbled across > Ofbiz. > > I've installed it as per: > > You can get up and running quickly by downloading the OFBiz Complete > distribution and following some simple instructions. For more options and > explanations, see the rest of this document. > 1.. Download and install the Java 2 v1.3 or later JDK (not the JRE) from > Sun's Java site, and make sure your JAVA_HOME environment variable is set > 2.. Download the OFBiz Apps archive and unzip it in the directory of > your > choice. This should create one sub-directory: ofbiz. This will be the > OFBIZ_HOME location. > 3.. Start OFBiz with embedded Jetty by going into the ofbiz directory > and > then running "%JAVA_HOME%\bin\java -jar ofbiz.jar" for Windows, or > "$JAVA_HOME/bin/java -jar ofbiz.jar" for Linux/Unix. > 4.. Open a browser and go to http://127.0.0.1:8080/ecommerce for the > ecommerce application or http://127.0.0.1:8080/webtools for the WebTools > application or http://127.0.0.1:8080/catalog for the Catalog Manager > application. > On a GNU/Linux Debian 3.0 machine. > > It's running and listening on port 8080, I can connect to it as specified > above, but I'm prompted with a .htaccess style login Realm: XDB > > admin/ofbiz, ofbiz/ofbiz, test/test don't work. > > Have I missed something obvious here? > > Cheers > > Gareth Davies > > > > > ***************************************************************** > This email has been checked by the altohiway e-Sweeper Service > ***************************************************************** > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From jonesde at ofbiz.org Wed Aug 6 10:18:04 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Newbie Help me To Solve this Error In-Reply-To: <23397.1060186645@www45.gmx.net> References: <001d01c35be7$02ab4e60$0300a8c0@vtech> <23397.1060186645@www45.gmx.net> Message-ID: <3F313800.4030203@ofbiz.org> I'm not sure what is wrong, but most Java programs (including OFBiz) never touch stuff on that level. Your JVM installation may be messed up or something, hard to say.... Has anyone else seen anything like this? Later, -David arukala@gmx.de wrote: > Hallo Users and Developers, > > I am currently new bie to use ofbiz. Recently I updated my ofbiz version > from CVS. and I compiled all the files to create Jar files. and Later I started > running ofbiz in Jetty server with PostgreSQL Databases. > I tried to run the Web tools from Web Browser LocalHost. > I Had these Fallowing Exception: > And the Same Exceptions for Other Links which are creating New Customer in > Party Component etc....... > So Please Help Me to Solve this this issue.... > Thanx in Advance. > > Sincerely > > Arukala > > > -------------------------------------------------------------------------------------------------------------------- > org.apache.jasper.JasperException: Unable to compile class for JSP > > An error occurred at line: -1 in the jsp file: null > > Generated servlet error: > [javac] Since fork is true, ignoring compiler setting. > [javac] Compiling 1 source file > [javac] Since fork is true, ignoring compiler setting. > > [javac] Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) occurred > at PC=0xC1D152 > [javac] Function=[Unknown.] > [javac] Library=(N/A) > > [javac] NOTE: We are unable to locate the function name symbol for the error > [javac] just occurred. Please refer to release documentation for possible > [javac] reason and solutions. > > > [javac] Current Java thread: > > [javac] Dynamic libraries: > [javac] 0x00400000 - 0x00408000 C:\Laura\java\jdk1.4\bin\javac.exe > [javac] 0x77F40000 - 0x77FF0000 C:\WINDOWS\System32\ntdll.dll > [javac] 0x77E40000 - 0x77F37000 C:\WINDOWS\system32\kernel32.dll > [javac] 0x77DA0000 - 0x77E3A000 C:\WINDOWS\system32\ADVAPI32.dll > [javac] 0x77C90000 - 0x77D05000 C:\WINDOWS\system32\RPCRT4.dll > [javac] 0x77BE0000 - 0x77C33000 C:\WINDOWS\system32\MSVCRT.dll > [javac] 0x00280000 - 0x002F3000 C:\DOKUME~1\laura\LOKALE~1\Temp\yabB.tmp > [javac] 0x77310000 - 0x7739B000 C:\WINDOWS\system32\COMCTL32.DLL > [javac] 0x77C40000 - 0x77C80000 C:\WINDOWS\system32\GDI32.dll > [javac] 0x77D10000 - 0x77D9D000 C:\WINDOWS\system32\USER32.dll > [javac] 0x71A80000 - 0x71A91000 C:\WINDOWS\system32\MPR.DLL > [javac] 0x77180000 - 0x7729A000 C:\WINDOWS\system32\OLE32.DLL > [javac] 0x770F0000 - 0x7717B000 C:\WINDOWS\system32\OLEAUT32.DLL > [javac] 0x71A30000 - 0x71A39000 C:\WINDOWS\System32\WSOCK32.DLL > [javac] 0x71A10000 - 0x71A25000 C:\WINDOWS\System32\WS2_32.dll > [javac] 0x71A00000 - 0x71A08000 C:\WINDOWS\System32\WS2HELP.dll > > > [javac] **************** > [javac] Another exception has been detected while we were handling last > error. > [javac] 0x08000000 - 0x08136000 C:\Laura\java\jdk1.4\jre\bin\client\jvm.dll > [javac] 0x76AF0000 - 0x76B1D000 C:\WINDOWS\System32\WINMM.dll > [javac] Dumping information about last error: > [javac] ERROR REPORT FILE = (N/A) > [javac] PC = 0x00c1d152 > [javac] SIGNAL = -1073741678 > [javac] 0x10000000 - 0x10007000 C:\Laura\java\jdk1.4\jre\bin\hpi.dll > [javac] 0x009B0000 - 0x009BE000 C:\Laura\java\jdk1.4\jre\bin\verify.dll > [javac] FUNCTION NAME = (N/A) > [javac] OFFSET = 0xFFFFFFFF > [javac] LIBRARY NAME = (N/A) > [javac] 0x009C0000 - 0x009D8000 C:\Laura\java\jdk1.4\jre\bin\java.dll > [javac] 0x009E0000 - 0x009ED000 C:\Laura\java\jdk1.4\jre\bin\zip.dll > [javac] Please check ERROR REPORT FILE for further information, if there is > any. > [javac] Good bye. > [javac] 0x76C50000 - 0x76C72000 C:\WINDOWS\system32\imagehlp.dll > [javac] 0x6DA00000 - 0x6DA7C000 C:\WINDOWS\system32\DBGHELP.dll > [javac] 0x77BD0000 - 0x77BD7000 C:\WINDOWS\system32\VERSION.dll > [javac] 0x76BB0000 - 0x76BBB000 C:\WINDOWS\System32\PSAPI.DLL > > [javac] Heap at VM Abort: > [javac] Heap > [javac] def new generation total 576K, used 221K [0x10010000, 0x100b0000, > 0x104f0000) > [javac] > eden > > -------------------------------------------------------------------------------------------------------------------- > From jonesde at ofbiz.org Wed Aug 6 10:23:02 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]writing a simple component using ofbiz framework In-Reply-To: <001d01c35be7$02ab4e60$0300a8c0@vtech> References: <001d01c35be7$02ab4e60$0300a8c0@vtech> Message-ID: <3F31392C.20008@ofbiz.org> We do offer training to cover this sort of material, but short of that all I can do is point you to the documentation, and the outlines and presentations we use for training. Those are all on the www.ofbiz.org web site. See the "Docs & Books" and "Services" pages in particular. You might also find it helpful to look at some of the existing code. For example, the code behind the EditProduct page in the Catalog Manager. Look at the controller.xml file to see what is done for the requests it calls, and then trace it back from there. We do eventually plan to product some training videos (on DVD), but we have had too much contract work recently to get started with that... If you are interested in training please contact me or Andy directly, or send an email to training@zjaa.com. Best of luck. Later, -David Jones krthekeyan wrote: > Hi all, > > we are in the learning stage of ofbiz framework. got deployed with the > sample application provided by ofbiz in tomcat.I would like to need a > help from the ofbiz users for writing a simple component which interacts > with database. > basically i would like to have a simple sample application explained > with the entries that has to be affected over various xml files. ASAP. > > thanks in advance, > krthekeyan.s > From arukala at gmx.de Wed Aug 6 10:47:02 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Newbie Help me To Solve this Error References: <3F313800.4030203@ofbiz.org> Message-ID: <11761.1060191968@www47.gmx.net> Hallo David, This fallowing error is copied from command Prompt Please advise me what to do and Thankx in advance Sincerely Arukala -------------------------------------------------------------------------------------------------------------------- An error occurred at line: -1 in the jsp file: null Generated servlet error: [javac] Since fork is true, ignoring compiler setting. [javac] Compiling 1 source file [javac] Since fork is true, ignoring compiler setting. [javac] Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) occurred at PC=0xC1D152 [javac] Function=[Unknown.] [javac] Library=(N/A) [javac] NOTE: We are unable to locate the function name symbol for the error [javac] just occurred. Please refer to release documentation for possi ble [javac] reason and solutions. [javac] Current Java thread: [javac] Dynamic libraries: [javac] 0x00400000 - 0x00408000 C:\Laura\java\jdk1.4\bin\javac.exe [javac] 0x77F40000 - 0x77FF0000 C:\WINDOWS\System32\ntdll.dll [javac] 0x77E40000 - 0x77F37000 C:\WINDOWS\system32\kernel32.dll [javac] 0x77DA0000 - 0x77E3A000 C:\WINDOWS\system32\ADVAPI32.dll [javac] 0x77C90000 - 0x77D05000 C:\WINDOWS\system32\RPCRT4.dll [javac] 0x77BE0000 - 0x77C33000 C:\WINDOWS\system32\MSVCRT.dll [javac] 0x00280000 - 0x002F3000 C:\DOKUME~1\laura\LOKALE~1\Temp\yabB.tmp [javac] 0x77310000 - 0x7739B000 C:\WINDOWS\system32\COMCTL32.DLL [javac] 0x77C40000 - 0x77C80000 C:\WINDOWS\system32\GDI32.dll [javac] 0x77D10000 - 0x77D9D000 C:\WINDOWS\system32\USER32.dll [javac] 0x71A80000 - 0x71A91000 C:\WINDOWS\system32\MPR.DLL [javac] 0x77180000 - 0x7729A000 C:\WINDOWS\system32\OLE32.DLL [javac] 0x770F0000 - 0x7717B000 C:\WINDOWS\system32\OLEAUT32.DLL [javac] 0x71A30000 - 0x71A39000 C:\WINDOWS\System32\WSOCK32.DLL [javac] 0x71A10000 - 0x71A25000 C:\WINDOWS\System32\WS2_32.dll [javac] 0x71A00000 - 0x71A08000 C:\WINDOWS\System32\WS2HELP.dll [javac] **************** [javac] Another exception has been detected while we were handling last erro r. [javac] 0x08000000 - 0x08136000 C:\Laura\java\jdk1.4\jre\bin\client\jvm. dll [javac] 0x76AF0000 - 0x76B1D000 C:\WINDOWS\System32\WINMM.dll [javac] Dumping information about last error: [javac] ERROR REPORT FILE = (N/A) [javac] PC = 0x00c1d152 [javac] SIGNAL = -1073741678 [javac] 0x10000000 - 0x10007000 C:\Laura\java\jdk1.4\jre\bin\hpi.dll [javac] 0x009B0000 - 0x009BE000 C:\Laura\java\jdk1.4\jre\bin\verify.dll [javac] FUNCTION NAME = (N/A) [javac] OFFSET = 0xFFFFFFFF [javac] LIBRARY NAME = (N/A) [javac] 0x009C0000 - 0x009D8000 C:\Laura\java\jdk1.4\jre\bin\java.dll [javac] 0x009E0000 - 0x009ED000 C:\Laura\java\jdk1.4\jre\bin\zip.dll [javac] Please check ERROR REPORT FILE for further information, if there is any. [javac] Good bye. [javac] 0x76C50000 - 0x76C72000 C:\WINDOWS\system32\imagehlp.dll [javac] 0x6DA00000 - 0x6DA7C000 C:\WINDOWS\system32\DBGHELP.dll [javac] 0x77BD0000 - 0x77BD7000 C:\WINDOWS\system32\VERSION.dll [javac] 0x76BB0000 - 0x76BBB000 C:\WINDOWS\System32\PSAPI.DLL [javac] Heap at VM Abort: [javac] Heap [javac] def new generation total 576K, used 221K [0x10010000, 0x100b0000, 0x104f0000) [javac] eden at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErro rHandler.java:130) at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher .java:293) at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:353) at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370) at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext .java:473) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper .java:190) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2 95) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:356 ) at org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicati onHandler.java:294) at org.mortbay.jetty.servlet.Dispatcher.dispatch(Dispatcher.java:206) at org.mortbay.jetty.servlet.Dispatcher.include(Dispatcher.java:125) at org.ofbiz.core.region.Region.render(Region.java:113) at org.ofbiz.core.view.RegionViewHandler.render(RegionViewHandler.java:9 2) at org.ofbiz.core.control.RequestHandler.renderView(RequestHandler.java: 492) at org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:3 20) at org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:356 ) at org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApp licationHandler.java:342) at org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurity Filter.java:170) at org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApp licationHandler.java:334) at org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicati onHandler.java:286) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:5 58) at org.mortbay.http.HttpContext.handle(HttpContext.java:1723) at org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplication Context.java:514) at org.mortbay.http.HttpContext.handle(HttpContext.java:1673) at org.mortbay.http.HttpServer.service(HttpServer.java:879) at org.mortbay.http.HttpConnection.service(HttpConnection.java:783) at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:945) at org.mortbay.http.HttpConnection.handle(HttpConnection.java:800) at org.mortbay.http.SocketListener.handleConnection(SocketListener.java: 201) at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:289) at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:454) 418632[ ControlServlet.java:242:ERROR] Error in request handler: org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet error: [javac] Since fork is true, ignoring compiler setting. [javac] Compiling 1 source file [javac] Since fork is true, ignoring compiler setting. [javac] Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) occurred at PC=0xC1D152 [javac] Function=[Unknown.] [javac] Library=(N/A) [javac] NOTE: We are unable to locate the function name symbol for the error [javac] just occurred. Please refer to release documentation for possi ble [javac] reason and solutions. [javac] Current Java thread: [javac] Dynamic libraries: [javac] 0x00400000 - 0x00408000 C:\Laura\java\jdk1.4\bin\javac.exe [javac] 0x77F40000 - 0x77FF0000 C:\WINDOWS\System32\ntdll.dll [javac] 0x77E40000 - 0x77F37000 C:\WINDOWS\system32\kernel32.dll [javac] 0x77DA0000 - 0x77E3A000 C:\WINDOWS\system32\ADVAPI32.dll [javac] 0x77C90000 - 0x77D05000 C:\WINDOWS\system32\RPCRT4.dll [javac] 0x77BE0000 - 0x77C33000 C:\WINDOWS\system32\MSVCRT.dll [javac] 0x00280000 - 0x002F3000 C:\DOKUME~1\laura\LOKALE~1\Temp\yabB.tmp [javac] 0x77310000 - 0x7739B000 C:\WINDOWS\system32\COMCTL32.DLL [javac] 0x77C40000 - 0x77C80000 C:\WINDOWS\system32\GDI32.dll [javac] 0x77D10000 - 0x77D9D000 C:\WINDOWS\system32\USER32.dll [javac] 0x71A80000 - 0x71A91000 C:\WINDOWS\system32\MPR.DLL [javac] 0x77180000 - 0x7729A000 C:\WINDOWS\system32\OLE32.DLL [javac] 0x770F0000 - 0x7717B000 C:\WINDOWS\system32\OLEAUT32.DLL [javac] 0x71A30000 - 0x71A39000 C:\WINDOWS\System32\WSOCK32.DLL [javac] 0x71A10000 - 0x71A25000 C:\WINDOWS\System32\WS2_32.dll [javac] 0x71A00000 - 0x71A08000 C:\WINDOWS\System32\WS2HELP.dll [javac] **************** [javac] Another exception has been detected while we were handling last erro r. [javac] 0x08000000 - 0x08136000 C:\Laura\java\jdk1.4\jre\bin\client\jvm. dll [javac] 0x76AF0000 - 0x76B1D000 C:\WINDOWS\System32\WINMM.dll [javac] Dumping information about last error: [javac] ERROR REPORT FILE = (N/A) [javac] PC = 0x00c1d152 [javac] SIGNAL = -1073741678 [javac] 0x10000000 - 0x10007000 C:\Laura\java\jdk1.4\jre\bin\hpi.dll [javac] 0x009B0000 - 0x009BE000 C:\Laura\java\jdk1.4\jre\bin\verify.dll [javac] FUNCTION NAME = (N/A) [javac] OFFSET = 0xFFFFFFFF [javac] LIBRARY NAME = (N/A) [javac] 0x009C0000 - 0x009D8000 C:\Laura\java\jdk1.4\jre\bin\java.dll [javac] 0x009E0000 - 0x009ED000 C:\Laura\java\jdk1.4\jre\bin\zip.dll [javac] Please check ERROR REPORT FILE for further information, if there is any. [javac] Good bye. [javac] 0x76C50000 - 0x76C72000 C:\WINDOWS\system32\imagehlp.dll [javac] 0x6DA00000 - 0x6DA7C000 C:\WINDOWS\system32\DBGHELP.dll [javac] 0x77BD0000 - 0x77BD7000 C:\WINDOWS\system32\VERSION.dll [javac] 0x76BB0000 - 0x76BBB000 C:\WINDOWS\System32\PSAPI.DLL [javac] Heap at VM Abort: [javac] Heap [javac] def new generation total 576K, used 221K [0x10010000, 0x100b0000, 0x104f0000) [javac] eden at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErro rHandler.java:130) at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher .java:293) at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:353) at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370) at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext .java:473) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper .java:190) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2 95) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:356 ) at org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicati onHandler.java:294) at org.mortbay.jetty.servlet.Dispatcher.dispatch(Dispatcher.java:206) at org.mortbay.jetty.servlet.Dispatcher.include(Dispatcher.java:125) at org.ofbiz.core.region.Region.render(Region.java:113) at org.ofbiz.core.view.RegionViewHandler.render(RegionViewHandler.java:9 2) at org.ofbiz.core.control.RequestHandler.renderView(RequestHandler.java: 492) at org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:3 20) at org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:356 ) at org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApp licationHandler.java:342) at org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurity Filter.java:170) at org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApp licationHandler.java:334) at org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicati onHandler.java:286) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:5 58) at org.mortbay.http.HttpContext.handle(HttpContext.java:1723) at org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplication Context.java:514) at org.mortbay.http.HttpContext.handle(HttpContext.java:1673) at org.mortbay.http.HttpServer.service(HttpServer.java:879) at org.mortbay.http.HttpConnection.service(HttpConnection.java:783) at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:945) at org.mortbay.http.HttpConnection.handle(HttpConnection.java:800) at org.mortbay.http.SocketListener.handleConnection(SocketListener.java: 201) at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:289) at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:454) 419233[ RequestManager.java:160:WARN ] [RequestManager.getViewPage] View wit h name "null" not found 422637[ ControlServlet.java:276:DEBUG] [[[main] Done rendering page, Servlet Finished- total:11.106,since last([main] Setup done...):11.106]] -------------------------------------------------------------------------------------------------------------------------- > > I'm not sure what is wrong, but most Java programs (including OFBiz) never > touch > stuff on that level. Your JVM installation may be messed up or something, > hard > to say.... > > Has anyone else seen anything like this? > > Later, > -David > > > > arukala@gmx.de wrote: > > > Hallo Users and Developers, > > > > I am currently new bie to use ofbiz. Recently I updated my ofbiz version > > from CVS. and I compiled all the files to create Jar files. and Later I > started > > running ofbiz in Jetty server with PostgreSQL Databases. > > I tried to run the Web tools from Web Browser LocalHost. > > I Had these Fallowing Exception: > > And the Same Exceptions for Other Links which are creating New Customer > in > > Party Component etc....... > > So Please Help Me to Solve this this issue.... > > Thanx in Advance. > > > > Sincerely > > > > Arukala > > > > > > > -------------------------------------------------------------------------------------------------------------------- > > org.apache.jasper.JasperException: Unable to compile class for JSP > > > > An error occurred at line: -1 in the jsp file: null > > > > Generated servlet error: > > [javac] Since fork is true, ignoring compiler setting. > > [javac] Compiling 1 source file > > [javac] Since fork is true, ignoring compiler setting. > > > > [javac] Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) > occurred > > at PC=0xC1D152 > > [javac] Function=[Unknown.] > > [javac] Library=(N/A) > > > > [javac] NOTE: We are unable to locate the function name symbol for the > error > > [javac] just occurred. Please refer to release documentation for > possible > > [javac] reason and solutions. > > > > > > [javac] Current Java thread: > > > > [javac] Dynamic libraries: > > [javac] 0x00400000 - 0x00408000 C:\Laura\java\jdk1.4\bin\javac.exe > > [javac] 0x77F40000 - 0x77FF0000 C:\WINDOWS\System32\ntdll.dll > > [javac] 0x77E40000 - 0x77F37000 C:\WINDOWS\system32\kernel32.dll > > [javac] 0x77DA0000 - 0x77E3A000 C:\WINDOWS\system32\ADVAPI32.dll > > [javac] 0x77C90000 - 0x77D05000 C:\WINDOWS\system32\RPCRT4.dll > > [javac] 0x77BE0000 - 0x77C33000 C:\WINDOWS\system32\MSVCRT.dll > > [javac] 0x00280000 - 0x002F3000 C:\DOKUME~1\laura\LOKALE~1\Temp\yabB.tmp > > [javac] 0x77310000 - 0x7739B000 C:\WINDOWS\system32\COMCTL32.DLL > > [javac] 0x77C40000 - 0x77C80000 C:\WINDOWS\system32\GDI32.dll > > [javac] 0x77D10000 - 0x77D9D000 C:\WINDOWS\system32\USER32.dll > > [javac] 0x71A80000 - 0x71A91000 C:\WINDOWS\system32\MPR.DLL > > [javac] 0x77180000 - 0x7729A000 C:\WINDOWS\system32\OLE32.DLL > > [javac] 0x770F0000 - 0x7717B000 C:\WINDOWS\system32\OLEAUT32.DLL > > [javac] 0x71A30000 - 0x71A39000 C:\WINDOWS\System32\WSOCK32.DLL > > [javac] 0x71A10000 - 0x71A25000 C:\WINDOWS\System32\WS2_32.dll > > [javac] 0x71A00000 - 0x71A08000 C:\WINDOWS\System32\WS2HELP.dll > > > > > > [javac] **************** > > [javac] Another exception has been detected while we were handling last > > error. > > [javac] 0x08000000 - 0x08136000 > C:\Laura\java\jdk1.4\jre\bin\client\jvm.dll > > [javac] 0x76AF0000 - 0x76B1D000 C:\WINDOWS\System32\WINMM.dll > > [javac] Dumping information about last error: > > [javac] ERROR REPORT FILE = (N/A) > > [javac] PC = 0x00c1d152 > > [javac] SIGNAL = -1073741678 > > [javac] 0x10000000 - 0x10007000 C:\Laura\java\jdk1.4\jre\bin\hpi.dll > > [javac] 0x009B0000 - 0x009BE000 C:\Laura\java\jdk1.4\jre\bin\verify.dll > > [javac] FUNCTION NAME = (N/A) > > [javac] OFFSET = 0xFFFFFFFF > > [javac] LIBRARY NAME = (N/A) > > [javac] 0x009C0000 - 0x009D8000 C:\Laura\java\jdk1.4\jre\bin\java.dll > > [javac] 0x009E0000 - 0x009ED000 C:\Laura\java\jdk1.4\jre\bin\zip.dll > > [javac] Please check ERROR REPORT FILE for further information, if there > is > > any. > > [javac] Good bye. > > [javac] 0x76C50000 - 0x76C72000 C:\WINDOWS\system32\imagehlp.dll > > [javac] 0x6DA00000 - 0x6DA7C000 C:\WINDOWS\system32\DBGHELP.dll > > [javac] 0x77BD0000 - 0x77BD7000 C:\WINDOWS\system32\VERSION.dll > > [javac] 0x76BB0000 - 0x76BBB000 C:\WINDOWS\System32\PSAPI.DLL > > > > [javac] Heap at VM Abort: > > [javac] Heap > > [javac] def new generation total 576K, used 221K [0x10010000, > 0x100b0000, > > 0x104f0000) > > [javac] > > eden > > > > > -------------------------------------------------------------------------------------------------------------------- > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From rmydam at NDGroup.com Wed Aug 6 11:42:04 2003 From: rmydam at NDGroup.com (Mydam, Rads) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Not a valid assignment Message-ID: <39E8D60991B11B40B0E5629017D73BA12D97F6@nd-mx1.newburycorp.com> Hi, I downloaded code from cvs 08/03/03. I created my workflow and started it. My first activity is the manual activity. I can able to see the activity name appeared in my tasks list :-). When I try to accept the assignment I get the following error. The following errors occurred: * Not a valid assignment calling service wfAcceptRoleAssignment in acceptRoleAssignment. I am not sure what is happening here. Thanks, Rads From ypawar at NDGroup.com Wed Aug 6 12:17:04 2003 From: ypawar at NDGroup.com (Pawar, Yogesh) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]How to use Party application? Message-ID: <39E8D60991B11B40B0E5629017D73BA1175996@nd-mx1.newburycorp.com> How to use Party application? I am trying to setup Organizational structure using Party Application without proper documentation it is hard to do the things in right way but still I did these steps. I login as admin/ofbiz and selected Party. With New Group page I created following groups Group name Party Group (Sub-) Type i) MAIN_GROUP Party Group ii) EMPLOYEE_GROUP Party Group iii) MANAGER_GROUP Party Group iv) DIV_MANAGER_GROUP Party Group v) PROGRAMMER_GROUP Party Group Found that partyId got automatically generated ( in cvs code it thrown partyId null could not found ) Then I created new New Role Type for each of this group. Role Type ID Description i) MAIN_ROLE Main Role ii) EMPLOYEE_ROLE Employee Role iii) MANAGER_ROLE Manager Role iv) DIV_MANAGER_ROLE Div Manager Role v) PROGRAMMER_ROLE Programmer Role Then in Find Party page I selected each newly created Group one by one and added corresponding Role to it. ( Using View Profile > Role > Add To Role ) Then I created different Person(s) and Userlogin(s) (username/password) using New Person and Create new User name screen. manager1 manager1/12345 manager2 manager2/12345 divmanager1 divmanager1/12345 divmanager2 divmanager2/12345 programmer1 programmer1/12345 programmer2 progrqmmer2/12345 and so on... Then on Find Party page I selected View Profile link for the GROUP ( say DIV_MANAGER ) and selected Relationship tab to add new Relationship. If this selected group is a sub group then I created two Relationships as follows i) party 10004 (DIV_MANAGER) is a Group Member of party 10002 (MAIN_GROUP) ii) party 10010(divmanager1) is a Group Member of party 10004(DIV_MANAGER) in role nd Div Manager Role (is it right to do this?) and for the MAIN_GROUP no Relationship were created ( is it right to do this?) Also do we need to create relationship both ways? With all this setup I thought that now users like divmanager1, programmer1, programmer2 ... will receive their corresponding role automatically but found that I am wrong there were no any ROLE displayed for these users. Also I am not sure if I need to create/add new Security Group? I need to create/add new Permission? Do I need to add each userlogin to this newly created Security Group/ Permission? Do I need to create new Relationship Type? I broad sense I need to know how to use the Party Application appropriately? Please help. Thank you. Yogesh In the Party Application there are too many things to consider for organization setup. From jonesde at ofbiz.org Wed Aug 6 12:26:10 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]How to use Party application? In-Reply-To: <39E8D60991B11B40B0E5629017D73BA1175996@nd-mx1.newburycorp.com> References: <39E8D60991B11B40B0E5629017D73BA1175996@nd-mx1.newburycorp.com> Message-ID: <3F31562C.2030107@ofbiz.org> Yogesh, It sounds like you need some help setting up your data. What is it you are trying to accomplish? There is no such thing as a right way of doing this, it all depends on your requirements. I imagine that a training video on the Party Manager would be helpful to you, but until we have enough time and money to produce such a thing that's not available. We do offer very reasonable consulting rates for on-site training if you are interested. Later, -David Jones Pawar, Yogesh wrote: > How to use Party application? > > I am trying to setup Organizational structure using Party Application without proper documentation it is hard to do the things in right way but still I did these steps. > > I login as admin/ofbiz and selected Party. > > With New Group page I created following groups > Group name Party Group (Sub-) Type > i) MAIN_GROUP Party Group > ii) EMPLOYEE_GROUP Party Group > iii) MANAGER_GROUP Party Group > iv) DIV_MANAGER_GROUP Party Group > v) PROGRAMMER_GROUP Party Group > > Found that partyId got automatically generated ( in cvs code it thrown partyId null could not found ) > Then I created new New Role Type for each of this group. > Role Type ID Description > i) MAIN_ROLE Main Role > ii) EMPLOYEE_ROLE Employee Role > iii) MANAGER_ROLE Manager Role > iv) DIV_MANAGER_ROLE Div Manager Role > v) PROGRAMMER_ROLE Programmer Role > > Then in Find Party page I selected each newly created Group one by one and added corresponding Role to it. ( Using View Profile > Role > Add To Role ) > Then I created different Person(s) and Userlogin(s) (username/password) using New Person and Create new User name screen. > manager1 manager1/12345 > manager2 manager2/12345 > divmanager1 divmanager1/12345 > divmanager2 divmanager2/12345 > programmer1 programmer1/12345 > programmer2 progrqmmer2/12345 and so on... > Then on Find Party page I selected View Profile link for the GROUP ( say DIV_MANAGER ) and selected Relationship tab to add new Relationship. If this selected group is a sub group then I created two Relationships as follows > i) party 10004 (DIV_MANAGER) is a Group Member of party 10002 (MAIN_GROUP) > ii) party 10010(divmanager1) is a Group Member of party 10004(DIV_MANAGER) in role nd Div Manager Role > (is it right to do this?) and for the MAIN_GROUP no Relationship were created ( is it right to do this?) > Also do we need to create relationship both ways? > With all this setup I thought that now users like divmanager1, programmer1, programmer2 ... will receive their corresponding role automatically but found that I am wrong there were no any ROLE displayed for these users. > Also I am not sure if > I need to create/add new Security Group? > I need to create/add new Permission? > Do I need to add each userlogin to this newly created Security Group/ Permission? > Do I need to create new Relationship Type? > I broad sense I need to know how to use the Party Application appropriately? > Please help. > Thank you. > Yogesh > > In the Party Application there are too many things to consider for organization setup. > From rk_learn at yahoo.com Wed Aug 6 13:27:08 2003 From: rk_learn at yahoo.com (Tom Topping) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]documentation Message-ID: <20030806202622.25772.qmail@web80706.mail.yahoo.com> Hi, I am new to ofbiz. I have gone through the documentation, but it's not complete. Can u provide documentation for creating workflow. Thanks, Tom --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030806/eb9a9d72/attachment.htm From jonesde at ofbiz.org Wed Aug 6 13:38:10 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]documentation In-Reply-To: <20030806202622.25772.qmail@web80706.mail.yahoo.com> References: <20030806202622.25772.qmail@web80706.mail.yahoo.com> Message-ID: <3F316702.3060503@ofbiz.org> Tom, Do you mean documenation in addition to the Workflow Engine Guide? We use the XPDL standard, and you can find a lot of material on that, including the references from the Workflow Management Coalition that maintains the XPDL standard (see wfmc.org). Is that what you mean by not complete, or is there something more specific? Are you looking for a how-to or a walkthrough for workflow creation? We hope to eventually offer training materials for that, but for now the best we can do is offer consulting services. I hope that helps. Later, -David Jones Tom Topping wrote: > Hi, > > I am new to ofbiz. I have gone through the documentation, but it's not > complete. > Can u provide documentation for creating workflow. > > Thanks, > Tom > > ------------------------------------------------------------------------ > Do you Yahoo!? > Yahoo! SiteBuilder > - Free, > easy-to-use web site design software From rk_learn at yahoo.com Wed Aug 6 14:03:02 2003 From: rk_learn at yahoo.com (Tom Topping) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]documentation In-Reply-To: <3F316702.3060503@ofbiz.org> Message-ID: <20030806210212.61931.qmail@web80701.mail.yahoo.com> How much u charge for it. "David E. Jones" wrote: Tom, Do you mean documenation in addition to the Workflow Engine Guide? We use the XPDL standard, and you can find a lot of material on that, including the references from the Workflow Management Coalition that maintains the XPDL standard (see wfmc.org). Is that what you mean by not complete, or is there something more specific? Are you looking for a how-to or a walkthrough for workflow creation? We hope to eventually offer training materials for that, but for now the best we can do is offer consulting services. I hope that helps. Later, -David Jones Tom Topping wrote: > Hi, > > I am new to ofbiz. I have gone through the documentation, but it's not > complete. > Can u provide documentation for creating workflow. > > Thanks, > Tom > > ------------------------------------------------------------------------ > Do you Yahoo!? > Yahoo! SiteBuilder > - Free, > easy-to-use web site design software ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030806/b419fbc5/attachment.htm From jaz at ofbiz.org Wed Aug 6 19:51:02 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]writing a simple component using ofbiz framework References: <001d01c35be7$02ab4e60$0300a8c0@vtech> <3F31392C.20008@ofbiz.org> Message-ID: <03f001c35c8e$9adc0dd0$8901010a@AJZT30> Also, if on-site training is not a viable solution there is also premium email support which you can subscribe to which give you access to a mailing list for questions which require an ASAP response or something as detailed as this sort of question. -Andy ----- Original Message ----- From: "David E. Jones" To: Sent: Wednesday, August 06, 2003 1:21 PM Subject: Re: [OFBiz-Users]writing a simple component using ofbiz framework > > We do offer training to cover this sort of material, but short of that all I can > do is point you to the documentation, and the outlines and presentations we use > for training. Those are all on the www.ofbiz.org web site. See the "Docs & > Books" and "Services" pages in particular. > > You might also find it helpful to look at some of the existing code. For > example, the code behind the EditProduct page in the Catalog Manager. Look at > the controller.xml file to see what is done for the requests it calls, and then > trace it back from there. > > We do eventually plan to product some training videos (on DVD), but we have had > too much contract work recently to get started with that... > > If you are interested in training please contact me or Andy directly, or send an > email to training@zjaa.com. > > Best of luck. > > Later, > -David Jones > > > > krthekeyan wrote: > > > Hi all, > > > > we are in the learning stage of ofbiz framework. got deployed with the > > sample application provided by ofbiz in tomcat.I would like to need a > > help from the ofbiz users for writing a simple component which interacts > > with database. > > basically i would like to have a simple sample application explained > > with the entries that has to be affected over various xml files. ASAP. > > > > thanks in advance, > > krthekeyan.s > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From jaz at ofbiz.org Wed Aug 6 19:53:02 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]No party found with the partyId of: null References: <39E8D60991B11B40B0E5629017D73BA12D97F5@nd-mx1.newburycorp.com> Message-ID: <03f901c35c8e$f176ec00$8901010a@AJZT30> These went in Monday, so CVS should have updated by now. -Andy ----- Original Message ----- From: "Mydam, Rads" To: Sent: Tuesday, August 05, 2003 4:09 PM Subject: RE: [OFBiz-Users]No party found with the partyId of: null > Thanks, > > I downloaded the code from cvs, but still I am getting the same problem. > Can u please forward the fixes. > > > Thanks, > Rads > > -----Original Message----- > From: Andy Zeneski [mailto:jaz@ofbiz.org] > Sent: Monday, August 04, 2003 12:04 PM > To: ofbiz-users@lists.sourceforge.net > Subject: Re: [OFBiz-Users]No party found with the partyId of: null > > > Yep, thanks! > > The fixes are in cvs, if you need patches (since cvs is delayed) they are in > the commits list, if you aren't subscribed I can forward it to you, just let > me know. > > -Andy > > ----- Original Message ----- > From: "Mydam, Rads" > To: > Sent: Monday, August 04, 2003 11:48 AM > Subject: RE: [OFBiz-Users]No party found with the partyId of: null > > > > Hi Andy, > > > > 2.1.1 release works fine. But the problem is with the cvs version. > > > > Thanks, > > Rads > > > > -----Original Message----- > > From: Andy Zeneski [mailto:jaz@ofbiz.org] > > Sent: Monday, August 04, 2003 11:38 AM > > To: ofbiz-users@lists.sourceforge.net > > Subject: Re: [OFBiz-Users]No party found with the partyId of: null > > > > > > Is this the CVS version or the 2.1.1 release? > > > > -Andy > > > > ----- Original Message ----- > > From: "Mydam, Rads" > > To: > > Sent: Monday, August 04, 2003 11:13 AM > > Subject: [OFBiz-Users]No party found with the partyId of: null > > > > > > > Hi , > > > > > > 1. I downloaded ofbiz code from CVS, and trying to create new person. > > > It is creating a new user, but it gives "No party found with the > > partyId of: null" error. > > > Thanks, > > > Rads Mydam > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > > Data Reports, E-commerce, Portals, and Forums are available now. > > > Download today and enter to win an XBOX or Visual Studio .NET. > > > > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > > _______________________________________________ > > > OFBiz-Users mailing list > > > OFBiz-Users@lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From gdavies at willowbrook.co.uk Thu Aug 7 02:26:05 2003 From: gdavies at willowbrook.co.uk (Gareth Davies) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Ofbiz installation problem! References: Message-ID: <00a901c35cc5$df1f0290$0202a8c0@willowbrook.local> Excellent thanks, that was it. How very stupid I feel now. Gareth Davies Willowbrook I.T. Ext. 235 ----- Original Message ----- From: "Mark Gordon" To: Sent: Wednesday, August 06, 2003 5:18 PM Subject: RE: [OFBiz-Users]Ofbiz installation problem! > Do you have oracle running on this same system.... it deploys a web server > on port 8080 > that will do exactly what you are saying.... realm:XDB. > > are you sure that ofbiz did not complain about port 8080 not being > available? > > try running ofbiz on 8081. > > -mark > > -----Original Message----- > From: ofbiz-users-admin@lists.sourceforge.net > [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of Gareth > Davies > Sent: Wednesday, August 06, 2003 7:30 AM > To: ofbiz-users@lists.sourceforge.net > Subject: [OFBiz-Users]Ofbiz installation problem! > > > Hi all, just joined the list. > > I'm currently trying out various ERP/CRM solutions and stumbled across > Ofbiz. > > I've installed it as per: ***************************************************************** This email has been checked by the altohiway e-Sweeper Service ***************************************************************** From krthekeyan at verchaska.com Thu Aug 7 04:33:07 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]error in log ..>Attempted to append to closed appender named Message-ID: <001701c35cd7$2860c360$0300a8c0@vtech> Hi all, I had deployed ofbiz framework and when i start the server. I receive several messages along with this following message. log4j:ERROR Attempted to append to closed appender named [stdout]. what is this bug and how could i fix it. bye, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030807/ca8fad6b/attachment.htm From arukala at gmx.de Thu Aug 7 06:08:03 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Newbie Help me To Solve this Error References: <11761.1060191968@www47.gmx.net> Message-ID: <30902.1060261644@www62.gmx.net> Hallo Users, Please help from this below error This fallowing error is copied from command Prompt Please advise me what to do and Thankx in advance Sincerely Arukala > --------------------------------------------------------------------------------------------------------------------> > An error occurred at line: -1 in the jsp file: null > > Generated servlet error: > [javac] Since fork is true, ignoring compiler setting. > [javac] Compiling 1 source file > [javac] Since fork is true, ignoring compiler setting. > > [javac] Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) > occurred > at PC=0xC1D152 > [javac] Function=[Unknown.] > [javac] Library=(N/A) > > [javac] NOTE: We are unable to locate the function name symbol for the > error > > [javac] just occurred. Please refer to release documentation for > possi > ble > [javac] reason and solutions. > > > [javac] Current Java thread: > > [javac] Dynamic libraries: > [javac] 0x00400000 - 0x00408000 C:\Laura\java\jdk1.4\bin\javac.exe > [javac] 0x77F40000 - 0x77FF0000 C:\WINDOWS\System32\ntdll.dll > [javac] 0x77E40000 - 0x77F37000 C:\WINDOWS\system32\kernel32.dll > [javac] 0x77DA0000 - 0x77E3A000 C:\WINDOWS\system32\ADVAPI32.dll > [javac] 0x77C90000 - 0x77D05000 C:\WINDOWS\system32\RPCRT4.dll > [javac] 0x77BE0000 - 0x77C33000 C:\WINDOWS\system32\MSVCRT.dll > [javac] 0x00280000 - 0x002F3000 > C:\DOKUME~1\laura\LOKALE~1\Temp\yabB.tmp > > [javac] 0x77310000 - 0x7739B000 C:\WINDOWS\system32\COMCTL32.DLL > [javac] 0x77C40000 - 0x77C80000 C:\WINDOWS\system32\GDI32.dll > [javac] 0x77D10000 - 0x77D9D000 C:\WINDOWS\system32\USER32.dll > [javac] 0x71A80000 - 0x71A91000 C:\WINDOWS\system32\MPR.DLL > [javac] 0x77180000 - 0x7729A000 C:\WINDOWS\system32\OLE32.DLL > [javac] 0x770F0000 - 0x7717B000 C:\WINDOWS\system32\OLEAUT32.DLL > [javac] 0x71A30000 - 0x71A39000 C:\WINDOWS\System32\WSOCK32.DLL > [javac] 0x71A10000 - 0x71A25000 C:\WINDOWS\System32\WS2_32.dll > [javac] 0x71A00000 - 0x71A08000 C:\WINDOWS\System32\WS2HELP.dll > > > [javac] **************** > [javac] Another exception has been detected while we were handling > last > erro > r. > [javac] 0x08000000 - 0x08136000 > C:\Laura\java\jdk1.4\jre\bin\client\jvm. > dll > [javac] 0x76AF0000 - 0x76B1D000 C:\WINDOWS\System32\WINMM.dll > [javac] Dumping information about last error: > [javac] ERROR REPORT FILE = (N/A) > [javac] PC = 0x00c1d152 > [javac] SIGNAL = -1073741678 > [javac] 0x10000000 - 0x10007000 > C:\Laura\java\jdk1.4\jre\bin\hpi.dll > [javac] 0x009B0000 - 0x009BE000 > C:\Laura\java\jdk1.4\jre\bin\verify.dll > [javac] FUNCTION NAME = (N/A) > [javac] OFFSET = 0xFFFFFFFF > [javac] LIBRARY NAME = (N/A) > [javac] 0x009C0000 - 0x009D8000 > C:\Laura\java\jdk1.4\jre\bin\java.dll > [javac] 0x009E0000 - 0x009ED000 > C:\Laura\java\jdk1.4\jre\bin\zip.dll > [javac] Please check ERROR REPORT FILE for further information, if > there > is > any. > [javac] Good bye. > [javac] 0x76C50000 - 0x76C72000 C:\WINDOWS\system32\imagehlp.dll > [javac] 0x6DA00000 - 0x6DA7C000 C:\WINDOWS\system32\DBGHELP.dll > [javac] 0x77BD0000 - 0x77BD7000 C:\WINDOWS\system32\VERSION.dll > [javac] 0x76BB0000 - 0x76BBB000 C:\WINDOWS\System32\PSAPI.DLL > > [javac] Heap at VM Abort: > [javac] Heap > [javac] def new generation total 576K, used 221K [0x10010000, > 0x100b0000, > 0x104f0000) > [javac] eden > > > > at > org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErro > rHandler.java:130) > at > org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher > .java:293) > at > org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:353) > at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370) > at > org.apache.jasper.JspCompilationContext.compile(JspCompilationContext > .java:473) > at > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper > .java:190) > at > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2 > 95) > at > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:356 > ) > at > org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicati > onHandler.java:294) > at > org.mortbay.jetty.servlet.Dispatcher.dispatch(Dispatcher.java:206) > at > org.mortbay.jetty.servlet.Dispatcher.include(Dispatcher.java:125) > at org.ofbiz.core.region.Region.render(Region.java:113) > at > org.ofbiz.core.view.RegionViewHandler.render(RegionViewHandler.java:9 > 2) > at > org.ofbiz.core.control.RequestHandler.renderView(RequestHandler.java: > 492) > at > org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:3 > 20) > at > org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:356 > ) > at > org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApp > licationHandler.java:342) > at > org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurity > Filter.java:170) > at > org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApp > licationHandler.java:334) > at > org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicati > onHandler.java:286) > at > org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:5 > 58) > at org.mortbay.http.HttpContext.handle(HttpContext.java:1723) > at > org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplication > Context.java:514) > at org.mortbay.http.HttpContext.handle(HttpContext.java:1673) > at org.mortbay.http.HttpServer.service(HttpServer.java:879) > at > org.mortbay.http.HttpConnection.service(HttpConnection.java:783) > at > org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:945) > at org.mortbay.http.HttpConnection.handle(HttpConnection.java:800) > at > org.mortbay.http.SocketListener.handleConnection(SocketListener.java: > 201) > at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:289) > at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:454) > 418632[ ControlServlet.java:242:ERROR] Error in request handler: > org.apache.jasper.JasperException: Unable to compile class for JSP > > An error occurred at line: -1 in the jsp file: null > > Generated servlet error: > [javac] Since fork is true, ignoring compiler setting. > [javac] Compiling 1 source file > [javac] Since fork is true, ignoring compiler setting. > > [javac] Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) > occurred > at PC=0xC1D152 > [javac] Function=[Unknown.] > [javac] Library=(N/A) > > [javac] NOTE: We are unable to locate the function name symbol for the > error > > [javac] just occurred. Please refer to release documentation for > possi > ble > [javac] reason and solutions. > > > [javac] Current Java thread: > > [javac] Dynamic libraries: > [javac] 0x00400000 - 0x00408000 C:\Laura\java\jdk1.4\bin\javac.exe > [javac] 0x77F40000 - 0x77FF0000 C:\WINDOWS\System32\ntdll.dll > [javac] 0x77E40000 - 0x77F37000 C:\WINDOWS\system32\kernel32.dll > [javac] 0x77DA0000 - 0x77E3A000 C:\WINDOWS\system32\ADVAPI32.dll > [javac] 0x77C90000 - 0x77D05000 C:\WINDOWS\system32\RPCRT4.dll > [javac] 0x77BE0000 - 0x77C33000 C:\WINDOWS\system32\MSVCRT.dll > [javac] 0x00280000 - 0x002F3000 > C:\DOKUME~1\laura\LOKALE~1\Temp\yabB.tmp > > [javac] 0x77310000 - 0x7739B000 C:\WINDOWS\system32\COMCTL32.DLL > [javac] 0x77C40000 - 0x77C80000 C:\WINDOWS\system32\GDI32.dll > [javac] 0x77D10000 - 0x77D9D000 C:\WINDOWS\system32\USER32.dll > [javac] 0x71A80000 - 0x71A91000 C:\WINDOWS\system32\MPR.DLL > [javac] 0x77180000 - 0x7729A000 C:\WINDOWS\system32\OLE32.DLL > [javac] 0x770F0000 - 0x7717B000 C:\WINDOWS\system32\OLEAUT32.DLL > [javac] 0x71A30000 - 0x71A39000 C:\WINDOWS\System32\WSOCK32.DLL > [javac] 0x71A10000 - 0x71A25000 C:\WINDOWS\System32\WS2_32.dll > [javac] 0x71A00000 - 0x71A08000 C:\WINDOWS\System32\WS2HELP.dll > > > [javac] **************** > [javac] Another exception has been detected while we were handling > last > erro > r. > [javac] 0x08000000 - 0x08136000 > C:\Laura\java\jdk1.4\jre\bin\client\jvm. > dll > [javac] 0x76AF0000 - 0x76B1D000 C:\WINDOWS\System32\WINMM.dll > [javac] Dumping information about last error: > [javac] ERROR REPORT FILE = (N/A) > [javac] PC = 0x00c1d152 > [javac] SIGNAL = -1073741678 > [javac] 0x10000000 - 0x10007000 > C:\Laura\java\jdk1.4\jre\bin\hpi.dll > [javac] 0x009B0000 - 0x009BE000 > C:\Laura\java\jdk1.4\jre\bin\verify.dll > [javac] FUNCTION NAME = (N/A) > [javac] OFFSET = 0xFFFFFFFF > [javac] LIBRARY NAME = (N/A) > [javac] 0x009C0000 - 0x009D8000 > C:\Laura\java\jdk1.4\jre\bin\java.dll > [javac] 0x009E0000 - 0x009ED000 > C:\Laura\java\jdk1.4\jre\bin\zip.dll > [javac] Please check ERROR REPORT FILE for further information, if > there > is > any. > [javac] Good bye. > [javac] 0x76C50000 - 0x76C72000 C:\WINDOWS\system32\imagehlp.dll > [javac] 0x6DA00000 - 0x6DA7C000 C:\WINDOWS\system32\DBGHELP.dll > [javac] 0x77BD0000 - 0x77BD7000 C:\WINDOWS\system32\VERSION.dll > [javac] 0x76BB0000 - 0x76BBB000 C:\WINDOWS\System32\PSAPI.DLL > > [javac] Heap at VM Abort: > [javac] Heap > [javac] def new generation total 576K, used 221K [0x10010000, > 0x100b0000, > 0x104f0000) > [javac] eden > > > > at > org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErro > rHandler.java:130) > at > org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher > .java:293) > at > org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:353) > at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370) > at > org.apache.jasper.JspCompilationContext.compile(JspCompilationContext > .java:473) > at > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper > .java:190) > at > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2 > 95) > at > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:356 > ) > at > org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicati > onHandler.java:294) > at > org.mortbay.jetty.servlet.Dispatcher.dispatch(Dispatcher.java:206) > at > org.mortbay.jetty.servlet.Dispatcher.include(Dispatcher.java:125) > at org.ofbiz.core.region.Region.render(Region.java:113) > at > org.ofbiz.core.view.RegionViewHandler.render(RegionViewHandler.java:9 > 2) > at > org.ofbiz.core.control.RequestHandler.renderView(RequestHandler.java: > 492) > at > org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:3 > 20) > at > org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:356 > ) > at > org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApp > licationHandler.java:342) > at > org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurity > Filter.java:170) > at > org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApp > licationHandler.java:334) > at > org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicati > onHandler.java:286) > at > org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:5 > 58) > at org.mortbay.http.HttpContext.handle(HttpContext.java:1723) > at > org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplication > Context.java:514) > at org.mortbay.http.HttpContext.handle(HttpContext.java:1673) > at org.mortbay.http.HttpServer.service(HttpServer.java:879) > at > org.mortbay.http.HttpConnection.service(HttpConnection.java:783) > at > org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:945) > at org.mortbay.http.HttpConnection.handle(HttpConnection.java:800) > at > org.mortbay.http.SocketListener.handleConnection(SocketListener.java: > 201) > at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:289) > at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:454) > 419233[ RequestManager.java:160:WARN ] [RequestManager.getViewPage] > View > wit > h name "null" not found > 422637[ ControlServlet.java:276:DEBUG] [[[main] Done rendering page, > Servlet > Finished- total:11.106,since last([main] Setup > done...):11.106]] > -------------------------------------------------------------------------------------------------------------------------- > > > > > > I'm not sure what is wrong, but most Java programs (including OFBiz) > never > > touch > > stuff on that level. Your JVM installation may be messed up or > something, > > hard > > to say.... > > > > Has anyone else seen anything like this? > > > > Later, > > -David > > > > > > > > arukala@gmx.de wrote: > > > > > Hallo Users and Developers, > > > > > > I am currently new bie to use ofbiz. Recently I updated my ofbiz > version > > > from CVS. and I compiled all the files to create Jar files. and Later > I > > started > > > running ofbiz in Jetty server with PostgreSQL Databases. > > > I tried to run the Web tools from Web Browser LocalHost. > > > I Had these Fallowing Exception: > > > And the Same Exceptions for Other Links which are creating New > Customer > > in > > > Party Component etc....... > > > So Please Help Me to Solve this this issue.... > > > Thanx in Advance. > > > > > > Sincerely > > > > > > Arukala > > > > > > > > > > > > -------------------------------------------------------------------------------------------------------------------- > > > org.apache.jasper.JasperException: Unable to compile class for JSP > > > > > > An error occurred at line: -1 in the jsp file: null > > > > > > Generated servlet error: > > > [javac] Since fork is true, ignoring compiler setting. > > > [javac] Compiling 1 source file > > > [javac] Since fork is true, ignoring compiler setting. > > > > > > [javac] Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) > > occurred > > > at PC=0xC1D152 > > > [javac] Function=[Unknown.] > > > [javac] Library=(N/A) > > > > > > [javac] NOTE: We are unable to locate the function name symbol for the > > error > > > [javac] just occurred. Please refer to release documentation for > > possible > > > [javac] reason and solutions. > > > > > > > > > [javac] Current Java thread: > > > > > > [javac] Dynamic libraries: > > > [javac] 0x00400000 - 0x00408000 C:\Laura\java\jdk1.4\bin\javac.exe > > > [javac] 0x77F40000 - 0x77FF0000 C:\WINDOWS\System32\ntdll.dll > > > [javac] 0x77E40000 - 0x77F37000 C:\WINDOWS\system32\kernel32.dll > > > [javac] 0x77DA0000 - 0x77E3A000 C:\WINDOWS\system32\ADVAPI32.dll > > > [javac] 0x77C90000 - 0x77D05000 C:\WINDOWS\system32\RPCRT4.dll > > > [javac] 0x77BE0000 - 0x77C33000 C:\WINDOWS\system32\MSVCRT.dll > > > [javac] 0x00280000 - 0x002F3000 > C:\DOKUME~1\laura\LOKALE~1\Temp\yabB.tmp > > > [javac] 0x77310000 - 0x7739B000 C:\WINDOWS\system32\COMCTL32.DLL > > > [javac] 0x77C40000 - 0x77C80000 C:\WINDOWS\system32\GDI32.dll > > > [javac] 0x77D10000 - 0x77D9D000 C:\WINDOWS\system32\USER32.dll > > > [javac] 0x71A80000 - 0x71A91000 C:\WINDOWS\system32\MPR.DLL > > > [javac] 0x77180000 - 0x7729A000 C:\WINDOWS\system32\OLE32.DLL > > > [javac] 0x770F0000 - 0x7717B000 C:\WINDOWS\system32\OLEAUT32.DLL > > > [javac] 0x71A30000 - 0x71A39000 C:\WINDOWS\System32\WSOCK32.DLL > > > [javac] 0x71A10000 - 0x71A25000 C:\WINDOWS\System32\WS2_32.dll > > > [javac] 0x71A00000 - 0x71A08000 C:\WINDOWS\System32\WS2HELP.dll > > > > > > > > > [javac] **************** > > > [javac] Another exception has been detected while we were handling > last > > > error. > > > [javac] 0x08000000 - 0x08136000 > > C:\Laura\java\jdk1.4\jre\bin\client\jvm.dll > > > [javac] 0x76AF0000 - 0x76B1D000 C:\WINDOWS\System32\WINMM.dll > > > [javac] Dumping information about last error: > > > [javac] ERROR REPORT FILE = (N/A) > > > [javac] PC = 0x00c1d152 > > > [javac] SIGNAL = -1073741678 > > > [javac] 0x10000000 - 0x10007000 C:\Laura\java\jdk1.4\jre\bin\hpi.dll > > > [javac] 0x009B0000 - 0x009BE000 > C:\Laura\java\jdk1.4\jre\bin\verify.dll > > > [javac] FUNCTION NAME = (N/A) > > > [javac] OFFSET = 0xFFFFFFFF > > > [javac] LIBRARY NAME = (N/A) > > > [javac] 0x009C0000 - 0x009D8000 C:\Laura\java\jdk1.4\jre\bin\java.dll > > > [javac] 0x009E0000 - 0x009ED000 C:\Laura\java\jdk1.4\jre\bin\zip.dll > > > [javac] Please check ERROR REPORT FILE for further information, if > there > > is > > > any. > > > [javac] Good bye. > > > [javac] 0x76C50000 - 0x76C72000 C:\WINDOWS\system32\imagehlp.dll > > > [javac] 0x6DA00000 - 0x6DA7C000 C:\WINDOWS\system32\DBGHELP.dll > > > [javac] 0x77BD0000 - 0x77BD7000 C:\WINDOWS\system32\VERSION.dll > > > [javac] 0x76BB0000 - 0x76BBB000 C:\WINDOWS\System32\PSAPI.DLL > > > > > > [javac] Heap at VM Abort: > > > [javac] Heap > > > [javac] def new generation total 576K, used 221K [0x10010000, > > 0x100b0000, > > > 0x104f0000) > > > [javac] > > > eden > > > > > > > > > -------------------------------------------------------------------------------------------------------------------- > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > -- > COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test > -------------------------------------------------- > 1. GMX TopMail - Platz 1 und Testsieger! > 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! > 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. > e-Post > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From jaz at ofbiz.org Thu Aug 7 07:00:17 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]error in log ..>Attempted to append to closed appender named References: <001701c35cd7$2860c360$0300a8c0@vtech> Message-ID: <047701c35cec$26caad80$8901010a@AJZT30> This is caused when log4j picks up a different configuration file before ofbiz loads. If you search the archives you will find a fix for this problem. -Andy ----- Original Message ----- From: krthekeyan To: ofbiz-users@lists.sourceforge.net Sent: Thursday, August 07, 2003 7:29 AM Subject: [OFBiz-Users]error in log ..>Attempted to append to closed appender named Hi all, I had deployed ofbiz framework and when i start the server. I receive several messages along with this following message. log4j:ERROR Attempted to append to closed appender named [stdout]. what is this bug and how could i fix it. bye, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030807/f0061441/attachment.htm From rmydam at NDGroup.com Thu Aug 7 09:05:02 2003 From: rmydam at NDGroup.com (Mydam, Rads) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Not a valid assignment Message-ID: <39E8D60991B11B40B0E5629017D73BA12D97F8@nd-mx1.newburycorp.com> Hi Andy, Please look at the original message. This was working fine in the 2.1.1, but I am getting an error, which described in my original message in the cvs version. Can u please help me out. Thanks, Rads -----Original Message----- From: Mydam, Rads Sent: Wednesday, August 06, 2003 2:42 PM To: ofbiz-users@lists.sourceforge.net Subject: [OFBiz-Users]Not a valid assignment Hi, I downloaded code from cvs 08/03/03. I created my workflow and started it. My first activity is the manual activity. I can able to see the activity name appeared in my tasks list :-). When I try to accept the assignment I get the following error. The following errors occurred: * Not a valid assignment calling service wfAcceptRoleAssignment in acceptRoleAssignment. I am not sure what is happening here. Thanks, Rads ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From on_ofbiz at yahoo.com Thu Aug 7 09:18:14 2003 From: on_ofbiz at yahoo.com (Steaven Schwarzenegger) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]All Tasks error found Message-ID: <20030807161742.41551.qmail@web80708.mail.yahoo.com> I created a new Project which was successful then I click on same Project name and then I click on on All Tasks I got this exception Error: Expression projectWorkEffort.estimatedCompletionDate is undefined on line 65, column 36 in repository:pages:///project/projecttasklist.ftl. Thanks Steaven Schwarzenegger --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030807/2012d12b/attachment.htm From jaz at ofbiz.org Thu Aug 7 09:51:09 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]got error while accepting the Task Assignment References: <20030716202607.52597.qmail@web20513.mail.yahoo.com> Message-ID: <04f301c35d04$0f3ffd10$8901010a@AJZT30> Philip & Rads Okay, I just changed this exception in CVS to be a little more detailed. The Assignment is not valid exception means that either: 1) creating a new assignment failed; there should be more details. or 2) look up failed; no assignment exists for the passed keys. Things to know: Accepting a role assignment will delegate and remove the first assignment, and create a new one. Usually the above error occurs if it cannot find the first assignment. In order to locate the assignment the proper workEffortId, roleTypeId AND fromDate are needed. Ways to debug this: The best way to debug this exception is to log all the parameters you are passing to the service (or workflow client), and compare those to the values found in the WorkEffortPartyAssignment entity. This entity contains all the information about the current assignment(s). Most likely you are passing something invalid. -Andy ----- Original Message ----- From: Philip Lee To: ofbiz-users@lists.sourceforge.net Sent: Wednesday, July 16, 2003 4:26 PM Subject: Re: [OFBiz-Users]got error while accepting the Task Assignment What does that means Assignment is not valid? Like the user who created the Project and workflow participant are different? -philee Andy Zeneski wrote: From the exception it looks like the assignment is not valid. -Andy ----- Original Message ----- From: Philip Lee To: ofbiz-users Sent: Wednesday, July 16, 2003 2:36 PM Subject: [OFBiz-Users]got error while accepting the Task Assignment I created a Project under WorkEffort application which starts my own workflow which generates few workflow activities listed on TaskList page of Workeffort when I click on Accept Assignment link of the newly generated Activity I got following error. Any idea why I am not able to accept the assignment? -philee 125824[ ControlServlet.java:208:DEBUG] [[[acceptRoleAssignment] Setup done, doing Event(s) and View(s)- total: .01,since last([acceptRoleAssign...):0.01]] 125824[ RequestHandler.java:172:INFO ] [Processing Request]: acceptRoleAssignment 125884[ CachedClassLoader.java:184:INFO ] Cached loader cache miss for resource name: [org/ofbiz/commonapp/workef ort/workeffort/WorkflowSimpleEvents.xml] 126225[ CachedClassLoader.java:184:INFO ] Cached loader cache miss for resource name: [org/ofbiz/commonapp/workef ort/workeffort/WorkflowMapProcessors.xml] org.ofbiz.core.workflow.WfException: Not a valid assignment at org.ofbiz.core.workflow.impl.WfAssignmentImpl.checkAssignment(WfAssignmentImpl.java:110) at org.ofbiz.core.workflow.impl.WfAssignmentImpl.(WfAssignmentImpl.java:61) at org.ofbiz.core.workflow.WfFactory.getWfAssignment(WfFactory.java:97) at org.ofbiz.core.workflow.WfFactory.getWfAssignment(WfFactory.java:107) at org.ofbiz.core.workflow.client.WorkflowClient.delegate(WorkflowClient.java:155) at org.ofbiz.core.workflow.client.WorkflowClient.delegateAndAccept(WorkflowClient.java:196) at org.ofbiz.core.workflow.client.WorkflowServices.acceptRoleAssignment(WorkflowServices.java:370) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.ofbiz.core.service.engine.StandardJavaEngine.serviceInvoker(StandardJavaEngine.java:101) at org.ofbiz.core.service.engine.StandardJavaEngine.runSync(StandardJavaEngine.java:63) at org.ofbiz.core.service.ServiceDispatcher.runSync(ServiceDispatcher.java:243) at org.ofbiz.core.service.GenericDispatcher.runSync(GenericDispatcher.java:91) at org.ofbiz.core.minilang.method.callops.CallService.exec(CallService.java:207) at org.ofbiz.core.minilang.SimpleMethod.runSubOps(SimpleMethod.java:767) at org.ofbiz.core.minilang.SimpleMethod.exec(SimpleMethod.java:492) at org.ofbiz.core.minilang.SimpleMethod.runSimpleMethod(SimpleMethod.java:99) at org.ofbiz.core.minilang.SimpleMethod.runSimpleEvent(SimpleMethod.java:56) at org.ofbiz.core.event.SimpleEventHandler.invoke(SimpleEventHandler.java:66) at org.ofbiz.core.control.RequestHandler.runEvent(RequestHandler.java:324) at org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:214) at org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:213) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:360) at org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApplicationHandler.java:342) at org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurityFilter.java:158) at org.mortbay.jetty.servlet.WebApplicationHandler$Chain.doFilter(WebApplicationHandler.java:334) at org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:286) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:558) at org.mortbay.http.HttpContext.handle(HttpContext.java:1714) at org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:507) at org.mortbay.http.HttpContext.handle(HttpContext.java:1664) at org.mortbay.http.HttpServer.service(HttpServer.java:863) at org.mortbay.http.HttpConnection.service(HttpConnection.java:775) at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:939) at org.mortbay.http.HttpConnection.handle(HttpConnection.java:792) at org.mortbay.http.SocketListener.handleConnection(SocketListener.java:201) at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:289) at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:455) 126776[ TransactionUtil.java:176:INFO ] [TransactionUtil.setRollbackOnly] transaction roll back only set 126776[ CachedClassLoader.java:184:INFO ] Cached loader cache miss for resource name: [DefaultMessages] -------------------------------------------------------------------------- Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! ------------------------------------------------------------------------------ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030807/06b5bcc4/attachment.htm From jaz at ofbiz.org Thu Aug 7 09:53:14 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Not a valid assignment References: <39E8D60991B11B40B0E5629017D73BA12D97F8@nd-mx1.newburycorp.com> Message-ID: <04f401c35d04$57b86320$8901010a@AJZT30> Rads, The message I just posted may help you. In the future posting a specific question, would more then likely result in a specific answer. From this message, I am not really sure what you are asking. So, I really don't know how to help. Let me know if you continue to have problems after reading the previous post. -Andy ----- Original Message ----- From: "Mydam, Rads" To: Sent: Thursday, August 07, 2003 12:04 PM Subject: RE: [OFBiz-Users]Not a valid assignment > Hi Andy, > > Please look at the original message. > This was working fine in the 2.1.1, but I am getting an error, which described in my original message in the cvs version. > > Can u please help me out. > > Thanks, > Rads > > > > -----Original Message----- > From: Mydam, Rads > Sent: Wednesday, August 06, 2003 2:42 PM > To: ofbiz-users@lists.sourceforge.net > Subject: [OFBiz-Users]Not a valid assignment > > > Hi, > I downloaded code from cvs 08/03/03. > I created my workflow and started it. > My first activity is the manual activity. I can able to see the activity name appeared in my tasks list :-). > When I try to accept the assignment I get the following error. > The following errors occurred: > * Not a valid assignment > calling service wfAcceptRoleAssignment in acceptRoleAssignment. > I am not sure what is happening here. > > Thanks, > Rads > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From on_ofbiz at yahoo.com Thu Aug 7 11:53:03 2003 From: on_ofbiz at yahoo.com (Steaven Schwarzenegger) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Test cases Message-ID: <20030807185203.6818.qmail@web80709.mail.yahoo.com> Each time we (basically Andy and David and you guys) fixes/change some code to fix one thing might broke some other new/old feature(s) or pages. Is it good idea to have some basic manual/auto test cases to run for each major release or after few days or ask users to run these test frequently so that we break minimum. Thanks, Steaven Schwarzenegger --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030807/9dd742d5/attachment.htm From jaz at ofbiz.org Thu Aug 7 12:10:03 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Test cases References: <20030807185203.6818.qmail@web80709.mail.yahoo.com> Message-ID: <051f01c35d17$5f837eb0$8901010a@AJZT30> We test as much as we can before a release. CVS is a different story, it does sometimes take a few days after some major fixes to get everything tested. -Andt ----- Original Message ----- From: Steaven Schwarzenegger To: ofbiz-users Sent: Thursday, August 07, 2003 2:52 PM Subject: [OFBiz-Users]Test cases Each time we (basically Andy and David and you guys) fixes/change some code to fix one thing might broke some other new/old feature(s) or pages. Is it good idea to have some basic manual/auto test cases to run for each major release or after few days or ask users to run these test frequently so that we break minimum. Thanks, Steaven Schwarzenegger ------------------------------------------------------------------------------ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030807/7308a431/attachment.htm From rmydam at NDGroup.com Thu Aug 7 12:44:01 2003 From: rmydam at NDGroup.com (Mydam, Rads) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Test cases Message-ID: <39E8D60991B11B40B0E5629017D73BA12D97F9@nd-mx1.newburycorp.com> Hi Andy, When is the next ofbiz release, ofcourse more stable version :-) Thanks, Rads -----Original Message----- From: Andy Zeneski [mailto:jaz@ofbiz.org] Sent: Thursday, August 07, 2003 3:09 PM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]Test cases We test as much as we can before a release. CVS is a different story, it does sometimes take a few days after some major fixes to get everything tested. -Andt ----- Original Message ----- From: Steaven Schwarzenegger To: ofbiz-users Sent: Thursday, August 07, 2003 2:52 PM Subject: [OFBiz-Users]Test cases Each time we (basically Andy and David and you guys) fixes/change some code to fix one thing might broke some other new/old feature(s) or pages. Is it good idea to have some basic manual/auto test cases to run for each major release or after few days or ask users to run these test frequently so that we break minimum. Thanks, Steaven Schwarzenegger _____ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030807/4517718f/attachment.htm From jaz at ofbiz.org Thu Aug 7 13:07:08 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Test cases References: <39E8D60991B11B40B0E5629017D73BA12D97F9@nd-mx1.newburycorp.com> Message-ID: <053a01c35d1f$675f6420$8901010a@AJZT30> Just about all the new functionality for the release is done. Now its time to review and make sure everything is working as intended. As soon as we are fairly sure of the stability of the old and new functionality we will put out the 2.2.0 release. Plus we have to adjust any documentation, and write up the release notes. So, it may still be a little while. -Andy ----- Original Message ----- From: Mydam, Rads To: ofbiz-users@lists.sourceforge.net Sent: Thursday, August 07, 2003 3:39 PM Subject: RE: [OFBiz-Users]Test cases Hi Andy, When is the next ofbiz release, ofcourse more stable version :-) Thanks, Rads -----Original Message----- From: Andy Zeneski [mailto:jaz@ofbiz.org] Sent: Thursday, August 07, 2003 3:09 PM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]Test cases We test as much as we can before a release. CVS is a different story, it does sometimes take a few days after some major fixes to get everything tested. -Andt ----- Original Message ----- From: Steaven Schwarzenegger To: ofbiz-users Sent: Thursday, August 07, 2003 2:52 PM Subject: [OFBiz-Users]Test cases Each time we (basically Andy and David and you guys) fixes/change some code to fix one thing might broke some other new/old feature(s) or pages. Is it good idea to have some basic manual/auto test cases to run for each major release or after few days or ask users to run these test frequently so that we break minimum. Thanks, Steaven Schwarzenegger -------------------------------------------------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030807/66cf5cdf/attachment.htm From mark at markgordon.org Thu Aug 7 18:40:04 2003 From: mark at markgordon.org (Mark Gordon) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Shoe Size Features. Message-ID: Question about features: I am setting up a site to sell shoes. A givin shoe can be available in size 5-12 and have say 4 colors. Example: 5 Inch Heel size 5-12 Color: Black Red Pink Blue Would I have one product -> Product_id 5inchHeel (Virtual Product) and 28 variant products Product_id's: 5inchHeel-size5-black 5inchHeel-size6-black ... 5inchHeel-size12-black 5inchHeel-size5-red 5inchHeel-size6-red ... 5inchHeel-size12-red 5inchHeel-size5-pink 5inchHeel-size6-pink ... 5inchHeel-size5-blue 5inchHeel-size6-blue ... 5inchHeel-size12-blue Does this sound correct? THanks Mark From jaz at ofbiz.org Thu Aug 7 19:44:05 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Shoe Size Features. References: Message-ID: <054d01c35d56$7308e800$8901010a@AJZT30> Yep, but its a lot easier to let the QuickAddVariants page handle creating each one. Just setup your features and your virtual product and let it run... -Andy ----- Original Message ----- From: "Mark Gordon" To: Sent: Thursday, August 07, 2003 9:39 PM Subject: [OFBiz-Users]Shoe Size Features. > > > Question about features: > > I am setting up a site to sell shoes. A givin shoe can be available in size > 5-12 and have say 4 colors. > > Example: > > 5 Inch Heel size 5-12 > > Color: > Black Red Pink Blue > > > Would I have one product -> Product_id 5inchHeel (Virtual Product) > > and 28 variant products Product_id's: > 5inchHeel-size5-black > 5inchHeel-size6-black > ... > 5inchHeel-size12-black > 5inchHeel-size5-red > 5inchHeel-size6-red > ... > 5inchHeel-size12-red > 5inchHeel-size5-pink > 5inchHeel-size6-pink > ... > 5inchHeel-size5-blue > 5inchHeel-size6-blue > ... > 5inchHeel-size12-blue > > Does this sound correct? > > THanks > Mark > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From mark at markgordon.org Thu Aug 7 21:21:05 2003 From: mark at markgordon.org (Mark Gordon) Date: Mon Aug 23 13:51:24 2004 Subject: [OFBiz-Users]Shoe Size Features. In-Reply-To: <054d01c35d56$7308e800$8901010a@AJZT30> Message-ID: On the quick add variants page you still have to enter the product_id and press the create button for each variant, or is there some magic thing get it to create the product_id's? -mark -----Original Message----- From: ofbiz-users-admin@lists.sourceforge.net [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of Andy Zeneski Sent: Thursday, August 07, 2003 7:41 PM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]Shoe Size Features. Yep, but its a lot easier to let the QuickAddVariants page handle creating each one. Just setup your features and your virtual product and let it run... -Andy ----- Original Message ----- From: "Mark Gordon" To: Sent: Thursday, August 07, 2003 9:39 PM Subject: [OFBiz-Users]Shoe Size Features. > > > Question about features: > > I am setting up a site to sell shoes. A givin shoe can be available in size > 5-12 and have say 4 colors. > > Example: > > 5 Inch Heel size 5-12 > > Color: > Black Red Pink Blue > > > Would I have one product -> Product_id 5inchHeel (Virtual Product) > > and 28 variant products Product_id's: > 5inchHeel-size5-black > 5inchHeel-size6-black > ... > 5inchHeel-size12-black > 5inchHeel-size5-red > 5inchHeel-size6-red > ... > 5inchHeel-size12-red > 5inchHeel-size5-pink > 5inchHeel-size6-pink > ... > 5inchHeel-size5-blue > 5inchHeel-size6-blue > ... > 5inchHeel-size12-blue > > Does this sound correct? > > THanks > Mark > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From sterling at nowpulse.com Thu Aug 7 21:46:03 2003 From: sterling at nowpulse.com (Sterling Okura) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Shoe Size Features. In-Reply-To: Message-ID: <001401c35d67$b6891e40$6801a8c0@Wailuku> Mark, I once had to create 4 different sizes for over 2000 products. The quickest way was to dump the original product data into a simple SQL server table. I then copied each product several times by appending the different sizes to each sku so I ended up with 10000 rows (2000 virtual, 8000 variants). David Jones gave me a tip for using MS Word to mail merge an xml template w/ a datasource to create a entity xml file. I then imported the generated xml file using the OFBiz webtools app. These are some of the entities you'll probably have to generate for each product: Product ProductAssoc (productAssocTypeId="PRODUCT_VARIANT") ProductCategory ProductCategoryMember ProductFeatureAppl ProductPrice I'm probably missing some entities. You can try doing an XML export after you've manually created a few virtual and variant products, and copy the XML format of the export. Hope this helps, sterling -----Original Message----- From: ofbiz-users-admin@lists.sourceforge.net [mailto:ofbiz-users-admin@lists.sourceforge.net] On Behalf Of Mark Gordon On the quick add variants page you still have to enter the product_id and press the create button for each variant, or is there some magic thing get it to create the product_id's? -mark From krthekeyan at verchaska.com Fri Aug 8 05:16:07 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Category not found for Category ID ! Message-ID: <001001c35da0$ad045a40$0300a8c0@vtech> Hi all, 1)can any one help me in writing a simple component using ofbiz framework. 2) Though I have the product details in the Database I am not getting empty screen. with the message "Category not found for Category ID !" what should i do to get the things up and working. thanks, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030808/d9c58d9b/attachment.htm From jaz at ofbiz.org Fri Aug 8 07:40:09 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Shoe Size Features. References: Message-ID: <056d01c35db8$99ce5df0$8901010a@AJZT30> Now that I think about it, I think the auto create of the productIds was a modification we did for a client, and due to some internal naming convention did not make it back into the project. Maybe we'll add something in there to make id's if you say to based on what is known. It shouldn't be too difficult. -Andy ----- Original Message ----- From: "Mark Gordon" To: Sent: Thursday, August 07, 2003 11:35 PM Subject: RE: [OFBiz-Users]Shoe Size Features. > > > On the quick add variants page you still have to enter the product_id and > press the create button for each variant, or is there some magic thing get > it to create the product_id's? > > -mark > > > > -----Original Message----- > From: ofbiz-users-admin@lists.sourceforge.net > [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of Andy > Zeneski > Sent: Thursday, August 07, 2003 7:41 PM > To: ofbiz-users@lists.sourceforge.net > Subject: Re: [OFBiz-Users]Shoe Size Features. > > > Yep, but its a lot easier to let the QuickAddVariants page handle creating > each one. Just setup your features and your virtual product and let it > run... > > -Andy > > ----- Original Message ----- > From: "Mark Gordon" > To: > Sent: Thursday, August 07, 2003 9:39 PM > Subject: [OFBiz-Users]Shoe Size Features. > > > > > > > > Question about features: > > > > I am setting up a site to sell shoes. A givin shoe can be available in > size > > 5-12 and have say 4 colors. > > > > Example: > > > > 5 Inch Heel size 5-12 > > > > Color: > > Black Red Pink Blue > > > > > > Would I have one product -> Product_id 5inchHeel (Virtual Product) > > > > and 28 variant products Product_id's: > > 5inchHeel-size5-black > > 5inchHeel-size6-black > > ... > > 5inchHeel-size12-black > > 5inchHeel-size5-red > > 5inchHeel-size6-red > > ... > > 5inchHeel-size12-red > > 5inchHeel-size5-pink > > 5inchHeel-size6-pink > > ... > > 5inchHeel-size5-blue > > 5inchHeel-size6-blue > > ... > > 5inchHeel-size12-blue > > > > Does this sound correct? > > > > THanks > > Mark > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From mark at markgordon.org Fri Aug 8 08:23:10 2003 From: mark at markgordon.org (Mark Gordon) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Category not found for Category ID ! In-Reply-To: <001001c35da0$ad045a40$0300a8c0@vtech> Message-ID: On q1... I have not gotten that far myself yet..... if was not for this darn job I could play more .... On q2 you need to have a category of type 'promotional products (not sure of the exact code) ' this is the category for the catalog that comes up when you first go to the ecommerce webapp. I am not sure if this answers your question..... if not maybe you could offer up more details like at what point are you getting this message. -mark -----Original Message----- From: ofbiz-users-admin@lists.sourceforge.net [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of krthekeyan Sent: Friday, August 08, 2003 4:32 AM To: ofbiz-users@lists.sourceforge.net Subject: [OFBiz-Users]Category not found for Category ID ! Hi all, 1)can any one help me in writing a simple component using ofbiz framework. 2) Though I have the product details in the Database I am not getting empty screen. with the message "Category not found for Category ID !" what should i do to get the things up and working. thanks, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030808/a71835e0/attachment.htm From mark at markgordon.org Fri Aug 8 08:33:01 2003 From: mark at markgordon.org (Mark Gordon) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Shoe Size Features. In-Reply-To: <056d01c35db8$99ce5df0$8901010a@AJZT30> Message-ID: I am still learning the entity relationships .... I am porting a site over from freemerchant.com (as a favor for a friend) and I have the csv files used to upload to that site. I guess I will write a utility to convert to entity xml's. I will use some combination of virtual product_id and feature matrix to make the variant product ids.... Next I have to figure out how to use the work flow to fill orders, anyone have any advice on how to proceed? Thanks Mark -----Original Message----- From: ofbiz-users-admin@lists.sourceforge.net [mailto:ofbiz-users-admin@lists.sourceforge.net]On Behalf Of Andy Zeneski Sent: Friday, August 08, 2003 7:23 AM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]Shoe Size Features. Now that I think about it, I think the auto create of the productIds was a modification we did for a client, and due to some internal naming convention did not make it back into the project. Maybe we'll add something in there to make id's if you say to based on what is known. It shouldn't be too difficult. -Andy From on_ofbiz at yahoo.com Fri Aug 8 08:36:07 2003 From: on_ofbiz at yahoo.com (Steaven Schwarzenegger) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Assigning Task to another user Message-ID: <20030808153542.90320.qmail@web80702.mail.yahoo.com> Like Project why can't we able to assign a Task created by one user to another user? Like there is a select option for Project with which I can Assign a project and then delegate it so that the assined person can see the project in his Project list, why not same thing for task. Thanks Steaven Schwarzenegger --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030808/02195deb/attachment.htm From jaz at ofbiz.org Fri Aug 8 08:40:03 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Shoe Size Features. References: Message-ID: <059101c35dc3$324a6c90$8901010a@AJZT30> > Next I have to figure out how to use the work flow to fill orders, anyone > have any advice on how to proceed? > Just a tad... the workflow is used for approving orders which can then be filled. The shipment tools are used for filling orders. If you do not want an approval process before orders are filled, you can bypass that step. -Andy From rmydam at NDGroup.com Fri Aug 8 09:55:04 2003 From: rmydam at NDGroup.com (Mydam, Rads) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]create project & phase Message-ID: <39E8D60991B11B40B0E5629017D73BA12D97FE@nd-mx1.newburycorp.com> Hi Andy, Creating new project. * click on newproject link. * Fill all the information required to create project * Click on create button. * The project created and redirected to the project list page. * Now if you click on refresh on the browser, same project is created again, it happens many times. Samething is happening with phases also. Please look into this issue. Thanks, Rads From jaz at ofbiz.org Fri Aug 8 10:21:02 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]create project & phase References: <39E8D60991B11B40B0E5629017D73BA12D97FE@nd-mx1.newburycorp.com> Message-ID: <05ae01c35dd1$4b0b84e0$8901010a@AJZT30> That should be expected. When you post data from the browser to the server and then click refresh, you should expect the same results. Refresh, reloads the last request to the server. The last request was to create a project. -Andy ----- Original Message ----- From: "Mydam, Rads" To: Sent: Friday, August 08, 2003 12:54 PM Subject: [OFBiz-Users]create project & phase > Hi Andy, > > Creating new project. > > * click on newproject link. > * Fill all the information required to create project > * Click on create button. > * The project created and redirected to the project list page. > * Now if you click on refresh on the browser, same project is created again, it happens many times. > > Samething is happening with phases also. > > Please look into this issue. > > Thanks, > Rads > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From on_ofbiz at yahoo.com Fri Aug 8 14:53:01 2003 From: on_ofbiz at yahoo.com (Steaven Schwarzenegger) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]new features in next ofbiz release Message-ID: <20030808215225.29531.qmail@web80703.mail.yahoo.com> Hi Andy and David Can we all know what are the basic / advance features (fixes/changes) will be included or plan to include in the next major ofbiz release? Thanks Steaven Schwarzenegger --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030808/83e89cc7/attachment.htm From jaz at ofbiz.org Fri Aug 8 16:04:02 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]new features in next ofbiz release References: <20030808215225.29531.qmail@web80703.mail.yahoo.com> Message-ID: <062401c35e01$378a13c0$8901010a@AJZT30> Most of the new features have been mentioned or discussed on the lists. Also all the commits are available in the commits archives. Right now there are just too many to list, so as soon as we have time we will be working on the release notes. This will include a list of all new features. -Andy ----- Original Message ----- From: Steaven Schwarzenegger To: ofbiz-users Sent: Friday, August 08, 2003 5:52 PM Subject: [OFBiz-Users]new features in next ofbiz release Hi Andy and David Can we all know what are the basic / advance features (fixes/changes) will be included or plan to include in the next major ofbiz release? Thanks Steaven Schwarzenegger ------------------------------------------------------------------------------ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030808/4641f3ef/attachment.htm From jaz at ofbiz.org Fri Aug 8 16:18:02 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]new features in next ofbiz release References: <20030808215225.29531.qmail@web80703.mail.yahoo.com> Message-ID: <063501c35e03$2ebc48b0$8901010a@AJZT30> As we update the release notes, which I started today, you will be able to see them on the website. http://www.ofbiz.org/releasenotes.html#CVS ----- Original Message ----- From: Steaven Schwarzenegger To: ofbiz-users Sent: Friday, August 08, 2003 5:52 PM Subject: [OFBiz-Users]new features in next ofbiz release Hi Andy and David Can we all know what are the basic / advance features (fixes/changes) will be included or plan to include in the next major ofbiz release? Thanks Steaven Schwarzenegger ------------------------------------------------------------------------------ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030808/09f48b9a/attachment.htm From krthekeyan at verchaska.com Sat Aug 9 00:07:04 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]why is findermethods called in jsp Message-ID: <003d01c35e44$3cf2fb90$0300a8c0@vtech> Hai all, I have few queries can any one help me in finding answer for the following queries. 1)why is jsp in all the ofbiz components calling findermethod's directly. 2)I could not find a concret way of getting the flow of the ofbiz framework.Is there any website which would help me to find this. 3)when I try to debug ofbiz framework. I found the database calles are made at the viewgeneration. (i.e) there is a method called renderView(),when this method is called I could see. the data control moveing to GenericDAO class and there by calling the DB. But this is not in the case of All other .Each one differs in its own way. Is there any standard way of where to call the DataBase to the get the result. Can any one help me in this.ASAP thanks in advance, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030809/da21bee6/attachment.htm From jaz at ofbiz.org Sat Aug 9 09:11:05 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]ProductStore Message-ID: <068101c35e90$c14ff450$8901010a@AJZT30> We have created a group of entities for the new ProductStore functionality. Here are some of the details: 1) All inventory settings have been moved off the catalog and placed on the ProductStore. This frees up the catalogs so it can be used in a more organizational way rather then technical. 2) The old global shipping rate settings and tax rate settings are now handled on a per store basis. So, rather then having to use the same tax and shipping setting you now configure them per store. 3) The payment settings have been moved from the website to the store. 4) The new email notification settings (templates, subjects, from addrs, etc) are now attached to the store. You can use different email templates for different stores 5) All ecommerce.properties and order.properties settings have been moved to the ProductStore entity. Because of this we now have a UI for editing this information 6) A ProductStore is now attached to a WebSite. One store per website, and the ecommerce application components REQUIRE a store be attached in order for them to function. If there is no store associated with the website you will get errors from ecommerce. That's all I can think of right now, if there are any questions shout. We could use help testing and making sure this is ready for release, so please update from CVS and give it a spin. A lot has changed since 2.1.1 so throw this in its own directory and see it work before trying to migrate. -Andy From mconneen at infointegrators.com Sat Aug 9 12:49:05 2003 From: mconneen at infointegrators.com (Michael L.Conneen) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]CVS Head Usage Testing Comments.. Message-ID: <56C4BC16-CA9E-11D7-A334-000393B61D2E@infointegrators.com> I'm cross posting these only because it relates to some usage testing.. (and trying to figure out what to configure where ...) Platform MacOSX 10.2.6 Java: "1.4.1_01-39" CVS pulled yesterday (about noon CST I'm looking for payment setup and following previous e-mail threads.. it's moved to the store configuration.. that's a good. Scanning for documentation as to what to put where through... is a different story... I don't seem to find any.. so I need to write some.. I'm going to configure the CCPaymentServices... I've navigated to the "Payments" tab on the "Store" tab.. and I see some default data configuration for CreditCard... Am I correct in that these should be MODIFIED to point to an appropriate service (such as CCPaymentServices) ? What is also interesting is that the default catalog has store 9000 associated with it.. and store 9000 has creditcard payment services.. but no PayPal or WorldPay (via the payment window), yet the ecommerce ftl files are hard coded for the PayPal and WorldPay.. Should these be some sort of lookup instead? From http://localhost:8080/catalog/control/ EditProductStore?productStoreId=9000, selecting the link on the bottom yields: http://localhost:8080/catalog/control/ EditFacility?facilityId=WebStoreWarehouse which yields an exception of org.ofbiz.core.control.RequestHandlerException: Unknown request; this request does not exist or cannot be called directly. no error in the catalog log file: 2003-08-09 13:50:33 WebappLoader[/catalog]: Deploying class repositories to work directory /usr/local/jakarta-tomcat-4.1.24/work/Standalone/localhost/catalog 2003-08-09 13:50:33 WebappLoader[/catalog]: Deploy class files /WEB-INF/classes to /Users/mconneen/cvssf/ofbiz/catalog/webapp/WEB-INF/classes 2003-08-09 13:50:33 WebappLoader[/catalog]: Deploy JAR /WEB-INF/lib/catalog.jar to /Users/mconneen/cvssf/ofbiz/catalog/webapp/WEB-INF/lib/catalog.jar 2003-08-09 13:50:33 WebappLoader[/catalog]: Reloading checks are enabled for this Context 2003-08-09 13:50:33 StandardManager[/catalog]: Seeding random number generator class java.security.SecureRandom 2003-08-09 13:50:33 StandardManager[/catalog]: Seeding of random number generator has been completed 2003-08-09 13:50:34 StandardWrapper[/catalog:default]: Loading container servlet default 2003-08-09 13:50:34 StandardWrapper[/catalog:invoker]: Loading container servlet invoker there is an error in the catalina out though.. 1100452[ ControlServlet.java:276:DEBUG] [[[EditProductStore] Done rendering page, Servlet Finished- total:0.943,since last([EditProductStore...):0.943]] 1118578[ ControlServlet.java:156:DEBUG] [[[EditFacility] Servlet Starting, doing setup- total:0.0,since last(Begin):0.0]] 1118580[ ControlServlet.java:233:DEBUG] [[[EditFacility] Setup done, doing Event(s) and View(s)- total:0.0,since last([EditFacility] Se...):0.0]] 1118582[ ControlServlet.java:242:ERROR] Error in request handler: org.ofbiz.core.control.RequestHandlerException: Unknown request; this request does not exist or cannot be called directly. at org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:107) at org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurityFil ter.java:170) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:213) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 5) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java :172) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 4) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC onnection(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 5) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:619) at java.lang.Thread.run(Thread.java:554) 1118613[ ControlServlet.java:276:DEBUG] [[[EditFacility] Done rendering page, Servlet Finished- total:0.031,since last([EditFacility] Se...):0.031]] From jaz at ofbiz.org Sat Aug 9 13:00:02 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]CVS Head Usage Testing Comments.. References: <56C4BC16-CA9E-11D7-A334-000393B61D2E@infointegrators.com> Message-ID: <002201c35eb0$a74dba90$8901010a@AJZT30> > I'm cross posting these only because it relates to some usage testing.. > (and trying to figure out what to configure where ...) > No cross posting please. Just pick the list which is most appropiate. > Platform MacOSX 10.2.6 > Java: "1.4.1_01-39" > CVS pulled yesterday (about noon CST > > I'm looking for payment setup and following previous e-mail threads.. > it's moved to the store configuration.. that's a good. > > Scanning for documentation as to what to put where through... is a > different story... I don't seem to find any.. so I need to write some.. > > I'm going to configure the CCPaymentServices... > > I've navigated to the "Payments" tab on the "Store" tab.. and I see > some default data configuration for CreditCard... > > Am I correct in that these should be MODIFIED to point to an > appropriate service (such as CCPaymentServices) ? > They should be modified to point to the proper service for each type. So, you will need to configure the auth server, re-auth service capture service, etc. By default they point to the test services which always approve. > What is also interesting is that the default catalog has store 9000 > associated with it.. and store 9000 has creditcard payment services.. > but no PayPal or WorldPay (via the payment window), yet the ecommerce > ftl files are hard coded for the PayPal and WorldPay.. Should these > be some sort of lookup instead? > No, there are no services for worldpay or paypal. These are payment processors which require you to visit their site in order to make payments. There is no API or ability to do back end processing. They should be removed from the drop down list, but they will not do anything if defined. > From > http://localhost:8080/catalog/control/ > EditProductStore?productStoreId=9000, selecting the link on the bottom > yields: > http://localhost:8080/catalog/control/ > EditFacility?facilityId=WebStoreWarehouse > > which yields an exception of > org.ofbiz.core.control.RequestHandlerException: Unknown request; this > request does not exist or cannot be called directly. > Looks like a broken link. I'll fix that. -Andy From jonesde at ofbiz.org Sat Aug 9 23:48:01 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Test cases In-Reply-To: <20030807185203.6818.qmail@web80709.mail.yahoo.com> References: <20030807185203.6818.qmail@web80709.mail.yahoo.com> Message-ID: <3F35EA55.2080608@ofbiz.org> Having automated unit and simulated end-user test cases would be GREAT! However, we have to date failed to find financing for such an endeavor. If anyone has a ton of free time to commit or a few hundred grand lying around, do let us know.... On a more realistic note, priority for this will increase as time goes on. It really is getting to be a pain to go over contributions plus our own work in a great deal of detail. Special thanks to everyone who helps with this, by the way. Right now the real push of the project is to keep the basic development funded through contracts (implies keeping clients happy) and to get a LOT of generic business functionality developed, even everything that a good high end ERP, CRM, ecommerce, etc package would include. That done we can spend the money from our training and other contracting on documentation and automated testing instead of on "the next big thing", or the next major piece of basic business functionality (like shipments, invoices, back-order features, etc, etc). Later, -David Steaven Schwarzenegger wrote: > Each time we (basically Andy and David and you guys) fixes/change some > code to fix one thing might broke some other new/old feature(s) or pages. > Is it good idea to have some basic manual/auto test cases to run for > each major release or after few days or ask users to run these test > frequently so that we break minimum. > Thanks, > Steaven Schwarzenegger > > ------------------------------------------------------------------------ > Do you Yahoo!? > Yahoo! SiteBuilder > - Free, > easy-to-use web site design software From jonesde at ofbiz.org Sun Aug 10 00:11:01 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Assigning Task to another user In-Reply-To: <20030808153542.90320.qmail@web80702.mail.yahoo.com> References: <20030808153542.90320.qmail@web80702.mail.yahoo.com> Message-ID: <3F35EFBB.6050506@ofbiz.org> If you are asking what I think you are asking, the answer is that the functionality may not be totally complete. There is a lot of good stuff in the WorkEffort app, but it isn't as polished or complete as many of the other apps because we haven't really had a lot of paid work based on it, so what you see is a combination of stuff we have done because we think it is necessary for a good, complete systrem and lots of contributions from various people who are using or are interested in it. The idea is to have a Party/Role page for the task where you can see all parties associated with the WorkEffort for the task and the roles they are in, and also be able to add to or modify that information. Later, -David Steaven Schwarzenegger wrote: > Like Project why can't we able to assign a Task created by one user to > another user? Like there is a select option for Project with which I can > Assign a project and then delegate it so that the assined person can see > the project in his Project list, why not same thing for task. > Thanks > Steaven Schwarzenegger > > > ------------------------------------------------------------------------ > Do you Yahoo!? > Yahoo! SiteBuilder > - Free, > easy-to-use web site design software From mconneen at infointegrators.com Sun Aug 10 10:23:02 2003 From: mconneen at infointegrators.com (Michael L.Conneen) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Current CVS Head Testing Message-ID: <1FC0B6ED-CB3E-11D7-B7B0-000393B61D2E@infointegrators.com> Folks, O.K... I didn't cross post this time.. and as it was answered on the user list.. I presume that is the appropriate list for this topic.... and currently.. I'm more of a "user" then developer... but this just where I am in the learning curve.. whew.... Platform: Mac OSX 10.2.6 Java :"1.4.1_01-39" Tomcat : 4.1.24 DB MySQL: mysqladmin Ver 8.23 Distrib 3.23.52, for apple-darwin6.1 on powerpc I'm trying to complete an OFFLINE order (that's the mail check option) using cvs head from Friday (about noon.. not sure how to get better version for you.. though that can be a whole other topic...). Here is what I did... Shut everything down.. Fired everything up.. http://localhost:8080/ecommerce It said I was Joe Fubar... (a previously created user.. so I said NO).. Selected the first item GZ-2644 - Round Gizmo Selected checkout logged in as jfubar (I hope nobody is really named that.. :) Selected UPS Ground Confirmed shipping address Selected mail check submit order confirm order Boom.. Error calling event: org.ofbiz.core.event.EventHandlerException: Problems processing event: java.lang.IllegalStateException: Exception on rollback:java.rmi.RemoteException: rollback: Unexpected XAException:-4 (Exception on rollback:java.rmi.RemoteException: rollback: Unexpected XAException:-4) The RMI reference confuse me. I haven't registered anything for RMI.. so I'm note sure that that means. Also, I'm note sure what the TransactionUtil.setRollbackOnly is telling me. The complete set of ofbiz logs can be found at: http://mconneen.infointegrators.net/ofbizlogs20030810_0900.jar Following, please find (1) stacktrace for the ofbiz.log file: (2) list of $CATALINA_HOME/shared/lib 153642[JotmConnectionFactory.java:58 :DEBUG] localmysql pool size: 2 153654[ SQLProcessor.java:223:DEBUG] SQLProcessor:connection() : manualTx=true 153658[ SQLProcessor.java:266:DEBUG] [SQLProcessor.getConnection] : active transaction 153660[ SQLProcessor.java:275:DEBUG] [SQLProcessor.getConnection] : con=org.enhydra.jdbc.standard.StandardXAConnectionHandle@7aac60 153663[ SQLProcessor.java:304:DEBUG] [SQLProcessor.prepareStatement] sql=SELECT WORK_EFFORT_TYPE_ID, WORK_EFFORT_PURPOSE_TYPE_ID, WORK_EFFORT_PARENT_ID, WORKFLOW_PACKAGE_ID, WORKFLOW_PACKAGE_VERSION, WORKFLOW_PROCESS_ID, WORKFLOW_PROCESS_VERSION, WORKFLOW_ACTIVITY_ID, CURRENT_STATUS_ID, LAST_STATUS_UPDATE, UNIVERSAL_ID, SCOPE_ENUM_ID, PRIORITY, PERCENT_COMPLETE, WORK_EFFORT_NAME, DESCRIPTION, LOCATION_DESC, REVISION_NUMBER, FIXED_ASSET_ID, FACILITY_ID, CREATED_DATE, CREATED_BY_USER_LOGIN, LAST_MODIFIED_DATE, LAST_MODIFIED_BY_USER_LOGIN, ESTIMATED_START_DATE, ESTIMATED_COMPLETION_DATE, ESTIMATED_MILLI_SECONDS, TOTAL_MILLI_SECONDS_ALLOWED, TOTAL_MONEY_ALLOWED, MONEY_UOM_ID, ACTUAL_START_DATE, ACTUAL_COMPLETION_DATE, ACTUAL_MILLI_SECONDS, SPECIAL_TERMS, TIME_TRANSPARENCY, INFO_URL, RECURRENCE_INFO_ID, RUNTIME_DATA_ID, NOTE_ID, SERVICE_LOADER_NAME, QUANTITY_TO_PRODUCE, QUANTITY_PRODUCED, QUANTITY_REJECTED, SOURCE_REFERENCE_ID FROM WORK_EFFORT WHERE WORK_EFFORT_ID=? 153669[ SQLProcessor.java:315:DEBUG] [SQLProcessor.prepareStatement] _ps=org.enhydra.jdbc.standard.StandardXAPreparedStatement@41d81f 153675[ SQLProcessor.java:165:DEBUG] SQLProcessor: result close() _manualTX=false 153680[ SQLProcessor.java:176:DEBUG] SQLProcessor: preparedStatement close() _manualTX=false 153682[ SQLProcessor.java:304:DEBUG] [SQLProcessor.prepareStatement] sql=INSERT INTO WORK_EFFORT (WORK_EFFORT_ID, WORK_EFFORT_TYPE_ID, WORK_EFFORT_PURPOSE_TYPE_ID, WORK_EFFORT_PARENT_ID, WORKFLOW_PACKAGE_ID, WORKFLOW_PACKAGE_VERSION, WORKFLOW_PROCESS_ID, WORKFLOW_PROCESS_VERSION, WORKFLOW_ACTIVITY_ID, CURRENT_STATUS_ID, LAST_STATUS_UPDATE, UNIVERSAL_ID, SCOPE_ENUM_ID, PRIORITY, PERCENT_COMPLETE, WORK_EFFORT_NAME, DESCRIPTION, LOCATION_DESC, REVISION_NUMBER, FIXED_ASSET_ID, FACILITY_ID, CREATED_DATE, CREATED_BY_USER_LOGIN, LAST_MODIFIED_DATE, LAST_MODIFIED_BY_USER_LOGIN, ESTIMATED_START_DATE, ESTIMATED_COMPLETION_DATE, ESTIMATED_MILLI_SECONDS, TOTAL_MILLI_SECONDS_ALLOWED, TOTAL_MONEY_ALLOWED, MONEY_UOM_ID, ACTUAL_START_DATE, ACTUAL_COMPLETION_DATE, ACTUAL_MILLI_SECONDS, SPECIAL_TERMS, TIME_TRANSPARENCY, INFO_URL, RECURRENCE_INFO_ID, RUNTIME_DATA_ID, NOTE_ID, SERVICE_LOADER_NAME, QUANTITY_TO_PRODUCE, QUANTITY_PRODUCED, QUANTITY_REJECTED, SOURCE_REFERENCE_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) 153751[ SQLProcessor.java:198:DEBUG] SQLProcessor: connection close() _manualTX=false 153755[ TransactionUtil.java:204:DEBUG] [TransactionUtil.setRollbackOnly] current status code : 0 153769[ TransactionUtil.java:209:INFO ] [TransactionUtil.setRollbackOnly] transaction roll back only set 153774[ TransactionUtil.java:175:DEBUG] [TransactionUtil.rollback] current status code : 1 153781[ TransactionUtil.java:181:ERROR] [TransactionUtil.rollback] java.lang.Exception: Stack Trace at org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:180) at org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:162) at org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:162) at org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:73) at org.ofbiz.core.service.ServiceDispatcher.runAsync(ServiceDispatcher.java :546) at org.ofbiz.core.service.GenericDispatcher.runAsync(GenericDispatcher.java :124) at org.ofbiz.core.service.eca.ServiceEcaAction.runAction(ServiceEcaAction.j ava:80) at org.ofbiz.core.service.eca.ServiceEcaRule.eval(ServiceEcaRule.java:116) at org.ofbiz.core.service.eca.ServiceEcaUtil.evalRules(ServiceEcaUtil.java: 147) at org.ofbiz.core.service.ServiceDispatcher.runSync(ServiceDispatcher.java: 266) at org.ofbiz.core.service.GenericDispatcher.runSync(GenericDispatcher.java: 93) at org.ofbiz.commonapp.order.shoppingcart.CheckOutHelper.createOrder(CheckO utHelper.java:217) at org.ofbiz.commonapp.order.shoppingcart.CheckOutEvents.createOrder(CheckO utEvents.java:130) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav a:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor Impl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.ofbiz.core.event.JavaEventHandler.invoke(JavaEventHandler.java:90) at org.ofbiz.core.event.JavaEventHandler.invoke(JavaEventHandler.java:76) at org.ofbiz.core.control.RequestHandler.runEvent(RequestHandler.java:345) at org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:235) at org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurityFil ter.java:170) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:213) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 5) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java :172) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 4) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC onnection(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 5) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:619) at java.lang.Thread.run(Thread.java:554) 153816[ JavaEventHandler.java:98 :ERROR] Problems Processing Event java.lang.IllegalStateException: Exception on rollback:java.rmi.RemoteException: rollback: Unexpected XAException:-4 at org.objectweb.jotm.TransactionImpl.rollback(TransactionImpl.java:447) at org.objectweb.jotm.Current.rollback(Current.java:303) at org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:183) at org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:162) at org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:162) at org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:73) at org.ofbiz.core.service.ServiceDispatcher.runAsync(ServiceDispatcher.java :546) at org.ofbiz.core.service.GenericDispatcher.runAsync(GenericDispatcher.java :124) at org.ofbiz.core.service.eca.ServiceEcaAction.runAction(ServiceEcaAction.j ava:80) at org.ofbiz.core.service.eca.ServiceEcaRule.eval(ServiceEcaRule.java:116) at org.ofbiz.core.service.eca.ServiceEcaUtil.evalRules(ServiceEcaUtil.java: 147) at org.ofbiz.core.service.ServiceDispatcher.runSync(ServiceDispatcher.java: 266) at org.ofbiz.core.service.GenericDispatcher.runSync(GenericDispatcher.java: 93) at org.ofbiz.commonapp.order.shoppingcart.CheckOutHelper.createOrder(CheckO utHelper.java:217) at org.ofbiz.commonapp.order.shoppingcart.CheckOutEvents.createOrder(CheckO utEvents.java:130) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav a:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor Impl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.ofbiz.core.event.JavaEventHandler.invoke(JavaEventHandler.java:90) at org.ofbiz.core.event.JavaEventHandler.invoke(JavaEventHandler.java:76) at org.ofbiz.core.control.RequestHandler.runEvent(RequestHandler.java:345) at org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:235) at org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurityFil ter.java:170) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:213) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 5) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java :172) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 4) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC onnection(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 5) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:619) at java.lang.Thread.run(Thread.java:554) 153821[ RequestHandler.java:257:DEBUG] [Response Qualified]: view:checkout 153822[ RequestHandler.java:261:DEBUG] [Event Response Mapping]: view:checkout 153824[ RequestHandler.java:267:DEBUG] [RequestHandler]: previousRequest - null (null) 153825[ RequestHandler.java:318:DEBUG] [RequestHandler.doRequest]: Response is a view. 153827[ RequestManager.java:273:DEBUG] Allow External View: true 153828[ RequestHandler.java:429:INFO ] servletName=control, view=checkout 153830[ RequestHandler.java:435:DEBUG] [Getting View Map]: checkout 153832[ RequestHandler.java:454:DEBUG] [Mapped To]: /order/checkoutreview.ftl 153833[ RequestHandler.java:487:DEBUG] The ContentType for the checkout view is: text/html 153835[ RequestHandler.java:490:DEBUG] Rendering view [/order/checkoutreview.ftl] of type [jpublish] 153853[ OfbizBshBsfEngine.java:210:DEBUG] Caching BSH script at: /Users/mconneen/cvssf/ofbiz/ecommerce/webapp/WEB-INF/actions/order/ checkoutreview.bsh 15 My $CATALINA_HOME/shared/lib consists of... -rw-r--r-- 1 user5678 devgp 479386 Aug 9 10:28 DataVision.jar -rw-r--r-- 1 user5678 devgp 146457 Aug 9 10:28 EdenLib.jar -rw-r--r-- 1 user5678 devgp 168221 Aug 9 10:28 JPublish.jar -rw-r--r-- 1 user5678 devgp 17305 Aug 9 10:28 MinML2.jar -rw-r--r-- 1 user5678 devgp 1101593 Aug 9 10:28 axis.jar -rw-r--r-- 1 user5678 devgp 1941296 Aug 9 10:28 batik.jar -rw-r--r-- 1 user5678 devgp 105573 Aug 9 10:28 bsf.jar -rw-r--r-- 1 user5678 devgp 294389 Aug 9 10:28 bsh.jar -rw-r--r-- 1 user5678 devgp 151846 Aug 9 10:28 cactus.jar -rw-r--r-- 1 user5678 devgp 116154 Aug 9 10:28 carol.jar -rw-r--r-- 1 user5678 devgp 11477 Aug 9 10:28 clutil.jar -rw-r--r-- 1 user5678 devgp 526382 Aug 9 10:24 commonapp.jar -rw-r--r-- 1 user5678 devgp 118483 Aug 9 10:28 commons-beanutils.jar -rw-r--r-- 1 user5678 devgp 18013 Aug 9 10:28 commons-cli.jar -rw-r--r-- 1 user5678 devgp 56570 Aug 9 10:28 commons-digester.jar -rw-r--r-- 1 user5678 devgp 62512 Aug 9 10:28 commons-discovery.jar -rw-r--r-- 1 user5678 devgp 14463 Aug 9 10:28 commons-fileupload.jar -rw-r--r-- 1 user5678 devgp 80927 Aug 9 10:28 commons-httpclient.jar -rw-r--r-- 1 user5678 devgp 154523 Aug 9 10:28 commons-vfs.jar -rw-r--r-- 1 user5678 devgp 458199 Aug 9 10:28 cvslib.jar -rw-r--r-- 1 user5678 devgp 456914 Aug 9 10:28 dom4j.jar -rw-r--r-- 1 user5678 devgp 1694488 Aug 9 10:28 fop.jar -rw-r--r-- 1 user5678 devgp 557728 Aug 9 10:28 freemarker.jar -rw-r--r-- 1 user5678 devgp 30163 Aug 9 10:28 gnu-regexp-1.1.4.jar -rw-r--r-- 1 user5678 devgp 556504 Aug 9 10:28 itext-0.96.jar -rw-r--r-- 1 user5678 devgp 624960 Aug 9 10:28 jacl.jar -rw-r--r-- 1 user5678 devgp 65368 Aug 9 10:28 jakarta-oro-2.0.6.jar -rw-r--r-- 1 user5678 devgp 465718 Aug 9 10:28 jakarta-poi-1.5.1-final.jar -rw-r--r-- 1 user5678 devgp 80721 Aug 9 10:28 jasperreports-applet.jar -rw-r--r-- 1 user5678 devgp 425503 Aug 9 10:28 jasperreports.jar -rw-r--r-- 1 user5678 devgp 35635 Aug 9 10:28 jaxrpc.jar -rw-r--r-- 1 user5678 devgp 65753 Aug 9 10:28 jcalendar.jar -rw-r--r-- 1 user5678 devgp 27724 Aug 9 10:28 jms_1.0.2a.jar -rw-r--r-- 1 user5678 devgp 11428 Aug 9 10:28 jonas_timer.jar -rw-r--r-- 1 user5678 devgp 63970 Aug 9 10:28 jotm.jar -rw-r--r-- 1 user5678 devgp 42654 Aug 9 10:28 jotm_iiop_stubs.jar -rw-r--r-- 1 user5678 devgp 5824 Aug 9 10:28 jotm_jrmp_stubs.jar -rw-r--r-- 1 user5678 devgp 796402 Aug 9 10:28 jruby.jar -rw-r--r-- 1 user5678 devgp 596528 Aug 9 10:28 js.jar -rw-r--r-- 1 user5678 devgp 117249 Aug 9 10:28 junit.jar -rw-r--r-- 1 user5678 devgp 596561 Aug 9 10:28 jython.jar -rw-r--r-- 1 user5678 devgp 350677 Aug 9 10:28 log4j.jar -rw-r--r-- 1 user5678 devgp 136498 Aug 9 10:28 lucene-1.2.jar -rw-r--r-- 1 user5678 devgp 125901 Aug 9 10:28 mm.mysql-2.0.14-bin.jar -rw-r--r-- 1 user5678 devgp 2864 Aug 9 10:28 objectweb-datasource.jar -rw-r--r-- 1 user5678 devgp 19742 Aug 9 10:24 ofbcore-datafile.jar -rw-r--r-- 1 user5678 devgp 221455 Aug 9 10:24 ofbcore-entity.jar -rw-r--r-- 1 user5678 devgp 16498 Aug 9 10:24 ofbcore-extentity.jar -rw-r--r-- 1 user5678 devgp 49905 Aug 9 10:24 ofbcore-extutil.jar -rw-r--r-- 1 user5678 devgp 216400 Aug 9 10:24 ofbcore-minilang.jar -rw-r--r-- 1 user5678 devgp 102645 Aug 9 10:24 ofbcore-rules.jar -rw-r--r-- 1 user5678 devgp 115239 Aug 9 10:24 ofbcore-service.jar -rw-r--r-- 1 user5678 devgp 170052 Aug 9 10:24 ofbcore-share.jar -rw-r--r-- 1 user5678 devgp 165253 Aug 9 10:24 ofbcore-webapp.jar -rw-r--r-- 1 user5678 devgp 55390 Aug 9 10:24 ofbcore-widget.jar -rw-r--r-- 1 user5678 devgp 118640 Aug 9 10:24 ofbcore-workflow.jar -rw-r--r-- 1 user5678 devgp 145744 Aug 9 10:28 ots-jts_1.0.jar -rw-r--r-- 1 user5678 devgp 6635 Aug 9 10:28 remoteExperimentServer.jar -rw-r--r-- 1 user5678 devgp 18463 Aug 9 10:28 saaj.jar -rw-r--r-- 1 user5678 devgp 347357 Aug 9 10:28 velocity-1.3.jar -rw-r--r-- 1 user5678 devgp 506057 Aug 9 10:28 velocity-dep-1.3.jar -rw-r--r-- 1 user5678 devgp 1097886 Aug 9 10:28 weka.jar -rw-r--r-- 1 user5678 devgp 109356 Aug 9 10:28 wsdl4j.jar -rw-r--r-- 1 user5678 devgp 983377 Jun 24 18:50 xalan.jar -rw-r--r-- 1 user5678 devgp 84343 Aug 9 10:28 xapool.jar From jaz at ofbiz.org Sun Aug 10 10:39:02 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Current CVS Head Testing References: <1FC0B6ED-CB3E-11D7-B7B0-000393B61D2E@infointegrators.com> Message-ID: <004901c35f66$32596c50$8901010a@AJZT30> > > O.K... I didn't cross post this time.. and as it was answered on the > user list.. I presume that is the appropriate list for this topic.... > and currently.. I'm more of a "user" then developer... but this just > where I am in the learning curve.. whew.... > Well, this one is a toss up. Could go either way actually. Here is the rule of thumb. If the message has anything to do with usage, i.e. using the entity engine, service engine, ecommerce feature, the new product store features, etc it goes to OFBiz-Users. If the message is related to development, bugs, feature request, etc then it goes to OFBiz-Devel. Anyway, on to the issue at hand.... > I'm trying to complete an OFFLINE order (that's the mail check option) > using cvs head from Friday (about noon.. not sure how to get better > version for you.. though that can be a whole other topic...). > > Boom.. > Error calling event: org.ofbiz.core.event.EventHandlerException: > Problems processing event: java.lang.IllegalStateException: Exception > on rollback:java.rmi.RemoteException: rollback: Unexpected > XAException:-4 (Exception on rollback:java.rmi.RemoteException: > rollback: Unexpected XAException:-4) > Yuk, I hate these. Not very informative... > The RMI reference confuse me. I haven't registered anything for RMI.. > so I'm note sure that that means. Also, I'm note sure what the > TransactionUtil.setRollbackOnly > Don't let it, its the transaction manager which uses RMI, and it is just a standard exception. > 153781[ TransactionUtil.java:181:ERROR] [TransactionUtil.rollback] > java.lang.Exception: Stack Trace > at > org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:180) > at > org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:162) > at > org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:162) > at > org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:73) > at Okay, here is some interesting info.. It failed on like 162 of WorkflowEngine.... Which is where it tries to create the process from the process manager. There should have been a GenericServiceException thrown in there somewhere which should have more information on why the process couldn't be created. Is this a fresh database? Or is this in attempt to migrate data from 2.1.1? From what I see it looks like the order should have been created.. Is this true? -Andy From mconneen at infointegrators.com Sun Aug 10 11:41:02 2003 From: mconneen at infointegrators.com (Michael L.Conneen) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Current CVS Head Testing In-Reply-To: <004901c35f66$32596c50$8901010a@AJZT30> Message-ID: <69E375E8-CB5F-11D7-8144-000393B61D2E@infointegrators.com> Andy, Comments in line.. look for ... On Sunday, Aug 10, 2003, at 12:38 America/Chicago, Andy Zeneski wrote: >> >> O.K... I didn't cross post this time.. and as it was answered on the >> user list.. I presume that is the appropriate list for this topic.... >> and currently.. I'm more of a "user" then developer... but this just >> where I am in the learning curve.. whew.... >> > > Well, this one is a toss up. Could go either way actually. Here is the > rule > of thumb. If the message has anything to do with usage, i.e. using the > entity engine, service engine, ecommerce feature, the new product store > features, etc it goes to OFBiz-Users. > > If the message is related to development, bugs, feature request, etc > then it > goes to OFBiz-Devel. Story of my life... I usually guess wrong.. :( > > Anyway, on to the issue at hand.... > >> I'm trying to complete an OFFLINE order (that's the mail check option) >> using cvs head from Friday (about noon.. not sure how to get better >> version for you.. though that can be a whole other topic...). >> >> Boom.. >> Error calling event: org.ofbiz.core.event.EventHandlerException: >> Problems processing event: java.lang.IllegalStateException: Exception >> on rollback:java.rmi.RemoteException: rollback: Unexpected >> XAException:-4 (Exception on rollback:java.rmi.RemoteException: >> rollback: Unexpected XAException:-4) >> > > Yuk, I hate these. Not very informative... > >> The RMI reference confuse me. I haven't registered anything for RMI.. >> so I'm note sure that that means. Also, I'm note sure what the >> TransactionUtil.setRollbackOnly >> > > Don't let it, its the transaction manager which uses RMI, and it is > just a > standard exception. > >> 153781[ TransactionUtil.java:181:ERROR] [TransactionUtil.rollback] >> java.lang.Exception: Stack Trace >> at >> org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:18 >> 0) >> at >> org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:16 >> 2) >> at >> org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:16 >> 2) >> at >> org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:73 >> ) >> at > > Okay, here is some interesting info.. It failed on like 162 of > WorkflowEngine.... Which is where it tries to create the process from > the > process manager. There should have been a GenericServiceException > thrown in > there somewhere which should have more information on why the process > couldn't be created. Hmm... :grep -i GenericServiceException *.* doesn't get a hit on anything. > Is this a fresh database? Clean database. Only modification made was the addition of my old pal Joe FuBar! > Or is this in attempt to > migrate data from 2.1.1? Not yet... I thought I would put the current version through a normal test to see if everything is working as expected... I've learned the hard way (sort of), to try to get a baseline before I add things. I'm not always smart enough to remember.. but I did this time. > From what I see it looks like the order should have > been created.. Is this true? Hmm... looking at http://localhost:8080/ordermgr/control/orderstats It looks like it did.. However, checking http://localhost:8080/ordermgr/control/tasklist yields an error : Error: The application script threw an exception: org.ofbiz.core.entity.GenericDataSourceException: SQL Exception while executing the following:SELECT OH.ORDER_ID AS ORDER_ID, OH.ORDER_TYPE_ID AS ORDER_TYPE_ID, OH.ORDER_DATE AS ORDER_DATE, OH.ENTRY_DATE AS ENTRY_DATE, OH.GRAND_TOTAL AS GRAND_TOTAL, OHR.ROLE_TYPE_ID AS ORDER_ROLE_TYPE_ID, OHR.PARTY_ID AS CUSTOMER_PARTY_ID, PS.FIRST_NAME AS CUSTOMER_FIRST_NAME, PS.LAST_NAME AS CUSTOMER_LAST_NAME, WE.WORK_EFFORT_ID AS WORK_EFFORT_ID, WE.WORK_EFFORT_TYPE_ID AS WORK_EFFORT_TYPE_ID, WE.CURRENT_STATUS_ID AS CURRENT_STATUS_ID, WE.LAST_STATUS_UPDATE AS LAST_STATUS_UPDATE, WE.PRIORITY AS PRIORITY, WE.WORK_EFFORT_NAME AS WORK_EFFORT_NAME, WE.DESCRIPTION AS DESCRIPTION, WE.CREATED_DATE AS CREATED_DATE, WE.CREATED_BY_USER_LOGIN AS CREATED_BY_USER_LOGIN, WE.LAST_MODIFIED_DATE AS LAST_MODIFIED_DATE, WE.LAST_MODIFIED_BY_USER_LOGIN AS LAST_MODIFIED_BY_USER_LOGIN, WE.ESTIMATED_START_DATE AS ESTIMATED_START_DATE, WE.ESTIMATED_COMPLETION_DATE AS ESTIMATED_COMPLETION_DATE, WE.ACTUAL_START_DATE AS ACTUAL_START_DATE, WE.ACTUAL_COMPLETION_DATE AS ACTUAL_COMPLETION_DATE, WE.INFO_URL AS INFO_URL, WEPA.PARTY_ID AS WEPA_PARTY_ID, WEPA.ROLE_TYPE_ID AS ROLE_TYPE_ID, WEPA.FROM_DATE AS FROM_DATE, WEPA.THRU_DATE AS THRU_DATE, WEPA.STATUS_ID AS STATUS_ID, WEPA.STATUS_DATE_TIME AS STATUS_DATE_TIME FROM PERSON PS, WORK_EFFORT_PARTY_ASSIGNMENT WEPA, WORK_EFFORT WE, ORDER_ROLE OHR, ORDER_HEADER OH WHERE (((WEPA.STATUS_ID = ? ) AND (WEPA.PARTY_ID = ? )) AND ((OHR.ROLE_TYPE_ID = ? ) OR (OHR.ROLE_TYPE_ID IS NULL ))) AND (OH.ORDER_ID= (+) OHR.ORDER_ID AND OHR.PARTY_ID= (+) PS.PARTY_ID AND OH.ORDER_ID=WE.SOURCE_REFERENCE_ID AND WE.WORK_EFFORT_ID=WEPA.WORK_EFFORT_ID) ORDER BY WE.CURRENT_STATUS_ID, WE.PRIORITY DESC, OH.ORDER_DATE (Syntax error or access violation: You have an error in your SQL syntax near '+) OHR.ORDER_ID AND OHR.PARTY_ID= (+) PS.PARTY_ID AND OH.ORDER_ID=WE.SOURCE_REFE' at line 1) BSF info: /Users/mconneen/cvssf/ofbiz/ordermgr/webapp/WEB-INF/actions/task/ ordertasklist.bsh at line: 0 column: 0 .. Double hmm... we'll come back to that one.. one thing at a time.. . Yes... going through the party manager... then clicking orders.. it does appear to have been created. However.. I've been using the same product over and over again.. Hmmm. O.K.. Yes.. doing it with a different product id (wg-5569), I get the same XA error.. and the order DOES show in the order profile. Double Hmmm.. I'm also seeing things magically drop out of the shopping cart... and I even saw an item pop in there that I never added.. I think I'll shut down.. drop the database and start over.. but as I've done this several times... I'm anticipating a similar result. Any ideas on how I can capture more information and provide it to the developers? > > -Andy > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/ > direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > From jaz at ofbiz.org Sun Aug 10 11:47:05 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Current CVS Head Testing References: <69E375E8-CB5F-11D7-8144-000393B61D2E@infointegrators.com> Message-ID: <005b01c35f6f$b2995e30$8901010a@AJZT30> Try changing the join-style from theta-oracle to ansi (in entityengine.xml) and see if that fixes this new error. -Andy ----- Original Message ----- From: "Michael L.Conneen" To: Sent: Sunday, August 10, 2003 2:21 PM Subject: Re: [OFBiz-Users]Current CVS Head Testing > Andy, > Comments in line.. look for ... > On Sunday, Aug 10, 2003, at 12:38 America/Chicago, Andy Zeneski wrote: > > >> > >> O.K... I didn't cross post this time.. and as it was answered on the > >> user list.. I presume that is the appropriate list for this topic.... > >> and currently.. I'm more of a "user" then developer... but this just > >> where I am in the learning curve.. whew.... > >> > > > > Well, this one is a toss up. Could go either way actually. Here is the > > rule > > of thumb. If the message has anything to do with usage, i.e. using the > > entity engine, service engine, ecommerce feature, the new product store > > features, etc it goes to OFBiz-Users. > > > > If the message is related to development, bugs, feature request, etc > > then it > > goes to OFBiz-Devel. > > Story of my life... I usually guess wrong.. :( > > > > > Anyway, on to the issue at hand.... > > > >> I'm trying to complete an OFFLINE order (that's the mail check option) > >> using cvs head from Friday (about noon.. not sure how to get better > >> version for you.. though that can be a whole other topic...). > >> > >> Boom.. > >> Error calling event: org.ofbiz.core.event.EventHandlerException: > >> Problems processing event: java.lang.IllegalStateException: Exception > >> on rollback:java.rmi.RemoteException: rollback: Unexpected > >> XAException:-4 (Exception on rollback:java.rmi.RemoteException: > >> rollback: Unexpected XAException:-4) > >> > > > > Yuk, I hate these. Not very informative... > > > >> The RMI reference confuse me. I haven't registered anything for RMI.. > >> so I'm note sure that that means. Also, I'm note sure what the > >> TransactionUtil.setRollbackOnly > >> > > > > Don't let it, its the transaction manager which uses RMI, and it is > > just a > > standard exception. > > > >> 153781[ TransactionUtil.java:181:ERROR] [TransactionUtil.rollback] > >> java.lang.Exception: Stack Trace > >> at > >> org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:18 > >> 0) > >> at > >> org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java:16 > >> 2) > >> at > >> org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:16 > >> 2) > >> at > >> org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java:73 > >> ) > >> at > > > > Okay, here is some interesting info.. It failed on like 162 of > > WorkflowEngine.... Which is where it tries to create the process from > > the > > process manager. There should have been a GenericServiceException > > thrown in > > there somewhere which should have more information on why the process > > couldn't be created. > > Hmm... > :grep -i GenericServiceException *.* > > doesn't get a hit on anything. > > > Is this a fresh database? > > Clean database. Only modification made was the addition of my old pal > Joe FuBar! > > > Or is this in attempt to > > migrate data from 2.1.1? > > Not yet... I thought I would put the current version through a normal > test to see if everything is working as expected... I've learned the > hard way (sort of), to try to get a baseline before I add things. I'm > not always smart enough to remember.. but I did this time. > > > From what I see it looks like the order should have > > been created.. Is this true? > > Hmm... looking at > http://localhost:8080/ordermgr/control/orderstats > > It looks like it did.. > > However, checking > http://localhost:8080/ordermgr/control/tasklist > > yields an error : > Error: The application script threw an exception: > org.ofbiz.core.entity.GenericDataSourceException: SQL Exception while > executing the following:SELECT OH.ORDER_ID AS ORDER_ID, > OH.ORDER_TYPE_ID AS ORDER_TYPE_ID, OH.ORDER_DATE AS ORDER_DATE, > OH.ENTRY_DATE AS ENTRY_DATE, OH.GRAND_TOTAL AS GRAND_TOTAL, > OHR.ROLE_TYPE_ID AS ORDER_ROLE_TYPE_ID, OHR.PARTY_ID AS > CUSTOMER_PARTY_ID, PS.FIRST_NAME AS CUSTOMER_FIRST_NAME, PS.LAST_NAME > AS CUSTOMER_LAST_NAME, WE.WORK_EFFORT_ID AS WORK_EFFORT_ID, > WE.WORK_EFFORT_TYPE_ID AS WORK_EFFORT_TYPE_ID, WE.CURRENT_STATUS_ID AS > CURRENT_STATUS_ID, WE.LAST_STATUS_UPDATE AS LAST_STATUS_UPDATE, > WE.PRIORITY AS PRIORITY, WE.WORK_EFFORT_NAME AS WORK_EFFORT_NAME, > WE.DESCRIPTION AS DESCRIPTION, WE.CREATED_DATE AS CREATED_DATE, > WE.CREATED_BY_USER_LOGIN AS CREATED_BY_USER_LOGIN, > WE.LAST_MODIFIED_DATE AS LAST_MODIFIED_DATE, > WE.LAST_MODIFIED_BY_USER_LOGIN AS LAST_MODIFIED_BY_USER_LOGIN, > WE.ESTIMATED_START_DATE AS ESTIMATED_START_DATE, > WE.ESTIMATED_COMPLETION_DATE AS ESTIMATED_COMPLETION_DATE, > WE.ACTUAL_START_DATE AS ACTUAL_START_DATE, WE.ACTUAL_COMPLETION_DATE AS > ACTUAL_COMPLETION_DATE, WE.INFO_URL AS INFO_URL, WEPA.PARTY_ID AS > WEPA_PARTY_ID, WEPA.ROLE_TYPE_ID AS ROLE_TYPE_ID, WEPA.FROM_DATE AS > FROM_DATE, WEPA.THRU_DATE AS THRU_DATE, WEPA.STATUS_ID AS STATUS_ID, > WEPA.STATUS_DATE_TIME AS STATUS_DATE_TIME FROM PERSON PS, > WORK_EFFORT_PARTY_ASSIGNMENT WEPA, WORK_EFFORT WE, ORDER_ROLE OHR, > ORDER_HEADER OH WHERE (((WEPA.STATUS_ID = ? ) AND (WEPA.PARTY_ID = ? > )) AND ((OHR.ROLE_TYPE_ID = ? ) OR (OHR.ROLE_TYPE_ID IS NULL ))) AND > (OH.ORDER_ID= (+) OHR.ORDER_ID AND OHR.PARTY_ID= (+) PS.PARTY_ID AND > OH.ORDER_ID=WE.SOURCE_REFERENCE_ID AND > WE.WORK_EFFORT_ID=WEPA.WORK_EFFORT_ID) ORDER BY WE.CURRENT_STATUS_ID, > WE.PRIORITY DESC, OH.ORDER_DATE (Syntax error or access violation: You > have an error in your SQL syntax near '+) OHR.ORDER_ID AND > OHR.PARTY_ID= (+) PS.PARTY_ID AND OH.ORDER_ID=WE.SOURCE_REFE' at line > 1) BSF info: > /Users/mconneen/cvssf/ofbiz/ordermgr/webapp/WEB-INF/actions/task/ > ordertasklist.bsh at line: 0 column: 0 > > .. Double hmm... we'll come back to that one.. one thing at a time.. . > > Yes... going through the party manager... then clicking orders.. it > does appear to have been created. However.. I've been using the same > product over and over again.. Hmmm. > > O.K.. Yes.. doing it with a different product id (wg-5569), I get the > same XA error.. and the order DOES show in the order profile. Double > Hmmm.. > > I'm also seeing things magically drop out of the shopping cart... and I > even saw an item pop in there that I never added.. I think I'll shut > down.. drop the database and start over.. but as I've done this several > times... I'm anticipating a similar result. > > Any ideas on how I can capture more information and provide it to the > developers? > > > > > > > -Andy > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > http://aspnet.click-url.com/go/psa00100003ave/ > > direct;at.aspnet_072303_01/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From mconneen at infointegrators.com Sun Aug 10 12:20:08 2003 From: mconneen at infointegrators.com (Michael L.Conneen) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]CVS Head Testing.. Bug New User Message-ID: <9AE1B1A4-CB65-11D7-8144-000393B61D2E@infointegrators.com> Folks, I'd rather keep posting this as I find them.. but I'm wondering if these should be posted in a bug list? I suspect not until they are verified.... Here goes.. Platform: Mac OSX 10.2.6 Java :"1.4.1_01-39" Tomcat : 4.1.24 DB MySQL: mysqladmin Ver 8.23 Distrib 3.23.52, for apple-darwin6.1 on powerpc Browser : Safari 1.0 v85 Here is what I did.. dropped database create database use http://webtools to load default data... I had verbose debugging turned ON.. so the transaction didn't complete within 60 seconds and Safari throw up an error message.. Bummer.. wonder where I configure that! Started over.. turned off verbose debugging. dropped database create database use http://webtools to load default data... viewed webtools via admin/ofbiz.. Looks normal.. logged out.. went to http://localhost:8080/ecommerce didn't say I was the administrator.. so that is a good thing.. added first product to cart. clicked [check out] from the cart summary didn't know who I was.. so created new account... good Ol Joe.... Clicked "save" ..shopping cart is now empty... log back in as Joe... and cart still empty. I expected to ... add to cart create new account proceed to check out.. From mconneen at infointegrators.com Sun Aug 10 12:20:09 2003 From: mconneen at infointegrators.com (Michael L.Conneen) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Current CVS Head Testing In-Reply-To: <005b01c35f6f$b2995e30$8901010a@AJZT30> Message-ID: I thought that (+) looked familiar... :) I'll give it a try. Do you think I should start from scratch? Would this effect loading of default data or only generation of SQL select syntax? On Sunday, Aug 10, 2003, at 13:46 America/Chicago, Andy Zeneski wrote: > Try changing the join-style from theta-oracle to ansi (in > entityengine.xml) > and see if that fixes this new error. > > -Andy > > ----- Original Message ----- > From: "Michael L.Conneen" > To: > Sent: Sunday, August 10, 2003 2:21 PM > Subject: Re: [OFBiz-Users]Current CVS Head Testing > > >> Andy, >> Comments in line.. look for ... >> On Sunday, Aug 10, 2003, at 12:38 America/Chicago, Andy Zeneski wrote: >> >>>> >>>> O.K... I didn't cross post this time.. and as it was answered on the >>>> user list.. I presume that is the appropriate list for this >>>> topic.... >>>> and currently.. I'm more of a "user" then developer... but this just >>>> where I am in the learning curve.. whew.... >>>> >>> >>> Well, this one is a toss up. Could go either way actually. Here is >>> the >>> rule >>> of thumb. If the message has anything to do with usage, i.e. using >>> the >>> entity engine, service engine, ecommerce feature, the new product >>> store >>> features, etc it goes to OFBiz-Users. >>> >>> If the message is related to development, bugs, feature request, etc >>> then it >>> goes to OFBiz-Devel. >> >> Story of my life... I usually guess wrong.. :( >> >>> >>> Anyway, on to the issue at hand.... >>> >>>> I'm trying to complete an OFFLINE order (that's the mail check >>>> option) >>>> using cvs head from Friday (about noon.. not sure how to get better >>>> version for you.. though that can be a whole other topic...). >>>> >>>> Boom.. >>>> Error calling event: org.ofbiz.core.event.EventHandlerException: >>>> Problems processing event: java.lang.IllegalStateException: >>>> Exception >>>> on rollback:java.rmi.RemoteException: rollback: Unexpected >>>> XAException:-4 (Exception on rollback:java.rmi.RemoteException: >>>> rollback: Unexpected XAException:-4) >>>> >>> >>> Yuk, I hate these. Not very informative... >>> >>>> The RMI reference confuse me. I haven't registered anything for >>>> RMI.. >>>> so I'm note sure that that means. Also, I'm note sure what the >>>> TransactionUtil.setRollbackOnly >>>> >>> >>> Don't let it, its the transaction manager which uses RMI, and it is >>> just a >>> standard exception. >>> >>>> 153781[ TransactionUtil.java:181:ERROR] >>>> [TransactionUtil.rollback] >>>> java.lang.Exception: Stack Trace >>>> at >>>> org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java: >>>> 18 >>>> 0) >>>> at >>>> org.ofbiz.core.entity.TransactionUtil.rollback(TransactionUtil.java: >>>> 16 >>>> 2) >>>> at >>>> org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java: >>>> 16 >>>> 2) >>>> at >>>> org.ofbiz.core.workflow.WorkflowEngine.runAsync(WorkflowEngine.java: >>>> 73 >>>> ) >>>> at >>> >>> Okay, here is some interesting info.. It failed on like 162 of >>> WorkflowEngine.... Which is where it tries to create the process from >>> the >>> process manager. There should have been a GenericServiceException >>> thrown in >>> there somewhere which should have more information on why the process >>> couldn't be created. >> >> Hmm... >> :grep -i GenericServiceException *.* >> >> doesn't get a hit on anything. >> >>> Is this a fresh database? >> >> Clean database. Only modification made was the addition of my old pal >> Joe FuBar! >> >>> Or is this in attempt to >>> migrate data from 2.1.1? >> >> Not yet... I thought I would put the current version through a normal >> test to see if everything is working as expected... I've learned the >> hard way (sort of), to try to get a baseline before I add things. I'm >> not always smart enough to remember.. but I did this time. >> >>> From what I see it looks like the order should have >>> been created.. Is this true? >> >> Hmm... looking at >> http://localhost:8080/ordermgr/control/orderstats >> >> It looks like it did.. >> >> However, checking >> http://localhost:8080/ordermgr/control/tasklist >> >> yields an error : >> Error: The application script threw an exception: >> org.ofbiz.core.entity.GenericDataSourceException: SQL Exception while >> executing the following:SELECT OH.ORDER_ID AS ORDER_ID, >> OH.ORDER_TYPE_ID AS ORDER_TYPE_ID, OH.ORDER_DATE AS ORDER_DATE, >> OH.ENTRY_DATE AS ENTRY_DATE, OH.GRAND_TOTAL AS GRAND_TOTAL, >> OHR.ROLE_TYPE_ID AS ORDER_ROLE_TYPE_ID, OHR.PARTY_ID AS >> CUSTOMER_PARTY_ID, PS.FIRST_NAME AS CUSTOMER_FIRST_NAME, PS.LAST_NAME >> AS CUSTOMER_LAST_NAME, WE.WORK_EFFORT_ID AS WORK_EFFORT_ID, >> WE.WORK_EFFORT_TYPE_ID AS WORK_EFFORT_TYPE_ID, WE.CURRENT_STATUS_ID AS >> CURRENT_STATUS_ID, WE.LAST_STATUS_UPDATE AS LAST_STATUS_UPDATE, >> WE.PRIORITY AS PRIORITY, WE.WORK_EFFORT_NAME AS WORK_EFFORT_NAME, >> WE.DESCRIPTION AS DESCRIPTION, WE.CREATED_DATE AS CREATED_DATE, >> WE.CREATED_BY_USER_LOGIN AS CREATED_BY_USER_LOGIN, >> WE.LAST_MODIFIED_DATE AS LAST_MODIFIED_DATE, >> WE.LAST_MODIFIED_BY_USER_LOGIN AS LAST_MODIFIED_BY_USER_LOGIN, >> WE.ESTIMATED_START_DATE AS ESTIMATED_START_DATE, >> WE.ESTIMATED_COMPLETION_DATE AS ESTIMATED_COMPLETION_DATE, >> WE.ACTUAL_START_DATE AS ACTUAL_START_DATE, WE.ACTUAL_COMPLETION_DATE >> AS >> ACTUAL_COMPLETION_DATE, WE.INFO_URL AS INFO_URL, WEPA.PARTY_ID AS >> WEPA_PARTY_ID, WEPA.ROLE_TYPE_ID AS ROLE_TYPE_ID, WEPA.FROM_DATE AS >> FROM_DATE, WEPA.THRU_DATE AS THRU_DATE, WEPA.STATUS_ID AS STATUS_ID, >> WEPA.STATUS_DATE_TIME AS STATUS_DATE_TIME FROM PERSON PS, >> WORK_EFFORT_PARTY_ASSIGNMENT WEPA, WORK_EFFORT WE, ORDER_ROLE OHR, >> ORDER_HEADER OH WHERE (((WEPA.STATUS_ID = ? ) AND (WEPA.PARTY_ID = ? >> )) AND ((OHR.ROLE_TYPE_ID = ? ) OR (OHR.ROLE_TYPE_ID IS NULL ))) AND >> (OH.ORDER_ID= (+) OHR.ORDER_ID AND OHR.PARTY_ID= (+) PS.PARTY_ID AND >> OH.ORDER_ID=WE.SOURCE_REFERENCE_ID AND >> WE.WORK_EFFORT_ID=WEPA.WORK_EFFORT_ID) ORDER BY WE.CURRENT_STATUS_ID, >> WE.PRIORITY DESC, OH.ORDER_DATE (Syntax error or access violation: You >> have an error in your SQL syntax near '+) OHR.ORDER_ID AND >> OHR.PARTY_ID= (+) PS.PARTY_ID AND OH.ORDER_ID=WE.SOURCE_REFE' at line >> 1) BSF info: >> /Users/mconneen/cvssf/ofbiz/ordermgr/webapp/WEB-INF/actions/task/ >> ordertasklist.bsh at line: 0 column: 0 >> >> .. Double hmm... we'll come back to that one.. one thing at a time.. . >> >> Yes... going through the party manager... then clicking orders.. it >> does appear to have been created. However.. I've been using the same >> product over and over again.. Hmmm. >> >> O.K.. Yes.. doing it with a different product id (wg-5569), I get the >> same XA error.. and the order DOES show in the order profile. Double >> Hmmm.. >> >> I'm also seeing things magically drop out of the shopping cart... and >> I >> even saw an item pop in there that I never added.. I think I'll shut >> down.. drop the database and start over.. but as I've done this >> several >> times... I'm anticipating a similar result. >> >> Any ideas on how I can capture more information and provide it to the >> developers? >> >> >> >>> >>> -Andy >>> >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email sponsored by: Free pre-built ASP.NET sites >>> including >>> Data Reports, E-commerce, Portals, and Forums are available now. >>> Download today and enter to win an XBOX or Visual Studio .NET. >>> http://aspnet.click-url.com/go/psa00100003ave/ >>> direct;at.aspnet_072303_01/01 >>> _______________________________________________ >>> OFBiz-Users mailing list >>> OFBiz-Users@lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/ofbiz-users >>> >>> >> >> >> >> >> ------------------------------------------------------- >> This SF.Net email sponsored by: Free pre-built ASP.NET sites including >> Data Reports, E-commerce, Portals, and Forums are available now. >> Download today and enter to win an XBOX or Visual Studio .NET. >> > http://aspnet.click-url.com/go/psa00100003ave/ > direct;at.aspnet_072303_01/01 >> _______________________________________________ >> OFBiz-Users mailing list >> OFBiz-Users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/ > direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > From mconneen at infointegrators.com Sun Aug 10 12:20:09 2003 From: mconneen at infointegrators.com (Michael L.Conneen) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]JOTM Testing from WebTools Message-ID: <8DF8852F-CB66-11D7-8144-000393B61D2E@infointegrators.com> Folks, Does the JOTM/XA testing option work from the webtools page? I'm having other issues.. so I thought I would give this one a try.. I clicked it.. and it hung for a while.. then Safari popped up saying it couldn't complete in 60 seconds.. what a pain.. Checking the log files... I got a bunch of these.. Scanning the documentation for JOTM.. there seems to be some options that can go into the deployment descriptor... Seeing as ofbiz spans multiple webapps.. I'm at a loss as to where such configuration might go... Tyrex had a configuration file... is there something for JOTM that ofbiz is doing setting? 826765[ JotmXaPoolTest.java:98 :INFO ] Started JOTM... 826842[ JotmXaPoolTest.java:158:INFO ] Table 'jotm_xapool_test' dropped. 826877[ JotmXaPoolTest.java:176:INFO ] Table 'jotm_xapool_test' created. 826881[ JotmXaPoolTest.java:189:INFO ] Beginning multiple insert with unique transactions/connections... 826949[ JotmXaPoolTest.java:236:ERROR] Exception java.sql.SQLException: Column not found: Unknown column 'idx' in 'where clause' at org.gjt.mm.mysql.MysqlIO.sendCommand(Unknown Source) at org.gjt.mm.mysql.MysqlIO.sqlQueryDirect(Unknown Source) at org.gjt.mm.mysql.Connection.execSQL(Unknown Source) at org.gjt.mm.mysql.PreparedStatement.executeQuery(Unknown Source) at org.enhydra.jdbc.core.CorePreparedStatement.executeQuery(CorePreparedSta tement.java:89) at org.ofbiz.core.entity.JotmXaPoolTest.insertTest(JotmXaPoolTest.java:227) at org.ofbiz.core.entity.JotmXaPoolTest.runTests(JotmXaPoolTest.java:775) at org.apache.jsp.jotmCheck_jsp._jspService(jotmCheck_jsp.java:105) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.ja va:210) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatc her.java:684) at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDisp atcher.java:575) at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispat cher.java:498) at org.ofbiz.core.view.JspViewHandler.render(JspViewHandler.java:68) at org.ofbiz.core.region.Section.viewHandlerRender(Section.java:175) at org.ofbiz.core.region.Section.render(Section.java:157) at org.ofbiz.core.region.Section.render(Section.java:82) at org.ofbiz.core.region.RenderTag.doEndTag(RenderTag.java:108) at org.apache.jsp.main_template_jsp._jspx_meth_region_render_5(main_templat e_jsp.java:539) at org.apache.jsp.main_template_jsp._jspService(main_template_jsp.java:303) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.ja va:210) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatc her.java:684) at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDisp atcher.java:575) at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispat cher.java:498) at org.ofbiz.core.region.Region.render(Region.java:113) at org.ofbiz.core.view.RegionViewHandler.render(RegionViewHandler.java:92) at org.ofbiz.core.control.RequestHandler.renderView(RequestHandler.java:492 ) at org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:331) at org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurityFil ter.java:170) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:213) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 5) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java :172) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 4) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC onnection(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 5) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:619) at java.lang.Thread.run(Thread.java:554) Aug 10, 2003 1:50:19 PM org.objectweb.jotm.SubCoordinator doRollback SEVERE: Got XAException from resource: javax.transaction.xa.XAException Aug 10, 2003 1:50:19 PM org.objectweb.jotm.TransactionImpl commit SEVERE: Unexpected Exception on commit_one_phase: java.rmi.RemoteException: rollback: Unexpected XAException:100 at org.objectweb.jotm.SubCoordinator.doRollback(SubCoordinator.java:742) at org.objectweb.jotm.SubCoordinator.commit_one_phase(SubCoordinator.java:3 12) at org.objectweb.jotm.TransactionImpl.commit(TransactionImpl.java:179) at org.objectweb.jotm.Current.commit(Current.java:269) at org.ofbiz.core.entity.JotmXaPoolTest.insertTest(JotmXaPoolTest.java:254) at org.ofbiz.core.entity.JotmXaPoolTest.runTests(JotmXaPoolTest.java:775) at org.apache.jsp.jotmCheck_jsp._jspService(jotmCheck_jsp.java:105) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.ja va:210) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatc her.java:684) at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDisp atcher.java:575) at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispat cher.java:498) at org.ofbiz.core.view.JspViewHandler.render(JspViewHandler.java:68) at org.ofbiz.core.region.Section.viewHandlerRender(Section.java:175) at org.ofbiz.core.region.Section.render(Section.java:157) at org.ofbiz.core.region.Section.render(Section.java:82) at org.ofbiz.core.region.RenderTag.doEndTag(RenderTag.java:108) at org.apache.jsp.main_template_jsp._jspx_meth_region_render_5(main_templat e_jsp.java:539) at org.apache.jsp.main_template_jsp._jspService(main_template_jsp.java:303) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.ja va:210) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatc her.java:684) at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDisp atcher.java:575) at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispat cher.java:498) at org.ofbiz.core.region.Region.render(Region.java:113) at org.ofbiz.core.view.RegionViewHandler.render(RegionViewHandler.java:92) at org.ofbiz.core.control.RequestHandler.renderView(RequestHandler.java:492 ) at org.ofbiz.core.control.RequestHandler.doRequest(RequestHandler.java:331) at org.ofbiz.core.control.ControlServlet.doGet(ControlServlet.java:238) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.ofbiz.core.control.ContextSecurityFilter.doFilter(ContextSecurityFil ter.java:170) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:213) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 5) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java :172) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 4) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC onnection(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 5) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:619) at java.lang.Thread.run(Thread.java:554) From jaz at ofbiz.org Sun Aug 10 12:28:03 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Current CVS Head Testing References: Message-ID: <007a01c35f75$67a49ec0$8901010a@AJZT30> Humor me.. There are too many variables here. Start from scratch.. cvs co -P all cp setup/ofbiz/build.xml . ant java -jar ofbiz.jar This will use HSQL and Jetty, load the data and test. If this works, then start changing your setup one by one. Change to tomcat, then mysql. I cannot duplicate the session loss. Or any of the other problems using the default settings. There may be a problem w/ JOTM and MySQL. I usually only test on HSQL, SapDB and PostgreSQL. MySQL is too much trouble to setup for use w/ OFBiz and I am impatient. Oh, also start trimming down you replies. Getting to hard to follow... -Andy ----- Original Message ----- From: "Michael L.Conneen" To: Sent: Sunday, August 10, 2003 3:07 PM Subject: Re: [OFBiz-Users]Current CVS Head Testing > I thought that (+) looked familiar... :) > > I'll give it a try. Do you think I should start from scratch? Would > this effect loading of default data or only generation of SQL select > syntax? > > From jaz at ofbiz.org Sun Aug 10 12:29:03 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]JOTM Testing from WebTools References: <8DF8852F-CB66-11D7-8144-000393B61D2E@infointegrators.com> Message-ID: <007f01c35f75$92864030$8901010a@AJZT30> > Does the JOTM/XA testing option work from the webtools page? > Might not.. Haven't tried it in a while.. probably should remove it so I don't have to maintain two versions. > I'm having other issues.. so I thought I would give this one a try.. I > clicked it.. and it hung for a while.. then Safari popped up saying it > couldn't complete in 60 seconds.. what a pain.. > > Checking the log files... I got a bunch of these.. > > Scanning the documentation for JOTM.. there seems to be some options > that can go into the deployment descriptor... Seeing as ofbiz spans > multiple webapps.. I'm at a loss as to where such configuration might > go... Tyrex had a configuration file... is there something for JOTM > that ofbiz is doing setting? > > Its all in entityengine.xml -Andy From jaz at ofbiz.org Sun Aug 10 13:04:03 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Current CVS Head Testing References: <007a01c35f75$67a49ec0$8901010a@AJZT30> Message-ID: <008b01c35f7a$7cf47430$8901010a@AJZT30> Just for the record, I just did the same exact test except on Jetty/PostgreSQL and I cannot duplicate any of the errors you have reported. No loss of session and no workflow errors when creating an order using Offline as payment type. The task page works great too. -Andy ----- Original Message ----- From: "Andy Zeneski" To: Sent: Sunday, August 10, 2003 3:27 PM Subject: Re: [OFBiz-Users]Current CVS Head Testing > Humor me.. There are too many variables here. > > Start from scratch.. > > cvs co -P all > cp setup/ofbiz/build.xml . > ant > java -jar ofbiz.jar > > This will use HSQL and Jetty, load the data and test. > > If this works, then start changing your setup one by one. Change to tomcat, > then mysql. > > I cannot duplicate the session loss. Or any of the other problems using the > default settings. There may be a problem w/ JOTM and MySQL. I usually only > test on HSQL, SapDB and PostgreSQL. MySQL is too much trouble to setup for > use w/ OFBiz and I am impatient. > > Oh, also start trimming down you replies. Getting to hard to follow... > > -Andy > From krthekeyan at verchaska.com Sun Aug 10 23:08:07 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]why should the method name equal to requestUri. Message-ID: <003b01c35fcd$ba580190$0300a8c0@vtech> hI, why should the methodname of the class we are using should be equal to the requestUri . Is there any specific reason behind that. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030810/6754453f/attachment.htm From krthekeyan at verchaska.com Mon Aug 11 03:01:05 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]database entries in xml files Message-ID: <008f01c35fee$7572aa50$0300a8c0@vtech> hai all, I would develop an application which interacts with the DB (MySQL) I would likely to do the following operation(Insert,update,delete). where should I write my DataBase call and which are the xml files that should get affected with what entries. can any experienced in working with ofbiz could help me out .. thanks krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030811/156e4bbd/attachment.htm From jonesde at ofbiz.org Mon Aug 11 08:19:01 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]database entries in xml files In-Reply-To: <008f01c35fee$7572aa50$0300a8c0@vtech> References: <008f01c35fee$7572aa50$0300a8c0@vtech> Message-ID: <3F37B1BB.8020507@ofbiz.org> For Entity Engine operations you don't necessary have to modify any XML files, unless you code is written as a simple-method, then it is all XML. It doesn't matter if you are using MySQL or any other database, your entity engine code should be totally database agnostic. Although, I wouldn't recommend using MySQL if you are just getting started with OFBiz, unless you are very familiar with MySQL and you know what is involved in getting transactions, foreign keys, etc all turned on. For more general information I recommend reading the Entity Engine Guide, the Entity Engine Configuration Guide, and the various other bits of documentation available on the web site, in CVS, or in the docs distribution file. Later, -David Jones krthekeyan wrote: > hai all, > > I would develop an application which interacts with the DB (MySQL) I > would likely to do the following operation(Insert,update,delete). where > should I write my DataBase call and which are the xml files that should > get affected with what entries. can any experienced in working with > ofbiz could help me out .. > > thanks > krthekeyan.s From jonesde at ofbiz.org Mon Aug 11 08:36:03 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]why should the method name equal to requestUri. In-Reply-To: <003b01c35fcd$ba580190$0300a8c0@vtech> References: <003b01c35fcd$ba580190$0300a8c0@vtech> Message-ID: <3F37B10D.1010606@ofbiz.org> I'm not sure what you are referring to here. Any specific file and lines you are looking at? If it is the controller.xml file there is no reason other than it is a heck of a lot easier for us to maintain our code if we use consistent naming of various artifacts rather than hunting stuff down all of the time. Later, -David krthekeyan wrote: > hI, > why should the methodname of the class we are using should be equal to > the requestUri . Is there any specific reason behind that. > > > > > From jaz at ofbiz.org Mon Aug 11 09:13:12 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]why should the method name equal to requestUri. References: <003b01c35fcd$ba580190$0300a8c0@vtech> Message-ID: <00b401c3601c$6cc73050$8901010a@AJZT30> Doesn't matter, and you don't have to. -Andy ----- Original Message ----- From: krthekeyan To: ofbiz-users@lists.sourceforge.net Sent: Monday, August 11, 2003 1:59 AM Subject: [OFBiz-Users]why should the method name equal to requestUri. hI, why should the methodname of the class we are using should be equal to the requestUri . Is there any specific reason behind that. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030811/a7913c04/attachment.htm From DMilks at greenridge.ca Mon Aug 11 10:25:08 2003 From: DMilks at greenridge.ca (Dylan Milks) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Freemarker version Message-ID: <84D4D76946AC2F43AA9BDCD860DC6675175734@VOYAGER.greenridge-int.ca> Hi. I'm wondering what version of Freemarker the latest production version of OfBiz is using. Thanks, Dylan From jonesde at ofbiz.org Mon Aug 11 11:12:05 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Freemarker version In-Reply-To: <84D4D76946AC2F43AA9BDCD860DC6675175734@VOYAGER.greenridge-int.ca> References: <84D4D76946AC2F43AA9BDCD860DC6675175734@VOYAGER.greenridge-int.ca> Message-ID: <3F37D76B.3000900@ofbiz.org> Dylan, Which version are you referring to? The latest from CVS? One of the releases (maybe 2.1.1)? The easiest way to find this is to look at the CVS history for the file. But, you may also be able to see from the archive itself, and I see from your post on the freemarker list that you are thinking of that too... Later, -David Dylan Milks wrote: > Hi. I'm wondering what version of Freemarker the latest production version of OfBiz is using. > > Thanks, > Dylan > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users From jaz at ofbiz.org Mon Aug 11 11:36:14 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]Freemarker version References: <84D4D76946AC2F43AA9BDCD860DC6675175734@VOYAGER.greenridge-int.ca> Message-ID: <00d201c36033$6846e0e0$8901010a@AJZT30> 2.2.3 -Andy ----- Original Message ----- From: "Dylan Milks" To: Sent: Monday, August 11, 2003 1:15 PM Subject: [OFBiz-Users]Freemarker version > Hi. I'm wondering what version of Freemarker the latest production version of OfBiz is using. > > Thanks, > Dylan > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From DMilks at greenridge.ca Mon Aug 11 14:26:26 2003 From: DMilks at greenridge.ca (Dylan Milks) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]JPublish and beanshell Message-ID: <84D4D76946AC2F43AA9BDCD860DC667518C181@VOYAGER.greenridge-int.ca> Is there anyway of initiating the beanshell file before going to the FTL page without using JPublish (i.e. going through the jpublish.xml file)? Dylan From jaz at ofbiz.org Mon Aug 11 14:38:04 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]JPublish and beanshell References: <84D4D76946AC2F43AA9BDCD860DC667518C181@VOYAGER.greenridge-int.ca> Message-ID: <007c01c3604f$df99d730$8901010a@AJZT30> Sure, but you'll have to write a tool which does some of the same things JPublish does. I don't know what you mean by '(i.e. going through the jpublish.xml file)'. If you aren't using JPublish you don't need the jpublish.xml file. Why re-invent the wheel? -Andy ----- Original Message ----- From: "Dylan Milks" To: "OfBiz Mailing List" Sent: Monday, August 11, 2003 4:16 PM Subject: [OFBiz-Users]JPublish and beanshell > Is there anyway of initiating the beanshell file before going to the FTL page without using JPublish (i.e. going through the jpublish.xml file)? > > Dylan > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From masayang at nri-net.com Mon Aug 11 15:43:02 2003 From: masayang at nri-net.com (M Nakamura) Date: Mon Aug 23 13:51:25 2004 Subject: [OFBiz-Users]JPublish and beanshell In-Reply-To: <84D4D76946AC2F43AA9BDCD860DC667518C181@VOYAGER.greenridge-int.ca> References: <84D4D76946AC2F43AA9BDCD860DC667518C181@VOYAGER.greenridge-int.ca> Message-ID: <3F3812AD.9050505@nri-net.com> Why don't you define the beanshell script as a service then map it in controller.xml? Mark Nakamura Dylan Milks wrote: > Is there anyway of initiating the beanshell file before going to the FTL page without using JPublish (i.e. going through the jpublish.xml file)? > > Dylan > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From krthekeyan at verchaska.com Tue Aug 12 00:21:05 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]In ecommerce the data is not populating on the screen though the data is available in DB. what should I do to get the data populated Message-ID: <002f01c360a1$40e4e650$0300a8c0@vtech> Hi all, In ecommerce the data is not populating on the screen though the data is available in DB. what should I do to get the data populated . 1)I have data's in PRODUCT table. what should I do to get the data populated on the screen when i hit the url http://localhost:8080/ecommerce/control/main 2)When I search for some product in the same page it is not fetching any result. everytime it is same response with not available message There is no entry in PRODUCT KEYWORD table. thanks, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030812/a7032303/attachment.htm From krthekeyan at verchaska.com Tue Aug 12 00:33:02 2003 From: krthekeyan at verchaska.com (krthekeyan) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Category not found for Category ID ! Message-ID: <003a01c360a2$376fd430$0300a8c0@vtech> hai all, Earlier I had posted the same question but there was no reply. when i hit the ecommerce main page it get the message "Category not found for Category ID !" what could be the solution to solve this problem. which table should I look to it. thanks, krthekeyan.s -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030812/ed9d1891/attachment.htm From ofbizwf at cmstat.com Tue Aug 12 05:36:06 2003 From: ofbizwf at cmstat.com (ofbizwf@cmstat.com) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Starting the engines Message-ID: <000601c360ce$28bf9700$0910a8c0@tpt7bzwjcdpcm1> I would like to use the workflow engine outside the full ofbiz app. I know I also need the service and entity engine. I have looked thru the code but have not been able to find a way to start the engines from within my own app. What is the proper way to start the service and entity engines? Is there a factory class I can call to start them? Thanks for your help. Tom Cheek CTO - VP Engineering CMstat TPT Technologies Inc. A California Company dba CMstat From jonesde at ofbiz.org Tue Aug 12 05:50:02 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]In ecommerce the data is not populating on the screen though the data is available in DB. what should I do to get the data populated In-Reply-To: <002f01c360a1$40e4e650$0300a8c0@vtech> References: <002f01c360a1$40e4e650$0300a8c0@vtech> Message-ID: <3F38E22B.1040708@ofbiz.org> The ecommerce data model is fairly involved, I recommend you look through the demo seed data in the ecommerce/etc directory (ie all of the .xml files there). This should also answer your other question about categories showing up, etc. The product keywords are automatically indexed when editing products through the catalog manager, but for data loaded in other ways into the database you should run the index all products routine using the link on the main page of the Catalog Manager (ie localhost:8080/catalog/control/main). If you are interested in learning more about these applications and how they can be effectively used, we are planning on creating more involved training materials, but these do not exist yet so your only other option is to randomly try questions here, or purchase paid support or training. Later, -David Jones krthekeyan wrote: > Hi all, > > In ecommerce the data is not populating on the screen though the data is > available in DB. what should I do to get the data populated . > > 1)I have data's in PRODUCT table. > what should I do to get the data populated on the screen when i hit the url > http://localhost:8080/ecommerce/control/main > > 2)When I search for some product in the same page it is not fetching any > result. everytime it is same response with not available message > > There is no entry in PRODUCT KEYWORD table. > > thanks, > krthekeyan.s > > > > > > > > From mluise at computercenter.it Tue Aug 12 05:57:04 2003 From: mluise at computercenter.it (Luise Massimo) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]UNSUBSCRIBE Message-ID: -----Messaggio originale----- Da: David E. Jones [mailto:jonesde@ofbiz.org] Inviato: marted? 12 agosto 2003 14.49 A: ofbiz-users@lists.sourceforge.net Oggetto: Re: [OFBiz-Users]In ecommerce the data is not populating on the screen though the data is available in DB. what should I do to get the data populated The ecommerce data model is fairly involved, I recommend you look through the demo seed data in the ecommerce/etc directory (ie all of the .xml files there). This should also answer your other question about categories showing up, etc. The product keywords are automatically indexed when editing products through the catalog manager, but for data loaded in other ways into the database you should run the index all products routine using the link on the main page of the Catalog Manager (ie localhost:8080/catalog/control/main). If you are interested in learning more about these applications and how they can be effectively used, we are planning on creating more involved training materials, but these do not exist yet so your only other option is to randomly try questions here, or purchase paid support or training. Later, -David Jones krthekeyan wrote: > Hi all, > > In ecommerce the data is not populating on the screen though the data is > available in DB. what should I do to get the data populated . > > 1)I have data's in PRODUCT table. > what should I do to get the data populated on the screen when i hit the url > http://localhost:8080/ecommerce/control/main > > 2)When I search for some product in the same page it is not fetching any > result. everytime it is same response with not available message > > There is no entry in PRODUCT KEYWORD table. > > thanks, > krthekeyan.s > > > > > > > > ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From gary.cuozzo at innovationsw.com Tue Aug 12 06:05:03 2003 From: gary.cuozzo at innovationsw.com (Gary S. Cuozzo) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Category not found for Category ID ! In-Reply-To: <003a01c360a2$376fd430$0300a8c0@vtech> References: <003a01c360a2$376fd430$0300a8c0@vtech> Message-ID: <1060692799.1844.74.camel@ninefortyfour.hq.innovationsw.com> I've asked this question before. Here is the response that should answer your question as well... gary. ---------------------------------------- From: Andy Zeneski To: Gary S. Cuozzo , ofbiz-users Subject: Re: [OFBiz-Users]catalog creation Date: Fri, 30 May 2003 16:37:59 -0400 > totally new user here... > > i'm attempting to create some test catalogs and populate with products. > there are a few things that i don't quite understand. > > 1. when you create categories, what determines if they get displayed in > the 'browse categories' area on the ecommerce app? The category which is selected as the catalog's Browse Root category becomes the top level browse. So, all categories which are a child of the one defined show up. > 2. when i choose my own catalog or the 'test' catalog that is already > defined in ofbiz, i get "Category not found for Category ID !" displayed > on the main page. but not for the 'demo' catalog. what does this > message mean and what needs to be done to avoid it? The default main page looks for a catalog's Promotions category (defined in the same place as the search and browse root categories for the catalog). It then displays the products in this category. What is happening here is none is defined and it isn't being very nice about it. :) > 3. what exactly does the 'rollup' feature accomplish with respect to > categories? i've been defining/changing rollups sorta randomly and am > not sure exactly what is affected when i do so. A rollup is nothing more then a parent/child relationship between two categories. If you set Widgets (200) as a rollup of Gizmos (100) then when you look at the Gizmos's category, Widgets should show up too. ---------------------------------------- On Tue, 2003-08-12 at 03:20, krthekeyan wrote: > hai all, > Earlier I had posted the same question but there was no reply. > > when i hit the ecommerce main page it get the message > "Category not found for Category ID !" > > what could be the solution to solve this problem. > which table should I look to it. > > thanks, > krthekeyan.s -- Gary S. Cuozzo Innovation Software Group, LLC From DMilks at greenridge.ca Tue Aug 12 07:25:05 2003 From: DMilks at greenridge.ca (Dylan Milks) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]JPublish and beanshell Message-ID: <84D4D76946AC2F43AA9BDCD860DC667518C182@VOYAGER.greenridge-int.ca> That sounds like a good idea. But how do I do that? Also, is controller.xml a part of JPublish? If no, then what "framework" does that file belong to? How does the app know to look at controller.xml at every request (where is it defined)? Dylan -----Original Message----- From: M Nakamura [mailto:masayang@nri-net.com] Sent: Monday, August 11, 2003 5:03 PM To: ofbiz-users@lists.sourceforge.net Subject: Re: [OFBiz-Users]JPublish and beanshell Why don't you define the beanshell script as a service then map it in controller.xml? Mark Nakamura Dylan Milks wrote: > Is there anyway of initiating the beanshell file before going to the FTL page without using JPublish (i.e. going through the jpublish.xml file)? > > Dylan > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ OFBiz-Users mailing list OFBiz-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ofbiz-users From jonesde at ofbiz.org Tue Aug 12 07:42:05 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]JPublish and beanshell In-Reply-To: <84D4D76946AC2F43AA9BDCD860DC667518C182@VOYAGER.greenridge-int.ca> References: <84D4D76946AC2F43AA9BDCD860DC667518C182@VOYAGER.greenridge-int.ca> Message-ID: <3F38FBBB.3090008@ofbiz.org> Dylan, You might find the Best Practices Guide for OFBiz useful, there are various links to it on the www.ofbiz.org web site. This explains what certain pieces of the architecture are and how they are best used. You may also find other bits of documentation there useful too, especially on the "Docs & Books" page. Later, -David Jones Dylan Milks wrote: > That sounds like a good idea. But how do I do that? > > Also, is controller.xml a part of JPublish? If no, then what "framework" does that file belong to? How does the app know to look at controller.xml at every request (where is it defined)? > > Dylan > > -----Original Message----- > From: M Nakamura [mailto:masayang@nri-net.com] > Sent: Monday, August 11, 2003 5:03 PM > To: ofbiz-users@lists.sourceforge.net > Subject: Re: [OFBiz-Users]JPublish and beanshell > > > Why don't you define the beanshell script as a service then map it in > controller.xml? > > Mark Nakamura > > Dylan Milks wrote: > > >>Is there anyway of initiating the beanshell file before going to the FTL page without using JPublish (i.e. going through the jpublish.xml file)? >> >>Dylan >> >> >>------------------------------------------------------- >>This SF.Net email sponsored by: Free pre-built ASP.NET sites including >>Data Reports, E-commerce, Portals, and Forums are available now. >>Download today and enter to win an XBOX or Visual Studio .NET. >>http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >>_______________________________________________ >>OFBiz-Users mailing list >>OFBiz-Users@lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users From jaz at ofbiz.org Tue Aug 12 08:12:06 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Starting the engines References: <000601c360ce$28bf9700$0910a8c0@tpt7bzwjcdpcm1> Message-ID: <00c201c360e2$b258df30$8901010a@AJZT30> If you are using 2.1.1 take a look at the ControlServlet code (init() method) this starts up the entity and service engines as well as the security handler. This should get you started. If you are working off of CVS, the code has moved to the ContextFilter. -Andy ----- Original Message ----- From: To: Sent: Tuesday, August 12, 2003 8:34 AM Subject: [OFBiz-Users]Starting the engines > I would like to use the workflow engine outside the full ofbiz app. I know > I also need the service and entity engine. I have looked thru the code but > have not been able to find a way to start the engines from within my own > app. > > > What is the proper way to start the service and entity engines? Is there a > factory class I can call to start them? > > Thanks for your help. > > Tom Cheek > CTO - VP Engineering > CMstat > > > TPT Technologies Inc. > A California Company > dba CMstat > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From alfred.lopez at gmx.net Tue Aug 12 08:37:18 2003 From: alfred.lopez at gmx.net (Alfred Lopez) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Minimalist question Message-ID: Do I need any of the webapps in order to use the Service, Entity and Workflow engines? If not, how do these "services" get started? Also, if not using the control servlet, do I need to create an instance of a dispatcher and delegator in my servlet and pass it around? Thanks. Alfred Lopez alfred.lopez@gmx.net AIM: AlfredDGR8 YahooMsgr: nobodyshouldhavethisloginname From jonesde at ofbiz.org Tue Aug 12 09:09:05 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Minimalist question In-Reply-To: References: Message-ID: <3F390E7A.3030403@ofbiz.org> Alfred, You're in luck, you can do whatever you want... While you don't need any of the webapps to use the Service, Entity and Workflow Engines you should be aware that there are various tools in the webapps, especially the WebTools webapp and for the Workflow Engine the WorkEffort webapp. If you aren't using our UIs, then you'll just have to create your own, including the calling of services using the dispatcher and such. You're also in luck that Andy just refactored the ControlServlet so that the initialization of the various things, including the Entity and Service engines, are done in the "ContextFilter". Of course, this only applies if you are using the latest CVS code (as of yesterday...). For earlier stuff, see how the ControlServlet does it. Later, -David Alfred Lopez wrote: > Do I need any of the webapps in order to use the Service, Entity and > Workflow engines? If not, how do these "services" get started? Also, if > not using the control servlet, do I need to create an instance of a > dispatcher and delegator in my servlet and pass it around? > > Thanks. > > > Alfred Lopez > alfred.lopez@gmx.net > AIM: AlfredDGR8 > YahooMsgr: nobodyshouldhavethisloginname > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users From jaz at ofbiz.org Tue Aug 12 09:24:08 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Minimalist question References: Message-ID: <00e901c360eb$e7e34c40$8901010a@AJZT30> Funny, I just answered this same question; see the message with the subject "Starting the engines". If you dig through the docs you would find this, which you should find very useful: http://www.ofbiz.org/core/docs/core.html#Dependencies You will need an instance of Security, GenericDelegator and LocalDispatcher. How you get them, and how you pass them around is up to you. You can get ideas by looking at the existing code. -Andy ----- Original Message ----- From: "Alfred Lopez" To: Sent: Tuesday, August 12, 2003 11:22 AM Subject: [OFBiz-Users]Minimalist question > Do I need any of the webapps in order to use the Service, Entity and > Workflow engines? If not, how do these "services" get started? Also, if > not using the control servlet, do I need to create an instance of a > dispatcher and delegator in my servlet and pass it around? > > Thanks. > > > Alfred Lopez > alfred.lopez@gmx.net > AIM: AlfredDGR8 > YahooMsgr: nobodyshouldhavethisloginname > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > From alfred.lopez at gmx.net Tue Aug 12 10:46:04 2003 From: alfred.lopez at gmx.net (Alfred Lopez) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Minimalist question In-Reply-To: <00e901c360eb$e7e34c40$8901010a@AJZT30> Message-ID: <3CFA958A-CCE9-11D7-B5D3-000393641AC6@gmx.net> Thanks. And I apologize for not doing due diligence before posting my question. :) On Tuesday, August 12, 2003, at 12:08 PM, Andy Zeneski wrote: > Funny, I just answered this same question; see the message with the > subject > "Starting the engines". > > If you dig through the docs you would find this, which you should find > very > useful: > http://www.ofbiz.org/core/docs/core.html#Dependencies > > You will need an instance of Security, GenericDelegator and > LocalDispatcher. > How you get them, and how you pass them around is up to you. You can > get > ideas by looking at the existing code. > > -Andy > > ----- Original Message ----- > From: "Alfred Lopez" > To: > Sent: Tuesday, August 12, 2003 11:22 AM > Subject: [OFBiz-Users]Minimalist question > > >> Do I need any of the webapps in order to use the Service, Entity and >> Workflow engines? If not, how do these "services" get started? Also, >> if >> not using the control servlet, do I need to create an instance of a >> dispatcher and delegator in my servlet and pass it around? >> >> Thanks. >> >> >> Alfred Lopez >> alfred.lopez@gmx.net >> AIM: AlfredDGR8 >> YahooMsgr: nobodyshouldhavethisloginname >> >> >> >> ------------------------------------------------------- >> This SF.Net email sponsored by: Free pre-built ASP.NET sites including >> Data Reports, E-commerce, Portals, and Forums are available now. >> Download today and enter to win an XBOX or Visual Studio .NET. >> > http://aspnet.click-url.com/go/psa00100003ave/ > direct;at.aspnet_072303_01/01 >> _______________________________________________ >> OFBiz-Users mailing list >> OFBiz-Users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/ > direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > Alfred Lopez alfred.lopez@gmx.net (954) 435-1478 (home) (954) 629-6896 (cell) AIM: AlfredDGR8 YahooMsgr: nobodyshouldhavethisloginname From ofbiz_a_dev at yahoo.com Tue Aug 12 12:18:05 2003 From: ofbiz_a_dev at yahoo.com (Philip Lee) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]post from JaWE: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release Message-ID: <20030812191457.52347.qmail@web20505.mail.yahoo.com> This is copy of the question posted on JaWE mailing list ' Jawe: Re: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release' -philee ======================================================== Hi Philip, one of the new features in JaWE1.1 is the possibility to validate xpdls against WfMC's XPDL schema. Obviously, the document you've tried to open is not valid. Although it is not valid, you have had a possibility to proceed with opening the document. You can turn the validation ON and OFF by entering File->Configuration dialog. If you turn it off, the documents won't be validated, and if there are no a fatal errors when parsing documents, the JaWE will try to open them. You can see the complete list of new features and improvements in the whatsnew.txt file distributed with JaWE. I hope this helps. Regards, Sasa. ----- Original Message ----- From: Philip Lee To: JaWE@enhydra.org Sent: Tuesday, August 12, 2003 7:38 PM Subject: Jawe: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release Does anyone tried to open the orderprocessXPDL.xml from ofbiz with JaWE 1.1 latest release? I got lot of errors but the same file works fine with last version of JaWE 1.0 final. Any idea? --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030812/da72ed7e/attachment.htm From ofbiz_a_dev at yahoo.com Tue Aug 12 12:19:02 2003 From: ofbiz_a_dev at yahoo.com (Philip Lee) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Runtime Interfaces for workflow Message-ID: <20030812190913.7037.qmail@web20506.mail.yahoo.com> I found this Runtime Interfaces for workflow at http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/Zope3WfMCWorkflowInterfaces (If this is cross post or should not post here then sorry) I just thought even if this is not directly related to ofbiz but may be close to ofbiz-workflow so posted here. -philee =========================================================== Zope 3 WfMC Workflow Interfaces The current proposal for the Runtime Interfaces is: class IWfMCProcessInstance(IWorkflowProcessInstance): """Workflow process instance complying to the WfMC model.""" name = Attribute("Name of ProcessInstance") # a DataObject is a bag of custom properties that has security # set by the ProcessDefinition data = Attribute("WorkflowRelevant DataObject") creationTime = Attribute("Timestamp of ProcessInstance Creation") def start(): """Starts a process instance that has startmode manual.""" def suspend(): """Suspends a process instance.""" def resume(): """Resumes a process instance.""" def finish(): """Finishes a process instance that has finishmode manual.""" def terminate(): """Aborts work on a process instance. commonly used only by workflow managers""" def getStatus(): """get the Status of the WfMCProcessInstance. Returns one of INITIATED, RUNNING, ACTIVE, SUSPENDED, COMPLETED,TERMINATED.""" def getActivityInstance(ai_id): """get the activity instance object with the given id.""" def listActivityInstances(filter): """return the activity instance list fot this Process Instance.""" class IWfMCActivityInstance(Interface): """ Workflow activity instance complying to the WfMC Model""" name = Attribute("Name of ActivityInstance") creationTime = Attribute("Timestamp of ActivityInstance Creation") priority = Attribute("Priority of ActivityInstance") def getProcessDefintion(): """Gets the process definition for this activity instance""" def getActivity(): """Gets the actvitiy for this activity instance def getProcessInstance(): """Gets the process instance for this actvitiy instance.""" def start(): """start ActivityInstance if startmode manual""" def finish(): """finish ActivityInstance if finishmode manual""" def getStatus(): """get the Status of the WfMCActivityInstance. Returns one of INACTIVE, ACTIVE, SUSPENDED, COMPLETED.""" class IWfMCWorkflowWorkitem(IWorkflowWorkitem): """A unit of work.""" name = Attribute("Name of Workitem") creationTime = Attribute("Timestamp of Workitem Creation") priority = Attribute("Priority of Workitem") def getProcessInstance(): """Gets the process instance for this workitem.""" def getActivityInstance(): """Gets the activity instance for this workitem.""" def start(): # XXX some people would prefer fetch() here """Starts work on a workitem.""" def finish(): """Finishes work on a workitem.""" def abort(): """Aborts work on a workitem.""" def getState(): """get the State of the the WfMCWorkitem Returns one of INACTIVE, ACTIVE, FINISHED, ABORTED.""" def assign(assignee): """Assigns a workitem to an IPrincipal.""" def getAssignee(): """Returns the assignee as an IPrincipal, or None.""" # XXX This is not well named .. it only gives back the WfAppComponent # when called getImplementation it would give back Loop/Subflow-Info as well # suggestion: getApplicationComponent() def getImplementation(): """Returns an IWorkflowApplication that does the actual work.""" class IWorkflowApplicationComponent(Interface): """An application that does the work for a given workitem.""" def __call__(wi): """Executes the application, passing it an IWorkflowWorkitem.""" This is an example for a set of Interfaces for Processdefinition that is XPDL (ProcessDefinitionLanguage?) compatible : ProcessDefinition Elements (only attributes yet): # Base Interface for all Definition Interfaces # has id and extended Attributes class IWfMCDefinitionElement(Interface): ''' basic Workflow Definition Element ''' id = Attribute("id of WE") extendedAttributes = Attribute("list of extended Attributes") # IWfMCFormalParameter # defines Parameters for Application/Subflow # Invokation class IWfMCFormalParameter(IWfMCDefinitionElement): ''' a Parameter that will allways used for data-exchange e.g. Tool and invocation/return ''' mode = Attribute("mode: in/out/inout") index = Attribute("index of par") dataType = Attribute("data type of Parameter") description = Attribute("the Parameter Description") # IWfMCRedefinableHeader # used for Packages/ProcessDefinitions # values can overwrite package defaults class IWfMCRedefinableHeader(IWfMCDefinitionElement): ''' Refinable Header of a Package ''' author( = Attribute("author") publicationStatus = Attribute("publicationStatus of pkg") version = Attribute("version of package") codepage = Attribute("codepage used for textparts") countryKey = Attribute("a country key") responsibles = Attribute("responsible participants") # IWfMCWorkflowRelevantData # defines each DataField (Variable) of a ProcessDefinition # that can be used for Transition Evaluation or # Application/Subflow Invokation class IWfMCWorkflowRelevantData(IWfMCDefinitionElement): ''' workflow relevant data Field ''' name = Attribute("name of DataField") isArray = Attribute("is array ?") dataType = Attribute("type of data") initialValue = Attribute("initial Value") description = Attribute("description of WFRD") # IWfMCParticipant # defines the possible Participants in a ProcessDefinition class IWfMCParticipant(IWfMCDefinitionElement): ''' a workflow participant ''' name = Attribute("name of participant") type = Attribute("type: (RESOURCE_SET/RESOURCE/ROLE/ORGANIZATIONAL_UNIT/HUMAN/SYSTEM)") description = Attribute("description") # IWfMCApplication # defines an Application that can # be called from a Process class IWfMCApplication(IWfMCDefinitionElement): ''' application declaration ''' name = Attribute("name of application") description = Attribute("description") formalParameters = Attribute("formal Parameter list") # IWfMCImplementation # default Implementation that needs to be # handle manual (without help of any Applications # Subflows or Loops class IWfMCImplementation(IWfMCDefinitionElement): ''' basic Implementation class IWfMC''' # IWfMCSubflow # defines the Subflow to call # and the parameters to initialize it # if the subflow returns values, # workflow-relevant-data is updated accordingly class IWfMCSubflow(Implementation): ''' a Subflow ''' name = Attribute("name of subflow to start") execution = Attribute("execution asynchr/synchr") actualParameters = Attribute("actual parameters mapped to wf-relevant data by name (WorkflowRelevantData)") # IWfMCTool # defines an Application/Procedure # that needs to be predefined in the ProcessDefinition, # with parameters to be called class IWfMCTool(Implementation): ''' an Application ''' name = Attribute("name of Application to invoke") type = Attribute("type: APPLICATION/PROCEDURE") description = Attribute("description of the app") actualParameters = Attribute("parameter names that are used for data-exchange") # IWfMCLoop # defines the Loop Implementation # depends to IWfMCTransition.loop attribute class IWfMCLoop(Implementation): ''' a Loop ''' kind = Attribute("loop kind: WHILE/REPEAT_UNTIL") condition = Attribute("condition to be evaluated") # IWfMCSplitMode # defines how the Activity # behaves for Outgoing Transitions class IWfMCSplitMode(IWfMCDefinitionElement): ''' split mode definition ''' type = Attribute("split type") transitionRefs = Attribute("list of outgoing transition if mode is XOR") # IWfMCJoinMode # defines how the Activity # behaves for Incoming Transitions class IWfMCJoinMode(IWfMCDefinitionElement): type = Attribute("join type") # IWfMCInlineBlock # used to group a number # of Activities together # for Transaction/Concurrency # Control class IWfMCInlineBlock(IWfMCDefinitionElement): ''' an Inline Block ''' blockName = Attribute("block Name") begin = Attribute("begin bracket") end = Attribute("end bracket") description = Attribute("description") icon = Attribute("icon of inlineblock") documentation = Attribute("documentation of inlineblock") # IWfMCActivity # defines an Activity class IWfMCActivity(IWfMCDefinitionElement): ''' an Activity ''' processDefinition = Attribute("ref to PD the activity belongs to") name = Attribute("a Activity Name") description = Attribute("a description") isRoute = Attribute("is this a route Activity") startMode = Attribute("how Activity is started (0-Manual/1-Automatic)") finishMode = Attribute("how Activity is finished (0-Manual/1-Automatic)") performer = Attribute("link to workflow participant (may be expression)") implementation = Attribute("if not Route-Activity: mandatory (no/tool+/subflow/loop)") instantiation = Attribute("capability: once/multiple times") priority = Attribute("priority of Activity") cost = Attribute("average cost") workingTime = Attribute("amount of time, performer of activity needs to perform task") waitingTime = Attribute("amount of time, needed to prepare performance of task") duration = Attribute("duration of activity") limit = Attribute("limit in costUnits") icon = Attribute("icon of activity") documentation = Attribute("documentation") ### if splitMode is XOR we need a list of Transitions to be evaluated splitMode = Attribute("split Mode (and/xor)") joinMode = Attribute("join Mode (and/xor)") inlineBlock = Attribute("inline Block definition") # IWfMCCondition # defines a Condition # for a Transition class IWfMCCondition(IWfMCDefinitionElement): ''' a transition condition ''' type = Attribute("type: CONDITION/OTHERWISE") expression = Attribute("expression to be evaluated") # IWfMCTransition # defines a Transition class IWfMCTransition(IWfMCDefinitionElement): ''' a Transition ''' processDefinition = Attribute("ref to PD the activity belongs to") name = Attribute("name of Transition") loop = Attribute("is loop: NOLOOP/FROMLOOP/TOLOOP") condition = Attribute("condition to be evaluated") fromActivity = Attribute("ref to from-Activitiy") toActivity = Attribute("ref to to-Activity") # IWfMCProcessDefinitionHeader # supplies meta-data for ProcessDefinition class IWfMCProcessDefinitionHeader(IWfMCDefinitionElement): ''' defintion header ''' created = Attribute("date of creation") description = Attribute("description of package") validFrom = Attribute("date the PD is valid from") validTo = Attribute("date the PD is valid to") limit = Attribute("limit for timemanagement in units of DurationUnit") priority = Attribute("priority of PD") durationUnit = Attribute("Duration Unit") workingTime = Attribute("amount of time, performer of activity needs to perform task") waitingTime = Attribute("amount of time, needed to prepare performance of task") duration = Attribute("duration in units") timeEstimation = Attribute("estimated time for the process") # IWfMCProcessDefinition # defines a ProcessDefinition class IWfMCProcessDefinition(IWfMCDefinitionElement): ''' a Process Definition ''' package = Attribute("ref to package") name = Attribute("a Name") processDefinitionHeader = Attribute("ref to pd header") redefinableHeader = Attribute("ref to refinable header") formalParameters = Attribute("parameters that are interchanged e.g. subflow") workflowRelevantData = Attribute("wfr data definition") participants = Attribute("colletion of participants") applications = Attribute("collection of applictations") startActivity = Attribute("ref to start activity") endActivity = Attribute("ref to end activity") activities = Attribute("list activities contained by PD") transitions = Attribute("list transitions contained by PD") # IWfMCPackageHeader # supplies metadata for Package class IWfMCPackageHeader(IWfMCDefinitionElement): ''' package Header ''' XPDLVersion = Attribute("version of xml-definition") vendor = Attribute("vendor of package") created = Attribute("date of creation") description = Attribute("description of package") documentation = Attribute("documentation of package") priorityUnit = Attribute("priority Unit") costUnit = Attribute("cost unit") # IWfMCPackage # a Package groups a number # of ProcessDefinitions # and supply common Application/Participant/ # WfRData definitions class IWfMCPackage(IWfMCDefinitionElement): name = Attribute("name of package") packageHeader = Attribute("ref to packageHeader") redefinableHeader = Attribute("ref to refinableHeader") externalPackages = Attribute("list of exteral packages") participants = Attribute("colletion of participants") applications = Attribute("collection of applictations") workflowRelevantData = Attribute("collection of WFRelevantData") processDefinitions = Attribute("collection of process-definitions") --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030812/6bb937bc/attachment.htm From arukala at gmx.de Tue Aug 12 12:25:01 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? References: <3CFA958A-CCE9-11D7-B5D3-000393641AC6@gmx.net> Message-ID: <5602.1060715143@www55.gmx.net> Hallo Ofbiz Users and Developers, I am looking for help on localisation works with ofbiz ( en-de, de-en)?? Did Any body Tried Localisation or Internationlaisation with Ofbiz Framework. I know this thread is discussed by some users but now I am intested to discuss for further... Did Any Body tried with JPublish or FreeMaker. for localising en-de, de-en?????????????? IF Yes PLease reply to this thread. How to do it ?? Do I need to download the JPublish or freemaker or not ??? If Yes, What should i do next????.. please help me............ If No, Please suggest me how to make localisation for E- Commece Application of OFBIZ 2.1 Stable version For Client Side. Thank You in Advance............ Yours Sincerely Arukala -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From olivier.heintz at nereide.biz Wed Aug 13 01:02:02 2003 From: olivier.heintz at nereide.biz (olivier heintz) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? In-Reply-To: <5602.1060715143@www55.gmx.net> References: <3CFA958A-CCE9-11D7-B5D3-000393641AC6@gmx.net> <5602.1060715143@www55.gmx.net> Message-ID: <3F39D7ED.6040007@nereide.biz> Hi, I'm currently learning ofbiz to be able to develop some functionals components in the futur (starting in september, accounting and manufacturing). One of the first exercice I have done is to localize (in french) the accounting module. For that, I have used new entities to store the UserInterfaceLabel and its languages translations and add the reading routine of these, in the envsetup.bsh. In the *.ftl file I replace each literal sentence by a corresponding UiLabel {UiLabel.AccCreatBillAcc} example: (part of the loading file for one of these entities) example: (extrac from the FindBillingAccount.ftl file)
${UiLabel.AccBillingAcc}

<#if billingAccountRolesByParty?has_content> <#assign colSpan = "5"> <#else> <#assign colSpan = "4"> I don't know if it's the good solution but it seem working and evolutive. For the moment I have not published these modifications, only because I continue to discovers OFBiz and I want to be sure there is no build-in solution. If you want I can sent a more detail mail with all the files. Regards Olivier arukala@gmx.de a ?crit: >Hallo Ofbiz Users and Developers, > >I am looking for help on localisation works with ofbiz ( en-de, de-en)?? >Did Any body Tried Localisation or Internationlaisation with Ofbiz >Framework. > >I know this thread is discussed by some users but now I am intested to >discuss for further... > >Did Any Body tried with JPublish or FreeMaker. for localising en-de, >de-en?????????????? >IF Yes PLease reply to this thread. How to do it ?? > >Do I need to download the JPublish or freemaker or not ??? > >If Yes, What should i do next????.. please help me............ >If No, Please suggest me how to make localisation for E- Commece >Application of OFBIZ 2.1 Stable version For Client Side. > >Thank You in Advance............ > >Yours Sincerely >Arukala > > > From jonesde at ofbiz.org Wed Aug 13 01:29:09 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? In-Reply-To: <3F39D7ED.6040007@nereide.biz> References: <3CFA958A-CCE9-11D7-B5D3-000393641AC6@gmx.net> <5602.1060715143@www55.gmx.net> <3F39D7ED.6040007@nereide.biz> Message-ID: <3F39F625.3090105@ofbiz.org> This is an interesting way of doing it, but I still think a similar approach using properties files would be easier. We do have i18n features in the design of the Content entities, and those will be used in the future to have i18n'ed descriptions, names, etc for Products, Categories, and so on. For things that are not database oriented, such as UI templates (ie FTL files, etc), I think it would be better to put the data in files so that it is easier to revision control and coordinate during development, not to mention keeping the versions straight in production. Our preferred approach to date has been to use properties files. These can easily be accessed in Java classes, and also in FTL files. The BSH script can load the properties object and put it in the context, and then the FTL file can simply refer to the property desired for each label, message, etc. I hope that helps with some understanding of our planned direction. Note that we do have some utility methods for this in the UtilProperties class... Later, -David Jones olivier heintz wrote: > Hi, > > I'm currently learning ofbiz to be able to develop some functionals > components in the futur (starting in september, accounting and > manufacturing). One of the first exercice I have done is to localize (in > french) the accounting module. > > For that, I have used new entities to store the UserInterfaceLabel and > its languages translations and add the reading routine of these, in the > envsetup.bsh. In the *.ftl file I replace each literal sentence by a > corresponding UiLabel {UiLabel.AccCreatBillAcc} > > > example: (part of the loading file for one of these entities) > > > > > > uiLabel="Create Billing Account Role"/> > > > > > > uiLabel="Associer un role ? ce compte de facturation"/> > > > example: (extrac from the FindBillingAccount.ftl file) >
${UiLabel.AccBillingAcc}
> > >
>
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
 
> > > > <#if billingAccountRolesByParty?has_content> > <#assign colSpan = "5"> > > <#else> > <#assign colSpan = "4"> > > > > > I don't know if it's the good solution but it seem working and > evolutive. For the moment I have not published these modifications, only > because I continue to discovers OFBiz and I want to be sure there is no > build-in solution. > If you want I can sent a more detail mail with all the files. > > Regards > Olivier > > arukala@gmx.de a ?crit: > >> Hallo Ofbiz Users and Developers, >> >> I am looking for help on localisation works with ofbiz ( en-de, de-en)?? >> Did Any body Tried Localisation or Internationlaisation with Ofbiz >> Framework. >> >> I know this thread is discussed by some users but now I am intested to >> discuss for further... >> >> Did Any Body tried with JPublish or FreeMaker. for localising en-de, >> de-en?????????????? >> IF Yes PLease reply to this thread. How to do it ?? >> >> Do I need to download the JPublish or freemaker or not ??? >> If Yes, What should i do next????.. please help me............ >> If No, Please suggest me how to make localisation for E- Commece >> Application of OFBIZ 2.1 Stable version For Client Side. >> >> Thank You in Advance............ >> >> Yours Sincerely Arukala >> >> >> > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users From arukala at gmx.de Wed Aug 13 01:31:07 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? References: <3F39D7ED.6040007@nereide.biz> Message-ID: <28231.1060762710@www64.gmx.net> Hallo Olivier, Thanx for your reply. I got your point. I Hope It works and i will try. but As U said that It just make changes of text in User Interface. I need some more information pleaseeee.... IN the main page I am planning to give the option to the user to select language (English, German, French with small Flags.). Now the question is The pages must change dynamically according to user requested Language. Hope you Catch my point. Please suggest me with further information. Thankyou in advance, Yours Sincerely Arukala > Hi, > > I'm currently learning ofbiz to be able to develop some functionals > components in the futur (starting in september, accounting and > manufacturing). One of the first exercice I have done is to localize (in > french) the accounting module. > > For that, I have used new entities to store the UserInterfaceLabel and > its languages translations and add the reading routine of these, in the > envsetup.bsh. In the *.ftl file I replace each literal sentence by a > corresponding UiLabel {UiLabel.AccCreatBillAcc} > > > example: (part of the loading file for one of these entities) > > > > > > uiLabel="Create Billing Account Role"/> > > > > > uiLabel="Cr?ation d'un compte de facturation"/> > uiLabel="Associer un role ? ce compte de facturation"/> > > > example: (extrac from the FindBillingAccount.ftl file) >
${UiLabel.AccBillingAcc}
> > >
>
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
 
> > > > <#if billingAccountRolesByParty?has_content> > <#assign colSpan = "5"> > > <#else> > <#assign colSpan = "4"> > > > > > > I don't know if it's the good solution but it seem working and > evolutive. For the moment I have not published these modifications, only > because I continue to discovers OFBiz and I want to be sure there is no > build-in solution. > If you want I can sent a more detail mail with all the files. > > Regards > Olivier > > arukala@gmx.de a ?crit: > > >Hallo Ofbiz Users and Developers, > > > >I am looking for help on localisation works with ofbiz ( en-de, de-en)?? > >Did Any body Tried Localisation or Internationlaisation with Ofbiz > >Framework. > > > >I know this thread is discussed by some users but now I am intested to > >discuss for further... > > > >Did Any Body tried with JPublish or FreeMaker. for localising en-de, > >de-en?????????????? > >IF Yes PLease reply to this thread. How to do it ?? > > > >Do I need to download the JPublish or freemaker or not ??? > > > >If Yes, What should i do next????.. please help me............ > >If No, Please suggest me how to make localisation for E- Commece > >Application of OFBIZ 2.1 Stable version For Client Side. > > > >Thank You in Advance............ > > > >Yours Sincerely > >Arukala > > > > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From jonesde at ofbiz.org Wed Aug 13 01:53:05 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? In-Reply-To: <28231.1060762710@www64.gmx.net> References: <3F39D7ED.6040007@nereide.biz> <28231.1060762710@www64.gmx.net> Message-ID: <3F39F8C6.6010204@ofbiz.org> Arukala, We have a utility method for doing this sort of thing that gets the current Locale based on the request. If one is explicitly set in the session it uses that, otherwise it gets the locale from the HTTP header, or failing there uses the default locale for the server. Later, -David arukala@gmx.de wrote: > Hallo Olivier, > > Thanx for your reply. I got your point. I Hope It works and i will try. > but As U said that It just make changes of text in User Interface. I need > some more information pleaseeee.... > IN the main page I am planning to give the option to the user to select > language (English, German, French with small Flags.). > Now the question is The pages must change dynamically according to user > requested Language. > Hope you Catch my point. > Please suggest me with further information. > Thankyou in advance, > > Yours Sincerely > Arukala > > >>Hi, >> >>I'm currently learning ofbiz to be able to develop some functionals >>components in the futur (starting in september, accounting and >>manufacturing). One of the first exercice I have done is to localize (in >>french) the accounting module. >> >>For that, I have used new entities to store the UserInterfaceLabel and >>its languages translations and add the reading routine of these, in the >>envsetup.bsh. In the *.ftl file I replace each literal sentence by a >>corresponding UiLabel {UiLabel.AccCreatBillAcc} >> >> >>example: (part of the loading file for one of these entities) >> >> >> >> >> >> >uiLabel="Create Billing Account Role"/> >> >> >> >> >> >uiLabel="Cr?ation d'un compte de facturation"/> >> >uiLabel="Associer un role ? ce compte de facturation"/> >> >> >>example: (extrac from the FindBillingAccount.ftl file) >>
${UiLabel.AccBillingAcc}
>> >> >>
>>
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
 
>> >> >> >> <#if billingAccountRolesByParty?has_content> >> <#assign colSpan = "5"> >> >> <#else> >> <#assign colSpan = "4"> >> >> >> >> >> >>I don't know if it's the good solution but it seem working and >>evolutive. For the moment I have not published these modifications, only >>because I continue to discovers OFBiz and I want to be sure there is no >>build-in solution. >>If you want I can sent a more detail mail with all the files. >> >>Regards >>Olivier >> >>arukala@gmx.de a ?crit: >> >> >>>Hallo Ofbiz Users and Developers, >>> >>>I am looking for help on localisation works with ofbiz ( en-de, de-en)?? >>>Did Any body Tried Localisation or Internationlaisation with Ofbiz >>>Framework. >>> >>>I know this thread is discussed by some users but now I am intested to >>>discuss for further... >>> >>>Did Any Body tried with JPublish or FreeMaker. for localising en-de, >>>de-en?????????????? >>>IF Yes PLease reply to this thread. How to do it ?? >>> >>>Do I need to download the JPublish or freemaker or not ??? >>> >>>If Yes, What should i do next????.. please help me............ >>>If No, Please suggest me how to make localisation for E- Commece >>>Application of OFBIZ 2.1 Stable version For Client Side. >>> >>>Thank You in Advance............ >>> >>>Yours Sincerely >>>Arukala >>> >>> >>> >> >> >> >>------------------------------------------------------- >>This SF.Net email sponsored by: Free pre-built ASP.NET sites including >>Data Reports, E-commerce, Portals, and Forums are available now. >>Download today and enter to win an XBOX or Visual Studio .NET. >> > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > >>_______________________________________________ >>OFBiz-Users mailing list >>OFBiz-Users@lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> > > From arukala at gmx.de Wed Aug 13 08:45:01 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]need help to clear ? (Question Mark) in Form (New Customer) References: <3F39F8C6.6010204@ofbiz.org> Message-ID: <7467.1060786204@www47.gmx.net> Hallo Users, Please visit this http://141.44.242.67:8080/ecommerce/control/newcustomer I am facing little problem in the form Question is : I am getting ? (Qestion Mark) in the form. Could U please Suggest what should i do to remove that ? marks. and it seems some chracter encoding problems???(I Think) Thanx In Advance Regards, Arukala -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From arukala at gmx.de Wed Aug 13 09:36:18 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? References: <3F39F625.3090105@ofbiz.org> Message-ID: <25861.1060786472@www47.gmx.net> Hallo David, Thanx for your Suggestion, Could you Please make a clear note (step by step) for solving a localisation in your point of you (I dont get your thoughts). I mean what are the files I have to create and publish the content according to the user requests. could u please give me example?. Sincerely Arukala > > This is an interesting way of doing it, but I still think a similar appro > ach > using properties files would be easier. > > We do have i18n features in the design of the Content entities, and those > will > be used in the future to have i18n'ed descriptions, names, etc for Produc > ts, > Categories, and so on. > > For things that are not database oriented, such as UI templates (ie FTL f > iles, > etc), I think it would be better to put the data in files so that it is e > asier > to revision control and coordinate during development, not to mention kee > ping > the versions straight in production. > > Our preferred approach to date has been to use properties files. These ca > n > easily be accessed in Java classes, and also in FTL files. The BSH script > can > load the properties object and put it in the context, and then the FTL fi > le can > simply refer to the property desired for each label, message, etc. > > I hope that helps with some understanding of our planned direction. Note > that we > do have some utility methods for this in the UtilProperties class... > > Later, > -David Jones > > > olivier heintz wrote: > > > Hi, > > > > I'm currently learning ofbiz to be able to develop some functionals > > components in the futur (starting in september, accounting and > > manufacturing). One of the first exercice I have done is to localize (i > n > > french) the accounting module. > > > > For that, I have used new entities to store the UserInterfaceLabel and > > its languages translations and add the reading routine of these, in the > > > envsetup.bsh. In the *.ftl file I replace each literal sentence by a > > corresponding UiLabel {UiLabel.AccCreatBillAcc} > > > > > > example: (part of the loading file for one of these entities) > > > > > > > > > > > > > uiLabel="Create Billing Account Role"/> > > > > > > > > > > > > > uiLabel="Associer un role ? ce compte de facturation"/> > > > > > > example: (extrac from the FindBillingAccount.ftl file) > >
${UiLabel.AccBillingAcc}
> > > > > >
> >
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
 
> > > > > > > > <#if billingAccountRolesByParty?has_content> > > <#assign colSpan = "5"> > > > > <#else> > > <#assign colSpan = "4"> > > > > > > > > > > > I don't know if it's the good solution but it seem working and > > evolutive. For the moment I have not published these modifications, onl > y > > because I continue to discovers OFBiz and I want to be sure there is no > > > build-in solution. > > If you want I can sent a more detail mail with all the files. > > > > Regards > > Olivier > > > > arukala@gmx.de a ?crit: > > > >> Hallo Ofbiz Users and Developers, > >> > >> I am looking for help on localisation works with ofbiz ( en-de, de-en) > ?? > >> Did Any body Tried Localisation or Internationlaisation with Ofbiz > >> Framework. > >> > >> I know this thread is discussed by some users but now I am intested to > >> discuss for further... > >> > >> Did Any Body tried with JPublish or FreeMaker. for localising en-de, > >> de-en?????????????? > >> IF Yes PLease reply to this thread. How to do it ?? > >> > >> Do I need to download the JPublish or freemaker or not ??? > >> If Yes, What should i do next????.. please help me............ > >> If No, Please suggest me how to make localisation for E- Commece > >> Application of OFBIZ 2.1 Stable version For Client Side. > >> > >> Thank You in Advance............ > >> > >> Yours Sincerely Arukala > >> > >> > >> > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_0 > 1/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From jonesde at ofbiz.org Wed Aug 13 11:01:06 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? In-Reply-To: <25861.1060786472@www47.gmx.net> References: <3F39F625.3090105@ofbiz.org> <25861.1060786472@www47.gmx.net> Message-ID: <3F3A7AEE.5040704@ofbiz.org> Arukala, Unfortunately I don't have time for such a thing. There are various examples of ways of doing this in the source base, and if you are having trouble understanding what is happening then all I can offer you is a training or support contract. For more details see the www.ofbiz.org/services.html page. Later, -David arukala@gmx.de wrote: > Hallo David, > > Thanx for your Suggestion, Could you Please make a clear note (step by step) > for solving a localisation in your point of you (I dont get your thoughts). > I mean what are the files I have to create and publish the content according > to the user requests. could u please give me example?. > > Sincerely > Arukala > > >>This is an interesting way of doing it, but I still think a similar appro >>ach >>using properties files would be easier. >> >>We do have i18n features in the design of the Content entities, and those >> will >>be used in the future to have i18n'ed descriptions, names, etc for Produc >>ts, >>Categories, and so on. >> >>For things that are not database oriented, such as UI templates (ie FTL f >>iles, >>etc), I think it would be better to put the data in files so that it is e >>asier >>to revision control and coordinate during development, not to mention kee >>ping >>the versions straight in production. >> >>Our preferred approach to date has been to use properties files. These ca >>n >>easily be accessed in Java classes, and also in FTL files. The BSH script >> can >>load the properties object and put it in the context, and then the FTL fi >>le can >>simply refer to the property desired for each label, message, etc. >> >>I hope that helps with some understanding of our planned direction. Note >>that we >>do have some utility methods for this in the UtilProperties class... >> >>Later, >>-David Jones >> >> >>olivier heintz wrote: >> >> >>>Hi, >>> >>>I'm currently learning ofbiz to be able to develop some functionals >>>components in the futur (starting in september, accounting and >>>manufacturing). One of the first exercice I have done is to localize (i >> >>n >> >>>french) the accounting module. >>> >>>For that, I have used new entities to store the UserInterfaceLabel and >>>its languages translations and add the reading routine of these, in the >> >> >> >>>envsetup.bsh. In the *.ftl file I replace each literal sentence by a >>>corresponding UiLabel {UiLabel.AccCreatBillAcc} >>> >>> >>>example: (part of the loading file for one of these entities) >>> >>> >> >>> >>> >>> >>> >>uiLabel="Create Billing Account Role"/> >>> >>> >> >>> >>> >>> >>> >>uiLabel="Associer un role ? ce compte de facturation"/> >>> >>> >>>example: (extrac from the FindBillingAccount.ftl file) >>>
${UiLabel.AccBillingAcc}
>>> >>> >>>
>>>
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
 
>>> >>> >>> >>> <#if billingAccountRolesByParty?has_content> >>> <#assign colSpan = "5"> >>> >>> <#else> >>> <#assign colSpan = "4"> >>> >>> >> >>> >>> >>>I don't know if it's the good solution but it seem working and >>>evolutive. For the moment I have not published these modifications, onl >> >>y >> >>>because I continue to discovers OFBiz and I want to be sure there is no >> >> >> >>>build-in solution. >>>If you want I can sent a more detail mail with all the files. >>> >>>Regards >>>Olivier >>> >>>arukala@gmx.de a ?crit: >>> >>> >>>>Hallo Ofbiz Users and Developers, >>>> >>>>I am looking for help on localisation works with ofbiz ( en-de, de-en) >> >>?? >> >>>>Did Any body Tried Localisation or Internationlaisation with Ofbiz >>>>Framework. >>>> >>>>I know this thread is discussed by some users but now I am intested to >>>>discuss for further... >>>> >>>>Did Any Body tried with JPublish or FreeMaker. for localising en-de, >>>>de-en?????????????? >>>>IF Yes PLease reply to this thread. How to do it ?? >>>> >>>>Do I need to download the JPublish or freemaker or not ??? >>>>If Yes, What should i do next????.. please help me............ >>>>If No, Please suggest me how to make localisation for E- Commece >>>>Application of OFBIZ 2.1 Stable version For Client Side. >>>> >>>>Thank You in Advance............ >>>> >>>>Yours Sincerely Arukala >>>> >>>> >>>> >>> >>> >>> >>>------------------------------------------------------- >>>This SF.Net email sponsored by: Free pre-built ASP.NET sites including >>>Data Reports, E-commerce, Portals, and Forums are available now. >>>Download today and enter to win an XBOX or Visual Studio .NET. >>>http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_0 >> >>1/01 >> >>>_______________________________________________ >>>OFBiz-Users mailing list >>>OFBiz-Users@lists.sourceforge.net >>>https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> >> >> >>------------------------------------------------------- >>This SF.Net email sponsored by: Free pre-built ASP.NET sites including >>Data Reports, E-commerce, Portals, and Forums are available now. >>Download today and enter to win an XBOX or Visual Studio .NET. >> > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > >>_______________________________________________ >>OFBiz-Users mailing list >>OFBiz-Users@lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> > > From olivier.heintz at nereide.biz Wed Aug 13 11:11:06 2003 From: olivier.heintz at nereide.biz (olivier heintz) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? In-Reply-To: <3F39F625.3090105@ofbiz.org> References: <3CFA958A-CCE9-11D7-B5D3-000393641AC6@gmx.net> <5602.1060715143@www55.gmx.net> <3F39D7ED.6040007@nereide.biz> <3F39F625.3090105@ofbiz.org> Message-ID: <3F3A47DB.9010206@nereide.biz> Ok, I have modified the UiLabel file to transform them in properties file format and changed the code in the envsetup.bsh, so now that's work. For the moment the language code is Static in the envsetup.bsh, but it's easy to use a field selectable by the user. Adding at the end of envsetup.bsh; Properties uiLabelProp = UtilProperties.getProperties("uilabelAcc_fr.properties"); pageMap = context.get("page"); uiLabelProp.setProperty("PageTitle", uiLabelProp.getProperty(pageMap.get("title"))); context.put("UiLabel", uiLabelProp); example of uilabelAcc_fr.properties file: #### # OFBiz UiLabel Properties used for the accounting module # AccAcc=Compte AccAccId=Compte ID AccAccLimit=Limite facturaction AccBillingAcc=Comptes de facturation AccBillingAcc_short=Comptes facturation AccCreatBillAcc=Cr?ation d'un compte de facturation AccCreatBillAccRole=Associer un role ? ce compte de facturation AccCreatBillAccTerm=Cr?ation d'un terme du compte de facturation AccDescription=Description AccGlAcc=Comptes comptable AccInvoices=Factures AccManagMainPage=Page principale Gestion des comptes comptables David E. Jones a ?crit: > > This is an interesting way of doing it, but I still think a similar > approach using properties files would be easier. > > We do have i18n features in the design of the Content entities, and > those will be used in the future to have i18n'ed descriptions, names, > etc for Products, Categories, and so on. > > For things that are not database oriented, such as UI templates (ie > FTL files, etc), I think it would be better to put the data in files > so that it is easier to revision control and coordinate during > development, not to mention keeping the versions straight in production. > > Our preferred approach to date has been to use properties files. These > can easily be accessed in Java classes, and also in FTL files. The BSH > script can load the properties object and put it in the context, and > then the FTL file can simply refer to the property desired for each > label, message, etc. > > I hope that helps with some understanding of our planned direction. > Note that we do have some utility methods for this in the > UtilProperties class... > > Later, > -David Jones > > > olivier heintz wrote: > >> Hi, >> >> I'm currently learning ofbiz to be able to develop some functionals >> components in the futur (starting in september, accounting and >> manufacturing). One of the first exercice I have done is to localize >> (in french) the accounting module. >> >> For that, I have used new entities to store the UserInterfaceLabel >> and its languages translations and add the reading routine of these, >> in the envsetup.bsh. In the *.ftl file I replace each literal >> sentence by a corresponding UiLabel {UiLabel.AccCreatBillAcc} >> >> >> example: (part of the loading file for one of these entities) >> >> >> >> >> > uiLabel="Create Billing Account"/> >> > uiLabel="Create Billing Account Role"/> >> >> >> >> >> > uiLabel="Cr?ation d'un compte de facturation"/> >> > uiLabel="Associer un role ? ce compte de facturation"/> >> >> >> example: (extrac from the FindBillingAccount.ftl file) >>
${UiLabel.AccBillingAcc}
>> >> >>
>>
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
 
>> >> >> >> <#if billingAccountRolesByParty?has_content> >> <#assign colSpan = "5"> >> >> <#else> >> <#assign colSpan = "4"> >> >> >> >> >> I don't know if it's the good solution but it seem working and >> evolutive. For the moment I have not published these modifications, >> only because I continue to discovers OFBiz and I want to be sure >> there is no build-in solution. >> If you want I can sent a more detail mail with all the files. >> >> Regards >> Olivier >> >> arukala@gmx.de a ?crit: >> >>> Hallo Ofbiz Users and Developers, >>> >>> I am looking for help on localisation works with ofbiz ( en-de, >>> de-en)?? >>> Did Any body Tried Localisation or Internationlaisation with Ofbiz >>> Framework. >>> >>> I know this thread is discussed by some users but now I am intested to >>> discuss for further... >>> >>> Did Any Body tried with JPublish or FreeMaker. for localising en-de, >>> de-en?????????????? >>> IF Yes PLease reply to this thread. How to do it ?? >>> >>> Do I need to download the JPublish or freemaker or not ??? >>> If Yes, What should i do next????.. please help me............ >>> If No, Please suggest me how to make localisation for E- Commece >>> Application of OFBIZ 2.1 Stable version For Client Side. >>> >>> Thank You in Advance............ >>> >>> Yours Sincerely Arukala >>> >>> >>> >> >> >> >> ------------------------------------------------------- >> This SF.Net email sponsored by: Free pre-built ASP.NET sites including >> Data Reports, E-commerce, Portals, and Forums are available now. >> Download today and enter to win an XBOX or Visual Studio .NET. >> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >> _______________________________________________ >> OFBiz-Users mailing list >> OFBiz-Users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > From jonesde at ofbiz.org Wed Aug 13 12:20:28 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? In-Reply-To: <3F3A47DB.9010206@nereide.biz> References: <3CFA958A-CCE9-11D7-B5D3-000393641AC6@gmx.net> <5602.1060715143@www55.gmx.net> <3F39D7ED.6040007@nereide.biz> <3F39F625.3090105@ofbiz.org> <3F3A47DB.9010206@nereide.biz> Message-ID: <3F3A83C0.5090905@ofbiz.org> This is a good example of how to do i18n for labels in FTL/BSH/JP user interfaces. The only thing I would change is perhaps the names of some of the variables (like lower-casing the u in UiLabel), but it's not a huge deal... Later, -David olivier heintz wrote: > Ok, > I have modified the UiLabel file to transform them in properties file > format and changed the code in the envsetup.bsh, so now that's work. > For the moment the language code is Static in the envsetup.bsh, but it's > easy to use a field selectable by the user. > > Adding at the end of envsetup.bsh; > > Properties uiLabelProp = > UtilProperties.getProperties("uilabelAcc_fr.properties"); > pageMap = context.get("page"); > uiLabelProp.setProperty("PageTitle", > uiLabelProp.getProperty(pageMap.get("title"))); > context.put("UiLabel", uiLabelProp); > > example of uilabelAcc_fr.properties file: > #### > # OFBiz UiLabel Properties used for the accounting module > # > AccAcc=Compte > AccAccId=Compte ID > AccAccLimit=Limite facturaction > AccBillingAcc=Comptes de facturation > AccBillingAcc_short=Comptes facturation > AccCreatBillAcc=Cr?ation d'un compte de facturation > AccCreatBillAccRole=Associer un role ? ce compte de facturation > AccCreatBillAccTerm=Cr?ation d'un terme du compte de facturation > AccDescription=Description > AccGlAcc=Comptes comptable > AccInvoices=Factures > AccManagMainPage=Page principale Gestion des comptes comptables > > > > David E. Jones a ?crit: > >> >> This is an interesting way of doing it, but I still think a similar >> approach using properties files would be easier. >> >> We do have i18n features in the design of the Content entities, and >> those will be used in the future to have i18n'ed descriptions, names, >> etc for Products, Categories, and so on. >> >> For things that are not database oriented, such as UI templates (ie >> FTL files, etc), I think it would be better to put the data in files >> so that it is easier to revision control and coordinate during >> development, not to mention keeping the versions straight in production. >> >> Our preferred approach to date has been to use properties files. These >> can easily be accessed in Java classes, and also in FTL files. The BSH >> script can load the properties object and put it in the context, and >> then the FTL file can simply refer to the property desired for each >> label, message, etc. >> >> I hope that helps with some understanding of our planned direction. >> Note that we do have some utility methods for this in the >> UtilProperties class... >> >> Later, >> -David Jones >> >> >> olivier heintz wrote: >> >>> Hi, >>> >>> I'm currently learning ofbiz to be able to develop some functionals >>> components in the futur (starting in september, accounting and >>> manufacturing). One of the first exercice I have done is to localize >>> (in french) the accounting module. >>> >>> For that, I have used new entities to store the UserInterfaceLabel >>> and its languages translations and add the reading routine of these, >>> in the envsetup.bsh. In the *.ftl file I replace each literal >>> sentence by a corresponding UiLabel {UiLabel.AccCreatBillAcc} >>> >>> >>> example: (part of the loading file for one of these entities) >>> >>> >>> >>> >>> >> uiLabel="Create Billing Account"/> >>> >> uiLabel="Create Billing Account Role"/> >>> >>> >>> >>> >>> >> uiLabel="Cr?ation d'un compte de facturation"/> >>> >> uiLabel="Associer un role ? ce compte de facturation"/> >>> >>> >>> example: (extrac from the FindBillingAccount.ftl file) >>>
${UiLabel.AccBillingAcc}
>>> >>> >>>
>>>
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
 
>>> >>> >>> >>> <#if billingAccountRolesByParty?has_content> >>> <#assign colSpan = "5"> >>> >>> <#else> >>> <#assign colSpan = "4"> >>> >>> >>> >>> >>> I don't know if it's the good solution but it seem working and >>> evolutive. For the moment I have not published these modifications, >>> only because I continue to discovers OFBiz and I want to be sure >>> there is no build-in solution. >>> If you want I can sent a more detail mail with all the files. >>> >>> Regards >>> Olivier >>> >>> arukala@gmx.de a ?crit: >>> >>>> Hallo Ofbiz Users and Developers, >>>> >>>> I am looking for help on localisation works with ofbiz ( en-de, >>>> de-en)?? >>>> Did Any body Tried Localisation or Internationlaisation with Ofbiz >>>> Framework. >>>> >>>> I know this thread is discussed by some users but now I am intested to >>>> discuss for further... >>>> >>>> Did Any Body tried with JPublish or FreeMaker. for localising en-de, >>>> de-en?????????????? >>>> IF Yes PLease reply to this thread. How to do it ?? >>>> >>>> Do I need to download the JPublish or freemaker or not ??? >>>> If Yes, What should i do next????.. please help me............ >>>> If No, Please suggest me how to make localisation for E- Commece >>>> Application of OFBIZ 2.1 Stable version For Client Side. >>>> >>>> Thank You in Advance............ >>>> >>>> Yours Sincerely Arukala >>>> >>>> >>>> >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email sponsored by: Free pre-built ASP.NET sites including >>> Data Reports, E-commerce, Portals, and Forums are available now. >>> Download today and enter to win an XBOX or Visual Studio .NET. >>> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >>> >>> _______________________________________________ >>> OFBiz-Users mailing list >>> OFBiz-Users@lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> >> >> >> >> >> ------------------------------------------------------- >> This SF.Net email sponsored by: Free pre-built ASP.NET sites including >> Data Reports, E-commerce, Portals, and Forums are available now. >> Download today and enter to win an XBOX or Visual Studio .NET. >> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >> >> _______________________________________________ >> OFBiz-Users mailing list >> OFBiz-Users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/ofbiz-users >> >> > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users From bmj at camfour.com Wed Aug 13 13:32:06 2003 From: bmj at camfour.com (Brian Johnson) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Checkout - Shipping estimate Message-ID: <20030813202600.GA9814@camfour.com> If ofbiz can't calculate shipping for an order then you can't get past the checkoutoptions screen. This is with yesterday's CVS. It used to bring you to the next screen, and show the "Fees will be calculated offline" message, now it keeps bringing you back to the same screen and you can't continue. Also, Webtools - Data Import wont import large (>1000ish) numbers of entities. The log says "Timeout set to 2 hours", but then the exception says "The transaction has timed out and has been rolledback and closed". This is after it's worked for ~20 seconds. I'll provide the complete stack trace on request, but it's long. I broke-up the xml files into smaller chunks and it all imported ok. This is with Jetty/Postgresql/Tyrex. -- Brian Johnson From jaz at ofbiz.org Wed Aug 13 14:30:43 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Checkout - Shipping estimate References: <20030813202600.GA9814@camfour.com> Message-ID: <000801c361df$38d329b0$8901010a@AJZT30> > If ofbiz can't calculate shipping for an order then you can't get past > the checkoutoptions screen. > This is with yesterday's CVS. > It used to bring you to the next screen, and show the "Fees will be > calculated offline" message, now it keeps bringing you back to the same > screen and you can't continue. > Thank you for reporting this, I will take a look get it fixed. > Also, Webtools - Data Import wont import large (>1000ish) numbers of > entities. The log says "Timeout set to 2 hours", but then the exception > says "The transaction has timed out and has been rolledback and closed". > This is after it's worked for ~20 seconds. > I'll provide the complete stack trace on request, but it's long. > I broke-up the xml files into smaller chunks and it all imported ok. > This is with Jetty/Postgresql/Tyrex. There was a problem with setting the timeouts, but this has been fixed for several weeks. The problem is probably with tyrex not honoring the timeout setting. Probably just another one of those bugs which is why we prefer JOTM. Since you setup is very standard, why use Tyrex?? That is just asking for trouble. :) -Andy From jaz at ofbiz.org Wed Aug 13 14:51:04 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Checkout - Shipping estimate References: <20030813202600.GA9814@camfour.com> <000801c361df$38d329b0$8901010a@AJZT30> Message-ID: <002301c361e2$c35fbb40$8901010a@AJZT30> > > If ofbiz can't calculate shipping for an order then you can't get past > > the checkoutoptions screen. > > This is with yesterday's CVS. > > It used to bring you to the next screen, and show the "Fees will be > > calculated offline" message, now it keeps bringing you back to the same > > screen and you can't continue. > > > > Thank you for reporting this, I will take a look get it fixed. > This is fixed in CVS, thanks for the report! -Andy From bmj at camfour.com Wed Aug 13 15:03:43 2003 From: bmj at camfour.com (Brian Johnson) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Checkout - Shipping estimate In-Reply-To: <000801c361df$38d329b0$8901010a@AJZT30> References: <20030813202600.GA9814@camfour.com> <000801c361df$38d329b0$8901010a@AJZT30> Message-ID: <20030813215238.GA14059@camfour.com> On Wed, Aug 13, 2003 at 05:09:44PM -0400, Andy Zeneski wrote: > > Also, Webtools - Data Import wont import large (>1000ish) numbers of > > entities. The log says "Timeout set to 2 hours", but then the exception > > says "The transaction has timed out and has been rolledback and closed". > > This is after it's worked for ~20 seconds. > > I'll provide the complete stack trace on request, but it's long. > > I broke-up the xml files into smaller chunks and it all imported ok. > > This is with Jetty/Postgresql/Tyrex. > > There was a problem with setting the timeouts, but this has been fixed for > several weeks. The problem is probably with tyrex not honoring the timeout > setting. Probably just another one of those bugs which is why we prefer > JOTM. Since you setup is very standard, why use Tyrex?? That is just asking > for trouble. :) --end quoted text--- That's kinda what I figured. I'm only using tyrex for now because JOTM didn't work immediately, and tyrex did. I'll have to figure out why that didn't work and then switch soon. Thanks. -- Brian Johnson From schen at graciousstyle.com Wed Aug 13 16:39:07 2003 From: schen at graciousstyle.com (Si Chen) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]fk-name in entity relations Message-ID: <027a01c361f1$d1f25c80$78703c04@flopsy> Hello. Hope this is not a silly question, but what does fk-name do that the tag does not? I am looking at entitymodel_product.xml, and there is a But there is no field PROD_CC_CATEGORY in PRODUCT_CATEGORY in the database. Besides, doesn't key-map define the key relationships? Si Chen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030813/b54fafde/attachment.htm From arukala at gmx.de Wed Aug 13 17:55:12 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]fk-name in entity relations References: <027a01c361f1$d1f25c80$78703c04@flopsy> Message-ID: <2112.1060822041@www61.gmx.net> Hallo, It is just userdefined foreign key name prod_cc_category of the table product_category this foriegnkey is referenced in prod_catalog_category table. please check the table prod_catalog_category there u see the description of table in that table there is three userdefined forienkeys defined. Regards, Arukala > Hello. Hope this is not a silly question, but what does fk-name do that > the tag does not? I am looking at entitymodel_product.xml, > and there is a > > > rel-entity-name="ProductCategory"> > > > > But there is no field PROD_CC_CATEGORY in PRODUCT_CATEGORY in the > database. Besides, doesn't key-map define the key relationships? > > Si Chen > -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From jaz at ofbiz.org Wed Aug 13 18:25:03 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]fk-name in entity relations References: <027a01c361f1$d1f25c80$78703c04@flopsy> Message-ID: <006e01c361fd$f2c85020$8901010a@AJZT30> Creates a foreign key in the database with that name. -Andy ----- Original Message ----- From: Si Chen To: ofbiz-users@lists.sourceforge.net Sent: Wednesday, August 13, 2003 7:22 PM Subject: [OFBiz-Users]fk-name in entity relations Hello. Hope this is not a silly question, but what does fk-name do that the tag does not? I am looking at entitymodel_product.xml, and there is a But there is no field PROD_CC_CATEGORY in PRODUCT_CATEGORY in the database. Besides, doesn't key-map define the key relationships? Si Chen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030813/cc33a3bf/attachment.htm From arukala at gmx.de Thu Aug 14 08:10:12 2003 From: arukala at gmx.de (arukala@gmx.de) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Localisation Please ????? References: <3F3A47DB.9010206@nereide.biz> Message-ID: <6386.1060873769@www64.gmx.net> Hallo Olivier, I am not fallowing you. I have still questions about your way of localization. I am new bie here. MY question is : Did You Created any Entity in Database by name of UiLabel if yes please details info.?? or Where I Have to put the Properties? Could YOu please start from the Scratch. I got in confusion with your two postings about localisation. Please, Dont Mind, Post again the Correct and Adjusted Script and where I Have to place the files and where I Have to place the scripts. Hope You Understands And Help me Sincerely Arukala > Ok, > I have modified the UiLabel file to transform them in properties file > format and changed the code in the envsetup.bsh, so now that's work. > For the moment the language code is Static in the envsetup.bsh, but it's > easy to use a field selectable by the user. > > Adding at the end of envsetup.bsh; > > Properties uiLabelProp = > UtilProperties.getProperties("uilabelAcc_fr.properties"); > pageMap = context.get("page"); > uiLabelProp.setProperty("PageTitle", > uiLabelProp.getProperty(pageMap.get("title"))); > context.put("UiLabel", uiLabelProp); > > example of uilabelAcc_fr.properties file: > #### > # OFBiz UiLabel Properties used for the accounting module > # > AccAcc=Compte > AccAccId=Compte ID > AccAccLimit=Limite facturaction > AccBillingAcc=Comptes de facturation > AccBillingAcc_short=Comptes facturation > AccCreatBillAcc=Cr?ation d'un compte de facturation > AccCreatBillAccRole=Associer un role ? ce compte de facturation > AccCreatBillAccTerm=Cr?ation d'un terme du compte de facturation > AccDescription=Description > AccGlAcc=Comptes comptable > AccInvoices=Factures > AccManagMainPage=Page principale Gestion des comptes comptables > > > > David E. Jones a ?crit: > > > > > This is an interesting way of doing it, but I still think a similar > > approach using properties files would be easier. > > > > We do have i18n features in the design of the Content entities, and > > those will be used in the future to have i18n'ed descriptions, names, > > etc for Products, Categories, and so on. > > > > For things that are not database oriented, such as UI templates (ie > > FTL files, etc), I think it would be better to put the data in files > > so that it is easier to revision control and coordinate during > > development, not to mention keeping the versions straight in production > . > > > > Our preferred approach to date has been to use properties files. These > > can easily be accessed in Java classes, and also in FTL files. The BSH > > script can load the properties object and put it in the context, and > > then the FTL file can simply refer to the property desired for each > > label, message, etc. > > > > I hope that helps with some understanding of our planned direction. > > Note that we do have some utility methods for this in the > > UtilProperties class... > > > > Later, > > -David Jones > > > > > > olivier heintz wrote: > > > >> Hi, > >> > >> I'm currently learning ofbiz to be able to develop some functionals > >> components in the futur (starting in september, accounting and > >> manufacturing). One of the first exercice I have done is to localize > >> (in french) the accounting module. > >> > >> For that, I have used new entities to store the UserInterfaceLabel > >> and its languages translations and add the reading routine of these, > >> in the envsetup.bsh. In the *.ftl file I replace each literal > >> sentence by a corresponding UiLabel {UiLabel.AccCreatBillAcc} > >> > >> > >> example: (part of the loading file for one of these entities) > >> > > >> > >> > >> > >> >> uiLabel="Create Billing Account"/> > >> >> uiLabel="Create Billing Account Role"/> > >> > >> > >> > >> > >> >> uiLabel="Cr?ation d'un compte de facturation"/> > >> >> uiLabel="Associer un role ? ce compte de facturation"/> > >> > >> > >> example: (extrac from the FindBillingAccount.ftl file) > >>
${UiLabel.AccBillingAcc}
> >> > >> > >>
> >>
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
 
> > >> > >> > >> > >> <#if billingAccountRolesByParty?has_content> > >> <#assign colSpan = "5"> > >> > > >> <#else> > >> <#assign colSpan = "4"> > >> > >> > >> > >> I don't know if it's the good solution but it seem working and > >> evolutive. For the moment I have not published these modifications, > >> only because I continue to discovers OFBiz and I want to be sure > >> there is no build-in solution. > >> If you want I can sent a more detail mail with all the files. > >> > >> Regards > >> Olivier > >> > >> arukala@gmx.de a ?crit: > >> > >>> Hallo Ofbiz Users and Developers, > >>> > >>> I am looking for help on localisation works with ofbiz ( en-de, > >>> de-en)?? > >>> Did Any body Tried Localisation or Internationlaisation with Ofbiz > >>> Framework. > >>> > >>> I know this thread is discussed by some users but now I am intested t > o > >>> discuss for further... > >>> > >>> Did Any Body tried with JPublish or FreeMaker. for localising en-de, > >>> de-en?????????????? > >>> IF Yes PLease reply to this thread. How to do it ?? > >>> > >>> Do I need to download the JPublish or freemaker or not ??? > >>> If Yes, What should i do next????.. please help me............ > >>> If No, Please suggest me how to make localisation for E- Commece > >>> Application of OFBIZ 2.1 Stable version For Client Side. > >>> > >>> Thank You in Advance............ > >>> > >>> Yours Sincerely Arukala > >>> > >>> > >>> > >> > >> > >> > >> ------------------------------------------------------- > >> This SF.Net email sponsored by: Free pre-built ASP.NET sites including > >> Data Reports, E-commerce, Portals, and Forums are available now. > >> Download today and enter to win an XBOX or Visual Studio .NET. > >> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_ > 01/01 > >> _______________________________________________ > >> OFBiz-Users mailing list > >> OFBiz-Users@lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_0 > 1/01 > > _______________________________________________ > > OFBiz-Users mailing list > > OFBiz-Users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > OFBiz-Users mailing list > OFBiz-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ofbiz-users > -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit?tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post From jaz at ofbiz.org Thu Aug 14 09:28:13 2003 From: jaz at ofbiz.org (Andy Zeneski) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]post from JaWE: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release References: <20030812191457.52347.qmail@web20505.mail.yahoo.com> Message-ID: <00dd01c36277$4fb8fea0$8901010a@AJZT30> Just wanted to make sure that the is just in reading our XPDL and you haven't had problems importing XPDL generated by JaWE correct? As you can see our reader is less strict. Might be nice to add some validation to OFBiz as well. I will update our XPDL as soon as possible. If you are interested, you surely could try and update it for us. -Andy ----- Original Message ----- From: Philip Lee To: ofbiz-users Sent: Tuesday, August 12, 2003 3:14 PM Subject: [OFBiz-Users]post from JaWE: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release This is copy of the question posted on JaWE mailing list ' Jawe: Re: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release' -philee ======================================================== Hi Philip, one of the new features in JaWE1.1 is the possibility to validate xpdls against WfMC's XPDL schema. Obviously, the document you've tried to open is not valid. Although it is not valid, you have had a possibility to proceed with opening the document. You can turn the validation ON and OFF by entering File->Configuration dialog. If you turn it off, the documents won't be validated, and if there are no a fatal errors when parsing documents, the JaWE will try to open them. You can see the complete list of new features and improvements in the whatsnew.txt file distributed with JaWE. I hope this helps. Regards, Sasa. ----- Original Message ----- From: Philip Lee To: JaWE@enhydra.org Sent: Tuesday, August 12, 2003 7:38 PM Subject: Jawe: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release Does anyone tried to open the orderprocessXPDL.xml from ofbiz with JaWE 1.1 latest release? I got lot of errors but the same file works fine with last version of JaWE 1.0 final. Any idea? ------------------------------------------------------------------------------ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030814/fd96ebd6/attachment.htm From ofbiz_a_dev at yahoo.com Thu Aug 14 09:39:03 2003 From: ofbiz_a_dev at yahoo.com (Philip Lee) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]load data into oracle 8.1 Message-ID: <20030814155918.83970.qmail@web20503.mail.yahoo.com> I have code from cvs (approx. 4-5 days back) and then I configured the localoracle with(and without) the following option Jetty when get started it creats tables into oracle properly but when I tried to load the data from install page of webtools I got following message Any idea? Thanks -Philee Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelData.xml (0 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataAccounting.xml (0 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataOrder.xml (0 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataParty.xml (0 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataProduct.xml (0 total rows so far) Loaded 55 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataShipment.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataWorkEffort.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\CountryCodeData.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\CurrencyData.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\GeoData.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\LanguageData.xml (55 total rows so far) Loaded 60 rows from c:\dev\ofbiz-cvs\commonapp\db\MimeTypeData.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\OrderProcessWorkflow.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\SecurityData.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\UnitData.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\ZzzPeriodData.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\ZzzScheduledBatchServices.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\ecommerce\etc\demo_merchant.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\ecommerce\etc\product_data.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\ecommerce\etc\ship_data.xml (115 total rows so far) Finished loading all data; 115 total rows updated. Error Messages: [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataAccounting.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataOrder.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataParty.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataProduct.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataWorkEffort.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\CountryCodeData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\CurrencyData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\GeoData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\LanguageData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\OrderProcessWorkflow.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\SecurityData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\UnitData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\ZzzPeriodData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\ZzzScheduledBatchServices.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\ecommerce\etc\demo_merchant.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\ecommerce\etc\product_data.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\ecommerce\etc\ship_data.xml"; Error was: A transaction error occurred reading data --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030814/626af781/attachment.htm From ofbiz_a_dev at yahoo.com Thu Aug 14 10:34:08 2003 From: ofbiz_a_dev at yahoo.com (Philip Lee) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]load data into oracle 8.1 In-Reply-To: <20030814155918.83970.qmail@web20503.mail.yahoo.com> Message-ID: <20030814172349.97056.qmail@web20514.mail.yahoo.com> forgot to add that with the same oracle settings but previous code i.e. ofbiz 2.1.1 (May 5, 2003 release) it was fine. These errors are from latest -cvs code -philee Philip Lee wrote: I have code from cvs (approx. 4-5 days back) and then I configured the localoracle with(and without) the following option Jetty when get started it creats tables into oracle properly but when I tried to load the data from install page of webtools I got following message Any idea? Thanks -Philee Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelData.xml (0 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataAccounting.xml (0 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataOrder.xml (0 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataParty.xml (0 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataProduct.xml (0 total rows so far) Loaded 55 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataShipment.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataWorkEffort.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\CountryCodeData.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\CurrencyData.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\GeoData.xml (55 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\LanguageData.xml (55 total rows so far) Loaded 60 rows from c:\dev\ofbiz-cvs\commonapp\db\MimeTypeData.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\OrderProcessWorkflow.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\SecurityData.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\UnitData.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\ZzzPeriodData.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\ZzzScheduledBatchServices.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\ecommerce\etc\demo_merchant.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\ecommerce\etc\product_data.xml (115 total rows so far) Loaded 0 rows from c:\dev\ofbiz-cvs\ecommerce\etc\ship_data.xml (115 total rows so far) Finished loading all data; 115 total rows updated. Error Messages: [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataAccounting.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataOrder.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataParty.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataProduct.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataWorkEffort.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\CountryCodeData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\CurrencyData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\GeoData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\LanguageData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\OrderProcessWorkflow.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\SecurityData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\UnitData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\ZzzPeriodData.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\commonapp\db\ZzzScheduledBatchServices.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\ecommerce\etc\demo_merchant.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\ecommerce\etc\product_data.xml"; Error was: A transaction error occurred reading data [install.loadData]: Error loading XML file "c:\dev\ofbiz-cvs\ecommerce\etc\ship_data.xml"; Error was: A transaction error occurred reading data --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030814/1ecc2f56/attachment.htm From ofbiz_a_dev at yahoo.com Thu Aug 14 10:36:05 2003 From: ofbiz_a_dev at yahoo.com (Philip Lee) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]post from JaWE: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release In-Reply-To: <00dd01c36277$4fb8fea0$8901010a@AJZT30> Message-ID: <20030814172709.50030.qmail@web20509.mail.yahoo.com> That is right, these are errors in opening file in JaWE 1.1 and not at import xpdl page. I will see if I can findout why these errors showed up. Thanks Philee Andy Zeneski wrote: Just wanted to make sure that the is just in reading our XPDL and you haven't had problems importing XPDL generated by JaWE correct? As you can see our reader is less strict. Might be nice to add some validation to OFBiz as well. I will update our XPDL as soon as possible. If you are interested, you surely could try and update it for us. -Andy ----- Original Message ----- From: Philip Lee To: ofbiz-users Sent: Tuesday, August 12, 2003 3:14 PM Subject: [OFBiz-Users]post from JaWE: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release This is copy of the question posted on JaWE mailing list ' Jawe: Re: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release' -philee ======================================================== Hi Philip, one of the new features in JaWE1.1 is the possibility to validate xpdls against WfMC's XPDL schema. Obviously, the document you've tried to open is not valid. Although it is not valid, you have had a possibility to proceed with opening the document. You can turn the validation ON and OFF by entering File->Configuration dialog. If you turn it off, the documents won't be validated, and if there are no a fatal errors when parsing documents, the JaWE will try to open them. You can see the complete list of new features and improvements in the whatsnew.txt file distributed with JaWE. I hope this helps. Regards, Sasa. ----- Original Message ----- From: Philip Lee To: JaWE@enhydra.org Sent: Tuesday, August 12, 2003 7:38 PM Subject: Jawe: ofbiz 2.1.1 (cvs code) and JaWE1.1 new release Does anyone tried to open the orderprocessXPDL.xml from ofbiz with JaWE 1.1 latest release? I got lot of errors but the same file works fine with last version of JaWE 1.0 final. Any idea? --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ofbiz.org/pipermail/users/attachments/20030814/0d88542c/attachment.htm From jonesde at ofbiz.org Thu Aug 14 10:39:11 2003 From: jonesde at ofbiz.org (David E. Jones) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]load data into oracle 8.1 In-Reply-To: <20030814155918.83970.qmail@web20503.mail.yahoo.com> References: <20030814155918.83970.qmail@web20503.mail.yahoo.com> Message-ID: <3F3BBC48.9000506@ofbiz.org> One idea: don't use Tyrex. In the console log you will probably see transaction timeout exceptions. This happens because the set transaction timeout stuff doesn't seem to work in Tyrex. Later, -David Jones Philip Lee wrote: > I have code from cvs (approx. 4-5 days back) and then I configured the > localoracle with(and without) the following option > > isolation-level="ReadCommitted"/> > > Jetty when get started it creats tables into oracle properly but when > I tried to load the data from install page of webtools I got following > message > > Any idea? > > Thanks > > -Philee > > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelData.xml (0 total rows > so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataAccounting.xml (0 > total rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataOrder.xml (0 total > rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataParty.xml (0 total > rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataProduct.xml (0 > total rows so far) > * > Loaded 55 rows from > c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataShipment.xml (55 > total rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataWorkEffort.xml (55 > total rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\CountryCodeData.xml (55 total rows > so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\CurrencyData.xml (55 total rows so > far) > * > Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\GeoData.xml (55 > total rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\LanguageData.xml (55 total rows so > far) > * > Loaded 60 rows from > c:\dev\ofbiz-cvs\commonapp\db\MimeTypeData.xml (115 total rows > so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\OrderProcessWorkflow.xml (115 > total rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\SecurityData.xml (115 total rows > so far) > * > Loaded 0 rows from c:\dev\ofbiz-cvs\commonapp\db\UnitData.xml > (115 total rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\ZzzPeriodData.xml (115 total rows > so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\commonapp\db\ZzzScheduledBatchServices.xml (115 > total rows so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\ecommerce\etc\demo_merchant.xml (115 total rows > so far) > * > Loaded 0 rows from > c:\dev\ofbiz-cvs\ecommerce\etc\product_data.xml (115 total rows > so far) > * > Loaded 0 rows from c:\dev\ofbiz-cvs\ecommerce\etc\ship_data.xml > (115 total rows so far) > > Finished loading all data; 115 total rows updated. > > Error Messages: > > [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelData.xml"; Error was: A > transaction error occurred reading data > > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataAccounting.xml"; > Error was: A transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataOrder.xml"; Error > was: A transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataParty.xml"; Error > was: A transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataProduct.xml"; > Error was: A transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\AaaDataModelDataWorkEffort.xml"; > Error was: A transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\CountryCodeData.xml"; Error was: > A transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\CurrencyData.xml"; Error was: A > transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\GeoData.xml"; Error was: A > transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\LanguageData.xml"; Error was: A > transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\OrderProcessWorkflow.xml"; Error > was: A transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\SecurityData.xml"; Error was: A > transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\UnitData.xml"; Error was: A > transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\ZzzPeriodData.xml"; Error was: A > transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\commonapp\db\ZzzScheduledBatchServices.xml"; > Error was: A transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\ecommerce\etc\demo_merchant.xml"; Error was: A > transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\ecommerce\etc\product_data.xml"; Error was: A > transaction error occurred reading data > * [install.loadData]: Error loading XML file > "c:\dev\ofbiz-cvs\ecommerce\etc\ship_data.xml"; Error was: A > transaction error occurred reading data > > ------------------------------------------------------------------------ > Do you Yahoo!? > Yahoo! SiteBuilder > - > Free, easy-to-use web site design software From Matthias.Ohlemeyer at EK-Grosseinkauf.de Fri Aug 15 01:22:01 2003 From: Matthias.Ohlemeyer at EK-Grosseinkauf.de (Ohlemeyer Matthias) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Duplicates in Keyword AND-Search Message-ID: Hi, just came across a peculiarity in the currently implemented keyword search, which I do not fully understand: Bug or feature? Prerequisite: A Product with (at least) two keywords of different relevancy weights, where one is a prefix of the other, e.g. Keyword 1: "abcde" - weight 5 Keyword 2: "abc" - weight 1 If you now perform a keywordsearch for "abc" with the AND-operator you get exactly the same product two times in the result set. Is this intended? The underlying reason becomes clear when looking at the generated sql-code for the search: SELECT DISTINCT P1.PRODUCT_ID, PCM.SEQUENCE_NUM AS CAT_SEQ_NUM, (P1.RELEVANCY_WEIGHT) AS TOTAL_WEIGHT FROM PRODUCT_KEYWORD P1, PRODUCT_CATEGORY_MEMBER PCM WHERE ( P1.KEYWORD LIKE '%abc%' ) AND P1.PRODUCT_ID=PCM.PRODUCT_ID AND PCM.PRODUCT_CATEGORY_ID='KeywdSearchCat' AND (PCM.THRU_DATE IS NULL OR PCM.THRU_DATE > '2001-01-01 00:00:00.000000') ORDER BY CAT_SEQ_NUM, TOTAL_WEIGHT DESC If I do interpret this correctly, it means the following: 1. If you put the same product n times into the search category with different sequence nums it will be (at least) n times in the result set (highly improbable situation, I admit; can probably be ignored). 2. If you set up the product as above with different weights for keywords und prefixes thereof you will get the same product more than once in the result set. This situation might be common when using automatic indexing. Can anybody explain? --Matthias From robinsonrc at hotmail.com Fri Aug 15 07:45:06 2003 From: robinsonrc at hotmail.com (Rich Robinson) Date: Mon Aug 23 13:51:26 2004 Subject: [OFBiz-Users]Importing XPDL programmatically using the API Message-ID: Hello I'm trying to get to grips with the Workflow system, which I want to interact with through an application I'm writing. The first of my goals is to be able to successfully import an XPDL file from a (hopefully very small) Java application. Here is the bulk of the code I am using: import java.io.*; import java.net.*; import org.ofbiz.core.entity.*; import org.ofbiz.core.workflow.definition.*; .... GenericDelegator delegator = GenericDelegator.getGenericDelegator("delegator");//** try { XpdlReader.importXpdl( new File("E:\\workflow\\xpdl\\example1.xpdl").toURL(), delegator); System.out.println("XPDL file successfully imported"); } catch (MalformedURLException e) { e.printStackTrace() } .... However, I'm getting the following error when I run the app: java.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find bundle for base name cache, locale en_GB The error is caused by the line in the code marked with the ** comment. There are two things I think may potentially be causing this error: (1) I'm not using GenericDelegator in the correct way or (2) I'm missing something important on my classpath. Does anybody have any ideas what the cause of the error may be? Also, if anybody knows of any good resources or has any examples of accessing the Workflow system using the API I would love to see them. Many thanks for any help with this, Rich. _________________________________________________________________ Express yourself with cool emoticons - download MSN Messenger today! http://www.msn.co.uk/messenger From DMilks at greenridge.ca Fri Aug 15 08:41:02 2003 From: DMilks at greenridge.ca (Dylan Milks) Date: Mon Aug 23 13:51:27 2004 Subject: [OFBiz-Users]Don't want uri "main" to use a template Message-ID: <84D4D76946AC2F43AA9BDCD860DC667518C183@voyager.greenridge-int.ca> Hi. In my controller.xml I have the following (by default): Then in my jpublish.xml file I have (again, by default): WEB-INF/pagedefs templates WEB-INF/actions What I'm trying to do is have a one-to-one mapping between page uri, ftl page and beanshell script. Right now, the uri "main" uses the template "main_lr" where there are multiple pages included. But what I want to do is have the uri "main" not map to any template, just main.ftl (as defined in view-map part of controller.xml). But I still want to initiate a beanshell script when the uri "main" is called. In main.xml, if I remove the "" part, and type in /ecommerce/control/main, I get a blank page. Even if I put a blank template tag in main.xml, like "
${UiLabel.AccAccId}
${UiLabel.AccAccLimit}
${UiLabel.ParRoleTypeId}
${UiLabel.AccDescription}
d> > >>