ofbiz handheld

2007-08-29 Thread 2275429
I am new to ofbiz we need to develop an application in j2me for handheld devices using ofbiz framework for simple data i am using hhfacility of ofbiz, however we need to be able to do several things that require J2ME. please suggest me how to integrate j2me with ofbiz .please replay

Re: ofbiz handheld

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

Re: Can we load an .ftl file using actions

2007-08-29 Thread vijay Si
Hi Jonathon, My constraint is as follows. I need to have an xml file. This xml file is supposed to have some data that comes from the database. The best way to do this is write a .bsh script and the use these results, in xml file using ${variable}. However the constraint is that i need to have

eBay product export

2007-08-29 Thread Eric Crawford
Hi. I am trying to locate the export product to ebay functionality. Can anyone tell me how to access the screen where this feature exists?

Cant' add to shoppping cart

2007-08-29 Thread MrJohnBrown
Hi guys, When I try to enter a sales order in order manager I get a stop when I lookup product and try add it to order. The message is as follows: The Following Errors Occurred: Sorry, we do not have enough (you tried 1) of the product PROD1236 a brand new computer. (product ID: PROD1236) in

Re: Can we load an .ftl file using actions

2007-08-29 Thread vijay Si
Hi Jonathon, What you need to do is to first generate the xml data dynamically, then dump the data into an xml file. This is exactly my requirement. The problem i am facing is with rules of the framework..whether i can load an ftl just like bsh inside actionstag Regards Vijay On 8/29/07,

Re: Can we load an .ftl file using actions

2007-08-29 Thread Scott Gray
Hi Vijay I only skimmed over this, but I can't help feeling that your not following the established best practices that exist within OFBiz. Also note that there is no reason why you can't use ftl to generate xml, it would just be a *.xml.ftl I think (I've never tried it). Regards Scott On

UnsupportedEncodingException UTF-8

2007-08-29 Thread Sachin Kolpuke
Dear All; Please help me to resolve the error UnsupportedEncodingException. I am posting an xml request to a server, HttpClient client = new HttpClient(url); String response = client.post(xmlString); The server gives response in the format of UTF-8. OfBiz gives

Re: Cant' add to shoppping cart

2007-08-29 Thread Jonathon -- Improov
Your ProductStore requires inventory (field requireInventory is Y). Ie, it does not allow backorders. Receive inventory in Facility module. Product.requireInventory overrides ProductStore.requireInventory. You can have some products for which backorders are allowed, and some not. Jonathon

Re: Can we load an .ftl file using actions

2007-08-29 Thread Anil K Patel
Recently done Oagis component has example of generating XML using ftl templates. Regards Anil Patel Scott Gray wrote: Hi Vijay I only skimmed over this, but I can't help feeling that your not following the established best practices that exist within OFBiz. Also note that there is no

Share session information between modules?

2007-08-29 Thread David Cuenca
I would like to know if we can share information between ofbiz modules as if they were a unique webapp, as if the modules were sharing the same session. Ofbiz uses the externalLoginKey to know if a user has to log-in when he requests a new module. But, besides, I would like to have the same

How to use Events in JUNIT test cases

2007-08-29 Thread sumit pandit
Hi all I am preparing JUNIT test case for Sales Order process. On tracing the process i found that Sales Order is mix up of events and services. I could not find any example of events used in Test cases in Ofbiz. I will be very thankful for help from community. -- Sumit Pandit

ofbiz handheld

2007-08-29 Thread 2275429
I am new to ofbiz i had to devlop application for online webstore for mobile (handheld devices) using ofbiz frame work. is it possible to devlop applicaton similar to ofbiz webstore in mobile , please replay soon thankyou ANIL BHAT -- View this message in context:

Re: Can we load an .ftl file using actions

2007-08-29 Thread vijay Si
Hi anil can u share the ftl code. On 8/29/07, Anil K Patel [EMAIL PROTECTED] wrote: Recently done Oagis component has example of generating XML using ftl templates. Regards Anil Patel Scott Gray wrote: Hi Vijay I only skimmed over this, but I can't help feeling that your not

Re: Share session information between modules?

2007-08-29 Thread Adrian Crum
Each of the OFBiz components is a web app, and as such they each have their own session. That is how the j2ee spec works. You can share session information between components, but that would be outside the best practices. It would be preferable to persist information that is shared between

Re: Share session information between modules?

2007-08-29 Thread Jacques Le Roux
You may also have a look at how the ShoppinCart works Jacques De : Adrian Crum [EMAIL PROTECTED] Each of the OFBiz components is a web app, and as such they each have their own session. That is how the j2ee spec works. You can share session information between components, but that would

Re: ofbiz handheld

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

Simple Method Question

2007-08-29 Thread Adrian Crum
Using minilang, I need to put all of the fields from an entity in the result map. I tried using map-to-map but that doesn't work. Is there a simple way to put all of a map's elements into the result map? -Adrian

Re: ofbiz handheld

2007-08-29 Thread Wisut Wongyued
Hi, http://www.zkoss.org/release/zkmob-rn-0.8.5.dsp On 8/30/07, Brett Palmer [EMAIL PROTECTED] wrote: It would be a big project to put the ofbiz shopping cart on a j2me application. It would be easier to use WAP and communicate with an ofbiz server. Brett On 8/29/07, 2275429 [EMAIL

Re: Simple Method Question

2007-08-29 Thread Vikas Mayur
entity-one entity-name=Product value-name=mapName.product/ field-to-result field-name=mapName result-name=mapName/ or entity-one entity-name=Product value-name=mapName.product/ field-to-result field-name=mapName / I have not tried it but hope this works. On 8/30/07, Adrian Crum [EMAIL

Re: Simple Method Question

2007-08-29 Thread Jonathon -- Improov
Why doesn't map-to-map work? Did you mean you wanted to copy every field in a GenericValue object to a new map? Then map-to-map will work. The resultant map is NOT a GenericValue object, but a plain map. Oh, the result map. Don't know any method to do that easily. You could write something