Re: query on productStoreId..

2008-07-02 Thread BJ Freeman
the  
is the default webstore for ecommecere
if you look at
https://demo.hotwaxmedia.com/catalog/control/FindProductStore
you will see there are actually Three product stores in the demo
you will also note that you can create other productstores in the
catalog module.
if you look at
applications\ecommerce\webapp\ecomclone\WEB-INF\web.xml

webSiteId
WebStoreClone


so you can have a different productstore for each clone you create.

Ashish Vijaywargiya sent the following on 7/2/2008 10:39 PM:
> AravindR_Pillai ,
> 
> Consider the case of ecommerce component (After this discussion you can get
> the idea for Order Component fetching of ProductStoreId).
> Inside the web.xml file you should look into the following entries :-
> 
> webSiteId
> WebStore
> A unique ID used to look up the WebSite entity to get
> information about catalogs, etc.
> 
> 
> In the above code webSiteId is the primary key of WebSite entity and its
> value is WebStore.
>>From the above code its clear that webSiteId is kept in Application context
> of Ecommerce component.
> Now check it out the WebSite entity for webSiteId="WebStore" in the
> webtools.
> There is a field "productStoreId" in the WebSite entity.
> 
> So we can say that there is a WebSite(In Ofbiz its Ecommerce component)
> record that has the default ProductStore associated with it.
> Now the question comes that how this productStoreId comes into picture :-
> Please open the EcommerceSetup.bsh file (included in the main-decorator of
> CommonScreens.xml file of Ecommerce component).
> See the below line :-
> productStore = ProductStoreWorker.getProductStore(request);
> 
> Now go to the getProductStore method of ProductStoreWorker class.
> See Line # 71.
> This method is calling "getProductStoreId" of the same class.
> In this method code comes to the else part(because productStoreId is not
> kept in session till now).
> See the following lines of code :-
> 
> GenericValue webSite = CatalogWorker.getWebSite(request);
> if (webSite != null) {
> String productStoreId = webSite.getString("productStoreId");
> // might be nice to do this, but not needed and has a
> problem with dependencies: setSessionProductStore(productStoreId,
> httpRequest);
> return productStoreId;
> 
> Now I think I am on safer side and hope that you can find the way from here.
> Please let us know if you still have any doubts or question.
> 
> Thanks !!!
> 
> --
> Ashish Vijaywargiya
> Indore, India
> 
> 
> On Thu, Jul 3, 2008 at 12:04 AM, Aravind_RP <[EMAIL PROTECTED]>
> wrote:
> 
>> hi
>>
>> this might be a basic question.while setting the shopping cart and for such
>> service we need the product store id but while creating a product cant see
>> a
>> field to set it.can any one please help me to understand more about the use
>> of productstore id and how it is set in ofbiz.
>> --
>> View this message in context:
>> http://www.nabble.com/query-on-productStoreId..-tp18251502p18251502.html
>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>
>>
> 



Re: query on productStoreId..

2008-07-02 Thread Ashish Vijaywargiya
My Pleasure :-)

--
Ashish Vijaywargiya
Indore, India

On Thu, Jul 3, 2008 at 1:43 AM, Aravind_RP <[EMAIL PROTECTED]>
wrote:

>
> thanks a lot for the reply,That is a very good explanation and is really
> helpful.thanks a lot:jumping:
>
> Ashish Vijaywargiya-4 wrote:
> >
> > AravindR_Pillai ,
> >
> > Consider the case of ecommerce component (After this discussion you can
> > get
> > the idea for Order Component fetching of ProductStoreId).
> > Inside the web.xml file you should look into the following entries :-
> > 
> > webSiteId
> > WebStore
> > A unique ID used to look up the WebSite entity to
> get
> > information about catalogs, etc.
> > 
> >
> > In the above code webSiteId is the primary key of WebSite entity and its
> > value is WebStore.
> > From the above code its clear that webSiteId is kept in Application
> > context
> > of Ecommerce component.
> > Now check it out the WebSite entity for webSiteId="WebStore" in the
> > webtools.
> > There is a field "productStoreId" in the WebSite entity.
> >
> > So we can say that there is a WebSite(In Ofbiz its Ecommerce component)
> > record that has the default ProductStore associated with it.
> > Now the question comes that how this productStoreId comes into picture :-
> > Please open the EcommerceSetup.bsh file (included in the main-decorator
> of
> > CommonScreens.xml file of Ecommerce component).
> > See the below line :-
> > productStore = ProductStoreWorker.getProductStore(request);
> >
> > Now go to the getProductStore method of ProductStoreWorker class.
> > See Line # 71.
> > This method is calling "getProductStoreId" of the same class.
> > In this method code comes to the else part(because productStoreId is not
> > kept in session till now).
> > See the following lines of code :-
> >
> > GenericValue webSite = CatalogWorker.getWebSite(request);
> > if (webSite != null) {
> > String productStoreId =
> > webSite.getString("productStoreId");
> > // might be nice to do this, but not needed and has a
> > problem with dependencies: setSessionProductStore(productStoreId,
> > httpRequest);
> > return productStoreId;
> >
> > Now I think I am on safer side and hope that you can find the way from
> > here.
> > Please let us know if you still have any doubts or question.
> >
> > Thanks !!!
> >
> > --
> > Ashish Vijaywargiya
> > Indore, India
> >
> >
> > On Thu, Jul 3, 2008 at 12:04 AM, Aravind_RP <[EMAIL PROTECTED]
> >
> > wrote:
> >
> >>
> >> hi
> >>
> >> this might be a basic question.while setting the shopping cart and for
> >> such
> >> service we need the product store id but while creating a product cant
> >> see
> >> a
> >> field to set it.can any one please help me to understand more about the
> >> use
> >> of productstore id and how it is set in ofbiz.
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/query-on-productStoreId..-tp18251502p18251502.html
> >> Sent from the OFBiz - User mailing list archive at Nabble.com.
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/query-on-productStoreId..-tp18251502p18252207.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>
>


Re: query on productStoreId..

2008-07-02 Thread Aravind_RP

thanks a lot for the reply,That is a very good explanation and is really
helpful.thanks a lot:jumping:

Ashish Vijaywargiya-4 wrote:
> 
> AravindR_Pillai ,
> 
> Consider the case of ecommerce component (After this discussion you can
> get
> the idea for Order Component fetching of ProductStoreId).
> Inside the web.xml file you should look into the following entries :-
> 
> webSiteId
> WebStore
> A unique ID used to look up the WebSite entity to get
> information about catalogs, etc.
> 
> 
> In the above code webSiteId is the primary key of WebSite entity and its
> value is WebStore.
> From the above code its clear that webSiteId is kept in Application
> context
> of Ecommerce component.
> Now check it out the WebSite entity for webSiteId="WebStore" in the
> webtools.
> There is a field "productStoreId" in the WebSite entity.
> 
> So we can say that there is a WebSite(In Ofbiz its Ecommerce component)
> record that has the default ProductStore associated with it.
> Now the question comes that how this productStoreId comes into picture :-
> Please open the EcommerceSetup.bsh file (included in the main-decorator of
> CommonScreens.xml file of Ecommerce component).
> See the below line :-
> productStore = ProductStoreWorker.getProductStore(request);
> 
> Now go to the getProductStore method of ProductStoreWorker class.
> See Line # 71.
> This method is calling "getProductStoreId" of the same class.
> In this method code comes to the else part(because productStoreId is not
> kept in session till now).
> See the following lines of code :-
> 
> GenericValue webSite = CatalogWorker.getWebSite(request);
> if (webSite != null) {
> String productStoreId =
> webSite.getString("productStoreId");
> // might be nice to do this, but not needed and has a
> problem with dependencies: setSessionProductStore(productStoreId,
> httpRequest);
> return productStoreId;
> 
> Now I think I am on safer side and hope that you can find the way from
> here.
> Please let us know if you still have any doubts or question.
> 
> Thanks !!!
> 
> --
> Ashish Vijaywargiya
> Indore, India
> 
> 
> On Thu, Jul 3, 2008 at 12:04 AM, Aravind_RP <[EMAIL PROTECTED]>
> wrote:
> 
>>
>> hi
>>
>> this might be a basic question.while setting the shopping cart and for
>> such
>> service we need the product store id but while creating a product cant
>> see
>> a
>> field to set it.can any one please help me to understand more about the
>> use
>> of productstore id and how it is set in ofbiz.
>> --
>> View this message in context:
>> http://www.nabble.com/query-on-productStoreId..-tp18251502p18251502.html
>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>
>>
> 
> 

-- 
View this message in context: 
http://www.nabble.com/query-on-productStoreId..-tp18251502p18252207.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: New thread, continued strife with first install of ofbiz.

2008-07-02 Thread David E Jones


Are you trying to install for review, testing, or development  
purposes? If so, I'd recommend you do it on a desktop.


If you're trying to deploy it in a production environment then you may  
need some help. The Technical Production Setup Guide on docs.ofbiz.org  
will also likely be of value.


-David


On Jul 2, 2008, at 11:24 PM, juddco wrote:



Sorry about the big text blob.  It didn't look that way in my preview.

juddco wrote:


I have started over with a clean install and new database for my  
ofbiz

install.

It was having a hard time starting up with the default Derby DB.   
Lots of
"Hotspot" failures.  I tried a mysql DB on this host (mediatemple)  
and it
didn't help.  I tried a mysql 5 DB on my mosso plan, and i get a  
lot fewer

of those failures.  It also runs through the startup a lot faster.

I still get timeout errors when I hit mydomain.com:8080/...  I  
called my
host and they say I can only use the 80 port for html; that their  
system
will ignore requests for 8080 and any other ports.  I make the  
change to
port 80 in ofbiz-containers.xml, serviceengine.xml, and  
url.properties

just to see what happens.

Http11Protocol.java:178:ERROR] Error initializing endpoint
java.net.BindException: Permission denied:80

(and about four other similar errors).  What I think this tells me  
is that
I can't grab port 80 to use with ofbiz.  And since they'll ignore  
traffic

that tries to come in on 8080 (hence my errors) I can't stay on that
hosting plan.

If I upgrade my plan to dedicated virtual (of course) I can do  
whatever I
want with the ports.  I can also use mysql 5, and have 512M of  
dedicated
RAM.  I'm thinking about dropping Mosso and switching over to this  
plan (I
can't afford to carry both of them right now) but before I do I  
want some
validation that this will solve my problem.  Moving will be a PITA,  
and I
saw some conversation on this board about how virtual servers don't  
have

adequate performance anyway.

Am I on the right track with this approach?  In other words, do you  
think
switching to the plan where I can control the ports will solve my  
problem?
Am I wasting my time anyway without a dedicated server?  Anything  
else I'm

missing?

As always, I am very grateful for any assistance you can provide.

Judd



--
View this message in context: 
http://www.nabble.com/New-thread%2C-continued-strife-with-first-install-of-ofbiz.-tp18252043p18252052.html
Sent from the OFBiz - User mailing list archive at Nabble.com.





Re: query on productStoreId..

2008-07-02 Thread Ashish Vijaywargiya
AravindR_Pillai ,

Consider the case of ecommerce component (After this discussion you can get
the idea for Order Component fetching of ProductStoreId).
Inside the web.xml file you should look into the following entries :-

webSiteId
WebStore
A unique ID used to look up the WebSite entity to get
information about catalogs, etc.


In the above code webSiteId is the primary key of WebSite entity and its
value is WebStore.
>From the above code its clear that webSiteId is kept in Application context
of Ecommerce component.
Now check it out the WebSite entity for webSiteId="WebStore" in the
webtools.
There is a field "productStoreId" in the WebSite entity.

So we can say that there is a WebSite(In Ofbiz its Ecommerce component)
record that has the default ProductStore associated with it.
Now the question comes that how this productStoreId comes into picture :-
Please open the EcommerceSetup.bsh file (included in the main-decorator of
CommonScreens.xml file of Ecommerce component).
See the below line :-
productStore = ProductStoreWorker.getProductStore(request);

Now go to the getProductStore method of ProductStoreWorker class.
See Line # 71.
This method is calling "getProductStoreId" of the same class.
In this method code comes to the else part(because productStoreId is not
kept in session till now).
See the following lines of code :-

GenericValue webSite = CatalogWorker.getWebSite(request);
if (webSite != null) {
String productStoreId = webSite.getString("productStoreId");
// might be nice to do this, but not needed and has a
problem with dependencies: setSessionProductStore(productStoreId,
httpRequest);
return productStoreId;

Now I think I am on safer side and hope that you can find the way from here.
Please let us know if you still have any doubts or question.

Thanks !!!

--
Ashish Vijaywargiya
Indore, India


On Thu, Jul 3, 2008 at 12:04 AM, Aravind_RP <[EMAIL PROTECTED]>
wrote:

>
> hi
>
> this might be a basic question.while setting the shopping cart and for such
> service we need the product store id but while creating a product cant see
> a
> field to set it.can any one please help me to understand more about the use
> of productstore id and how it is set in ofbiz.
> --
> View this message in context:
> http://www.nabble.com/query-on-productStoreId..-tp18251502p18251502.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>
>


Re: New thread, continued strife with first install of ofbiz.

2008-07-02 Thread juddco

Sorry about the big text blob.  It didn't look that way in my preview. 

juddco wrote:
> 
> I have started over with a clean install and new database for my ofbiz
> install.  
> 
> It was having a hard time starting up with the default Derby DB.  Lots of
> "Hotspot" failures.  I tried a mysql DB on this host (mediatemple) and it
> didn't help.  I tried a mysql 5 DB on my mosso plan, and i get a lot fewer
> of those failures.  It also runs through the startup a lot faster.  
> 
> I still get timeout errors when I hit mydomain.com:8080/...  I called my
> host and they say I can only use the 80 port for html; that their system
> will ignore requests for 8080 and any other ports.  I make the change to
> port 80 in ofbiz-containers.xml, serviceengine.xml, and url.properties
> just to see what happens. 
> 
> Http11Protocol.java:178:ERROR] Error initializing endpoint
> java.net.BindException: Permission denied:80
> 
> (and about four other similar errors).  What I think this tells me is that
> I can't grab port 80 to use with ofbiz.  And since they'll ignore traffic
> that tries to come in on 8080 (hence my errors) I can't stay on that
> hosting plan.  
> 
> If I upgrade my plan to dedicated virtual (of course) I can do whatever I
> want with the ports.  I can also use mysql 5, and have 512M of dedicated
> RAM.  I'm thinking about dropping Mosso and switching over to this plan (I
> can't afford to carry both of them right now) but before I do I want some
> validation that this will solve my problem.  Moving will be a PITA, and I
> saw some conversation on this board about how virtual servers don't have
> adequate performance anyway.  
> 
> Am I on the right track with this approach?  In other words, do you think
> switching to the plan where I can control the ports will solve my problem? 
> Am I wasting my time anyway without a dedicated server?  Anything else I'm
> missing?
> 
> As always, I am very grateful for any assistance you can provide.
> 
> Judd
> 

-- 
View this message in context: 
http://www.nabble.com/New-thread%2C-continued-strife-with-first-install-of-ofbiz.-tp18252043p18252052.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



New thread, continued strife with first install of ofbiz.

2008-07-02 Thread juddco

I have started over with a clean install and new database for my ofbiz
install.  

It was having a hard time starting up with the default Derby DB.  Lots of
"Hotspot" failures.  I tried a mysql DB on this host (mediatemple) and it
didn't help.  I tried a mysql 5 DB on my mosso plan, and i get a lot fewer
of those failures.  It also runs through the startup a lot faster.  

I still get timeout errors when I hit mydomain.com:8080/...  I called my
host and they say I can only use the 80 port for html; that their system
will ignore requests for 8080 and any other ports.  I make the change to
port 80 in ofbiz-containers.xml, serviceengine.xml, and url.properties just
to see what happens. 

Http11Protocol.java:178:ERROR] Error initializing endpoint
java.net.BindException: Permission denied:80

(and about four other similar errors).  What I think this tells me is that I
can't grab port 80 to use with ofbiz.  And since they'll ignore traffic that
tries to come in on 8080 (hence my errors) I can't stay on that hosting
plan.  

If I upgrade my plan to dedicated virtual (of course) I can do whatever I
want with the ports.  I can also use mysql 5, and have 512M of dedicated
RAM.  I'm thinking about dropping Mosso and switching over to this plan (I
can't afford to carry both of them right now) but before I do I want some
validation that this will solve my problem.  Moving will be a PITA, and I
saw some conversation on this board about how virtual servers don't have
adequate performance anyway.  

Am I on the right track with this approach?  In other words, do you think
switching to the plan where I can control the ports will solve my problem? 
Am I wasting my time anyway without a dedicated server?  Anything else I'm
missing?

As always, I am very grateful for any assistance you can provide.

Judd
-- 
View this message in context: 
http://www.nabble.com/New-thread%2C-continued-strife-with-first-install-of-ofbiz.-tp18252043p18252043.html
Sent from the OFBiz - User mailing list archive at Nabble.com.


query on productStoreId..

2008-07-02 Thread Aravind_RP

hi

this might be a basic question.while setting the shopping cart and for such
service we need the product store id but while creating a product cant see a
field to set it.can any one please help me to understand more about the use
of productstore id and how it is set in ofbiz.
-- 
View this message in context: 
http://www.nabble.com/query-on-productStoreId..-tp18251502p18251502.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Possible Payments Applied Transaction Error

2008-07-02 Thread Sharan-F

Hi Everyone

I've just run through a test with the online Hotwax Demo and found what I
think is an accounting transaction error with applying payments.

I created a Sales Order using DemoCustomer through the store and chose the
offline payment method.

I then logged into OFBiz using admin to view the Sales Order and receive the
offline payment.
I then did a Quick Ship Entire Order. This then created the accounting
transactions.

The 'Sales Shipment' and 'Sales Invoice' transactions are fine but the
Payment Applied transactionCredits and then Debits the Accounts
Receivable account only (so takes money out of and puts it back into the
same GL account in the same transaction) – which seems a bit strange to me.

I think it should Credit Accounts Receivable and Debit Undeposited Receipts
or the Company Bank Account. Am I missing something?

Any feedback would be appreciated.

Thanks
Sharan

-- 
View this message in context: 
http://www.nabble.com/Possible-Payments-Applied-Transaction-Error-tp18249013p18249013.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: pagination in ofbiz

2008-07-02 Thread Al Byers
I was just looking at this. You may want to look at the
GenericDelegator.find method which returns an EntityListIterator and then
use the ELI.getPartialList method.

-Al

On Wed, Jul 2, 2008 at 8:12 AM, jaki <[EMAIL PROTECTED]> wrote:

>
> Is it possible to implement pagination in an ofbiz service? I want it to
> retrieve products based on the page no. selected and the number of products
> to be displayed on a page (say pagesize). eg: if the 2nd page is selected
> and pagesize is 10 I want it to fetch only those products which come in
> rows
> from 11-20.
> I want this to be done via a service and not through widgets. Kindly help
> --
> View this message in context:
> http://www.nabble.com/pagination-in-ofbiz-tp18238381p18238381.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>
>


Re: pagination in ofbiz

2008-07-02 Thread BJ Freeman
if you look at the widgets code on pagination was well as the widget
that displays such pagination , I am sure you can come up with a java
service to accomplish what you want.

jaki sent the following on 7/2/2008 7:12 AM:
> Is it possible to implement pagination in an ofbiz service? I want it to
> retrieve products based on the page no. selected and the number of products
> to be displayed on a page (say pagesize). eg: if the 2nd page is selected
> and pagesize is 10 I want it to fetch only those products which come in rows
> from 11-20. 
> I want this to be done via a service and not through widgets. Kindly help



Re: newbie question - first installation and execution

2008-07-02 Thread Jacques Le Roux

Thanks Tim,

Jacques

From: "Tim Ruppert" <[EMAIL PROTECTED]>

This has been rectified.

Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 7:43 AM, Tim Ruppert wrote:

I have confirmed the issue and will have it rectified ASAP.  Note  that we will not be going back and rebuilding all of the old 
versions - too much downloading to test all of them :)


Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 7:14 AM, Tim Ruppert wrote:


I'm on it.

Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 3:16 AM, Jacques Le Roux wrote:


You are right Judd. The trunk (at least) is not build anymore. So  it seems 
from you research that this dates from 6/18

Please Tim, could you have a look at it ?

TIA

Jacques

From: "Jacques Le Roux" <[EMAIL PROTECTED]>

From: "juddco" <[EMAIL PROTECTED]>


The 6/18 trunk version is the last one with the ofbiz.jar file  in it.

I had some trouble getting the version I had to work, so I'm  scrapping the
load, the DB, etc. and starting over with the 6/18 trunk.

I ran ant, and as far as I could tell it was successful.  I had  some hiccups
You don't need to run ant if you are using a nightly build. This  is *the reason* these nightly builds exist. Just follow the 
instructions on the download page

with the install, and then with running ofbiz.  The last line of  the log was
that the beanshell service ports were not secure.  I'm not sure  if that's OK
or not (as in, I don't know if the startup script had hung or  completed).

It's safe enough when testing. This is a reminder for production  phase.

My database tables were set up, although they didn't contain any  seed or
demo data.  (I had set it up to run mysql 4 local and the jdbc  driver seemed
to be working just fine).

The nightly builds should contain aDerby  DB ready to go with  demo data, 
*please read instructions on the download page* !
I'm currently downloading the last trunk nightly build and will  let you know 
if I get any problems
Jacques

Ultimately, I got 404's when I went to
http://dev1.mydomain.com/ecommerce/control/main.

Back to the beginning.  If you see anything obvious that I'm  missing, I'd
love to hear about it.  I'm going to stick with the Derby DB  until I make
sure that the demo works.  If you have any pointers for changing  from Derby
to MySQL, that would be great too.

Thanks again for the help.

Judd


jacques.le.roux wrote:


Simply upload the jar file and extract it in a new directory,  then follow
instructions

Jacques

From: "juddco" <[EMAIL PROTECTED]>


Thanks.  Just glad to know I'm not crazy.

I'll give it another shot.  Any reason I can't just upload the  jar file?
Or
do I need to replace the entire contents?

J

jacques.le.roux wrote:


Ashish,

Judd took http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip .
But
There has been a bug commited last night :
http://www.nabble.com/Release-4.0-ofbiz.jar-missing-tt18198738.html

Judd : just reload the new package,  following user ML would  have
helped...

Jacques

From: "Ashish Vijaywargiya" <[EMAIL PROTECTED]>

Oh Man,

ofbiz.jar file is generated when you run the "ant".
"ant" (the default target) compiles all java files and at  the end it
creates
the ofbiz.jar file in the OFBIZ_HOME directory.

It will be good if you should spend some time in reading the  document
available on
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation+Index .

--
Ashish


On Tue, Jul 1, 2008 at 12:39 AM, juddco <[EMAIL PROTECTED]>  wrote:



Thank you for your response.  I downloaded the trunk, and  it's about
40%
larger than the 4.0 current.  Still no ofbiz.jar; I still  get the same
error.

I tried adjusting the JAVA_HOME variable, thinking that  might be it.

Basic question:  Should there be an ofbiz.jar file in the  zip file at
this
link:  http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip?
There
isn't one.

Thanks again,

Judd


jacques.le.roux wrote:
>
> Which date si your ofbiz-rel4.0-current.zip ? Note that
the trunk is
more
> recommended to try.
>
> Jacques
>
> From: "juddco"
>>
>> I'm trying to demo ofbiz to see if it fits my needs.  I
am NOT a
java
>> programmer, so this is probably going to be a
ridiculously stupid
>> question.
>>
>> I was following the quick and easy setup instructions
>> http://docs.ofbiz.org/display/OFBADMIN/Demo+and+Test+Setup+Guide
here
(I
>> installed ofbiz-rel4.0-current.zip) and got to step 3.
I mucked
through
>> my
>> environment variables, but can't seem to get past this
error:
"Unable
to
>> access jarfile ofbiz.jar."
>>
>> I also noticed that the archive I grabbed didn't have a
file
>> (/framework/entity/config/entityengine.xml) referenced
in the DB
setup
in
>> the Technical Production Setup doc.  Did I miss a download
somewhere?
>>
>> I've searched the ofbiz.apache site, this forum, and
googled the
message

Re: Need help on drop shipping..

2008-07-02 Thread Jacques Le Roux

Hi Jacopo,

Thanks for correcting this.

Jacques

From: "Jacopo Cappellato" <[EMAIL PROTECTED]>

Hi Jacques,

no, the flag is all you need, the category is not relevant at all...  
but thanks for pointing out this, I do remember that someone stated  
this in the past and I have forgotten to reply.


Jacopo

On Jul 2, 2008, at 4:43 PM, Jacques Le Roux wrote:

And I read in ML (I never used dropShip) that your products must  
belong to the category dropShip


FWIW

Jacques

From: "Jacopo Cappellato" <[EMAIL PROTECTED]>

On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:

Hello All,

Please help me on this..following steps I followed at
https://demo.hotwaxmedia.com/ecommerce/,

1) I added the 3 drop ship product to cart in demo site.
2)  on quick checkout screen I clicked split shipping link

I saw all the three drop ship product in separate group

Now I tried following steps to configure product as drop ship at
https://demo.hotwaxmedia.com/catalog

1) I created 2 party groups and assigned roles 'Account' and   
'Supplier'

similar to demo site
2) I mark the 2 different product with 'Drop ship only' and added  
the

supplier to the 2 products respectively
If I am not wrong there is also a flag in the SupplierProduct  
entity  (where you set the purchase price from the supplier) where  
you have to  set that the supplier will drop ship the product.

Jacopo



But when I added this product to the cart and on split shipping  
page  I saw

this product in one single group

I don't know what I am missing.

Any help will be greatly appreciated.

Regards,
Abhishake






Re: newbie question - first installation and execution

2008-07-02 Thread Tim Ruppert

This has been rectified.

Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 7:43 AM, Tim Ruppert wrote:

I have confirmed the issue and will have it rectified ASAP.  Note  
that we will not be going back and rebuilding all of the old  
versions - too much downloading to test all of them :)


Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 7:14 AM, Tim Ruppert wrote:


I'm on it.

Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 3:16 AM, Jacques Le Roux wrote:

You are right Judd. The trunk (at least) is not build anymore. So  
it seems from you research that this dates from 6/18


Please Tim, could you have a look at it ?

TIA

Jacques

From: "Jacques Le Roux" <[EMAIL PROTECTED]>

From: "juddco" <[EMAIL PROTECTED]>


The 6/18 trunk version is the last one with the ofbiz.jar file  
in it.


I had some trouble getting the version I had to work, so I'm  
scrapping the

load, the DB, etc. and starting over with the 6/18 trunk.

I ran ant, and as far as I could tell it was successful.  I had  
some hiccups
You don't need to run ant if you are using a nightly build. This  
is *the reason* these nightly builds exist. Just follow the  
instructions on the download page
with the install, and then with running ofbiz.  The last line of  
the log was
that the beanshell service ports were not secure.  I'm not sure  
if that's OK
or not (as in, I don't know if the startup script had hung or  
completed).
It's safe enough when testing. This is a reminder for production  
phase.
My database tables were set up, although they didn't contain any  
seed or
demo data.  (I had set it up to run mysql 4 local and the jdbc  
driver seemed

to be working just fine).
The nightly builds should contain aDerby  DB ready to go with  
demo data, *please read instructions on the download page* !
I'm currently downloading the last trunk nightly build and will  
let you know if I get any problems

Jacques

Ultimately, I got 404's when I went to
http://dev1.mydomain.com/ecommerce/control/main.

Back to the beginning.  If you see anything obvious that I'm  
missing, I'd
love to hear about it.  I'm going to stick with the Derby DB  
until I make
sure that the demo works.  If you have any pointers for changing  
from Derby

to MySQL, that would be great too.

Thanks again for the help.

Judd


jacques.le.roux wrote:


Simply upload the jar file and extract it in a new directory,  
then follow

instructions

Jacques

From: "juddco" <[EMAIL PROTECTED]>


Thanks.  Just glad to know I'm not crazy.

I'll give it another shot.  Any reason I can't just upload the  
jar file?

Or
do I need to replace the entire contents?

J

jacques.le.roux wrote:


Ashish,

Judd took http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip 
.

But
There has been a bug commited last night :
http://www.nabble.com/Release-4.0-ofbiz.jar-missing-tt18198738.html

Judd : just reload the new package,  following user ML would  
have

helped...

Jacques

From: "Ashish Vijaywargiya" <[EMAIL PROTECTED]>

Oh Man,

ofbiz.jar file is generated when you run the "ant".
"ant" (the default target) compiles all java files and at  
the end it

creates
the ofbiz.jar file in the OFBIZ_HOME directory.

It will be good if you should spend some time in reading the  
document

available on
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation+Index 
.


--
Ashish


On Tue, Jul 1, 2008 at 12:39 AM, juddco <[EMAIL PROTECTED]>  
wrote:




Thank you for your response.  I downloaded the trunk, and  
it's about

40%
larger than the 4.0 current.  Still no ofbiz.jar; I still  
get the same

error.

I tried adjusting the JAVA_HOME variable, thinking that  
might be it.


Basic question:  Should there be an ofbiz.jar file in the  
zip file at

this
link:  http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip?
There
isn't one.

Thanks again,

Judd


jacques.le.roux wrote:
>
> Which date si your ofbiz-rel4.0-current.zip ? Note that  
the trunk is

more
> recommended to try.
>
> Jacques
>
> From: "juddco"
>>
>> I'm trying to demo ofbiz to see if it fits my needs.  I  
am NOT a

java
>> programmer, so this is probably going to be a  
ridiculously stupid

>> question.
>>
>> I was following the quick and easy setup instructions
>> http://docs.ofbiz.org/display/OFBADMIN/Demo+and+Test+Setup+Guide
here
(I
>> installed ofbiz-rel4.0-current.zip) and got to step 3.   
I mucked

through
>> my
>> environment variables, but can't seem to get past this  
error:

"Unable
to
>> access jarfile ofbiz.jar."
>>
>> I also noticed that the archive I grabbed didn't have a  
file
>> (/framework/entity/config/entityengine.xml) referenced  
in the DB

setup
in
>> the Technical Production Setup doc.  Did I miss a download
somewhere?
>>
>> I've searched the ofbiz.apache site, this forum, and  
googled the

messa

Re: Need help on drop shipping..

2008-07-02 Thread Abhishake Agarwal
Hello All,

I have one more query related to this,

Suppose I add supplier to product as below :

product1 to supplier1
product2 to supplier1
product3 to supplier2
product4 to supplier2

Now I found 2 grouping on split shipping screen as follows:

Group1 has: product1,product2,product3
Group2 has: product4

But I expected this to be as,

Group1 has: product1,product2
Group2 has: product3, product4

Please let me know how this grouping is decided.

Regards,
Abhishake






On Wed, Jul 2, 2008 at 8:16 PM, Jacopo Cappellato <
[EMAIL PROTECTED]> wrote:

> Hi Jacques,
>
> no, the flag is all you need, the category is not relevant at all... but
> thanks for pointing out this, I do remember that someone stated this in the
> past and I have forgotten to reply.
>
> Jacopo
>
>
> On Jul 2, 2008, at 4:43 PM, Jacques Le Roux wrote:
>
>  And I read in ML (I never used dropShip) that your products must belong to
>> the category dropShip
>>
>> FWIW
>>
>> Jacques
>>
>> From: "Jacopo Cappellato" <[EMAIL PROTECTED]>
>>
>>> On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:
>>>
 Hello All,

 Please help me on this..following steps I followed at
 https://demo.hotwaxmedia.com/ecommerce/,

 1) I added the 3 drop ship product to cart in demo site.
 2)  on quick checkout screen I clicked split shipping link

 I saw all the three drop ship product in separate group

 Now I tried following steps to configure product as drop ship at
 https://demo.hotwaxmedia.com/catalog

 1) I created 2 party groups and assigned roles 'Account' and  'Supplier'
 similar to demo site
 2) I mark the 2 different product with 'Drop ship only' and added the
 supplier to the 2 products respectively

>>> If I am not wrong there is also a flag in the SupplierProduct entity
>>>  (where you set the purchase price from the supplier) where you have to  set
>>> that the supplier will drop ship the product.
>>> Jacopo
>>>


 But when I added this product to the cart and on split shipping page  I
 saw
 this product in one single group

 I don't know what I am missing.

 Any help will be greatly appreciated.

 Regards,
 Abhishake

>>>
>>>
>


Re: Need help on drop shipping..

2008-07-02 Thread Jacopo Cappellato

Hi Jacques,

no, the flag is all you need, the category is not relevant at all...  
but thanks for pointing out this, I do remember that someone stated  
this in the past and I have forgotten to reply.


Jacopo

On Jul 2, 2008, at 4:43 PM, Jacques Le Roux wrote:

And I read in ML (I never used dropShip) that your products must  
belong to the category dropShip


FWIW

Jacques

From: "Jacopo Cappellato" <[EMAIL PROTECTED]>

On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:

Hello All,

Please help me on this..following steps I followed at
https://demo.hotwaxmedia.com/ecommerce/,

1) I added the 3 drop ship product to cart in demo site.
2)  on quick checkout screen I clicked split shipping link

I saw all the three drop ship product in separate group

Now I tried following steps to configure product as drop ship at
https://demo.hotwaxmedia.com/catalog

1) I created 2 party groups and assigned roles 'Account' and   
'Supplier'

similar to demo site
2) I mark the 2 different product with 'Drop ship only' and added  
the

supplier to the 2 products respectively
If I am not wrong there is also a flag in the SupplierProduct  
entity  (where you set the purchase price from the supplier) where  
you have to  set that the supplier will drop ship the product.

Jacopo



But when I added this product to the cart and on split shipping  
page  I saw

this product in one single group

I don't know what I am missing.

Any help will be greatly appreciated.

Regards,
Abhishake






Re: Need help on drop shipping..

2008-07-02 Thread Abhishake Agarwal
Hi,

I am sorry Its was set to Y

Regards,
Abhishake

On Wed, Jul 2, 2008 at 8:13 PM, Jacopo Cappellato <
[EMAIL PROTECTED]> wrote:

> Hello Abhishake,
>
> On Jul 2, 2008, at 4:38 PM, Abhishake Agarwal wrote:
>
>  Hello Jacopo,
>>
>> Thanks for the comment...
>>
>> If I am not wrong you are talking about 'Supplier can drop ship?' field
>> which comes when product--->supplier link is clicked.
>>
>>
> Yeah, that one.
>
>  This field is 'N' same as  in hotwaxmedia demo site for supplier which
>> have
>> been linked to drop ship products.
>>
>>
> You should set it to Y... don't know why it is not set in this way in the
> demo data... I am going to check it.
>
> Jacopo
>
>
>
>  Regards,
>> Abhishake
>>
>> On Wed, Jul 2, 2008 at 8:00 PM, Jacopo Cappellato <
>> [EMAIL PROTECTED]> wrote:
>>
>>
>>> On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:
>>>
>>> Hello All,
>>>

 Please help me on this..following steps I followed at
 https://demo.hotwaxmedia.com/ecommerce/,

 1) I added the 3 drop ship product to cart in demo site.
 2)  on quick checkout screen I clicked split shipping link

 I saw all the three drop ship product in separate group

 Now I tried following steps to configure product as drop ship at
 https://demo.hotwaxmedia.com/catalog

 1) I created 2 party groups and assigned roles 'Account' and 'Supplier'
 similar to demo site
 2) I mark the 2 different product with 'Drop ship only' and added the
 supplier to the 2 products respectively


>>> If I am not wrong there is also a flag in the SupplierProduct entity
>>> (where
>>> you set the purchase price from the supplier) where you have to set that
>>> the
>>> supplier will drop ship the product.
>>>
>>> Jacopo
>>>
>>>
>>>
>>>
 But when I added this product to the cart and on split shipping page I
 saw
 this product in one single group

 I don't know what I am missing.

 Any help will be greatly appreciated.

 Regards,
 Abhishake


>>>
>>>
>


Re: Need help on drop shipping..

2008-07-02 Thread Abhishake Agarwal
Hello Jacopo,

Thanks for the help... I set the above mentioned flag and it works...:)

Once again thanks for help.

Regards,
Abhishake


On Wed, Jul 2, 2008 at 8:08 PM, Abhishake Agarwal <
[EMAIL PROTECTED]> wrote:

> Hello Jacopo,
>
> Thanks for the comment...
>
> If I am not wrong you are talking about 'Supplier can drop ship?' field
> which comes when product--->supplier link is clicked.
>
> This field is 'N' same as  in hotwaxmedia demo site for supplier which have
> been linked to drop ship products.
>
> Regards,
> Abhishake
>
>
> On Wed, Jul 2, 2008 at 8:00 PM, Jacopo Cappellato <
> [EMAIL PROTECTED]> wrote:
>
>>
>> On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:
>>
>>  Hello All,
>>>
>>> Please help me on this..following steps I followed at
>>> https://demo.hotwaxmedia.com/ecommerce/,
>>>
>>> 1) I added the 3 drop ship product to cart in demo site.
>>> 2)  on quick checkout screen I clicked split shipping link
>>>
>>> I saw all the three drop ship product in separate group
>>>
>>> Now I tried following steps to configure product as drop ship at
>>> https://demo.hotwaxmedia.com/catalog
>>>
>>> 1) I created 2 party groups and assigned roles 'Account' and 'Supplier'
>>> similar to demo site
>>> 2) I mark the 2 different product with 'Drop ship only' and added the
>>> supplier to the 2 products respectively
>>>
>>
>> If I am not wrong there is also a flag in the SupplierProduct entity
>> (where you set the purchase price from the supplier) where you have to set
>> that the supplier will drop ship the product.
>>
>> Jacopo
>>
>>
>>
>>>
>>> But when I added this product to the cart and on split shipping page I
>>> saw
>>> this product in one single group
>>>
>>> I don't know what I am missing.
>>>
>>> Any help will be greatly appreciated.
>>>
>>> Regards,
>>> Abhishake
>>>
>>
>>
>


Re: Need help on drop shipping..

2008-07-02 Thread Jacopo Cappellato

Hello Abhishake,

On Jul 2, 2008, at 4:38 PM, Abhishake Agarwal wrote:


Hello Jacopo,

Thanks for the comment...

If I am not wrong you are talking about 'Supplier can drop ship?'  
field

which comes when product--->supplier link is clicked.



Yeah, that one.

This field is 'N' same as  in hotwaxmedia demo site for supplier  
which have

been linked to drop ship products.



You should set it to Y... don't know why it is not set in this way in  
the demo data... I am going to check it.


Jacopo



Regards,
Abhishake

On Wed, Jul 2, 2008 at 8:00 PM, Jacopo Cappellato <
[EMAIL PROTECTED]> wrote:



On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:

Hello All,


Please help me on this..following steps I followed at
https://demo.hotwaxmedia.com/ecommerce/,

1) I added the 3 drop ship product to cart in demo site.
2)  on quick checkout screen I clicked split shipping link

I saw all the three drop ship product in separate group

Now I tried following steps to configure product as drop ship at
https://demo.hotwaxmedia.com/catalog

1) I created 2 party groups and assigned roles 'Account' and  
'Supplier'

similar to demo site
2) I mark the 2 different product with 'Drop ship only' and added  
the

supplier to the 2 products respectively



If I am not wrong there is also a flag in the SupplierProduct  
entity (where
you set the purchase price from the supplier) where you have to set  
that the

supplier will drop ship the product.

Jacopo





But when I added this product to the cart and on split shipping  
page I saw

this product in one single group

I don't know what I am missing.

Any help will be greatly appreciated.

Regards,
Abhishake








Re: Need help on drop shipping..

2008-07-02 Thread Jacques Le Roux

And I read in ML (I never used dropShip) that your products must belong to the 
category dropShip

FWIW

Jacques

From: "Jacopo Cappellato" <[EMAIL PROTECTED]>


On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:


Hello All,

Please help me on this..following steps I followed at
https://demo.hotwaxmedia.com/ecommerce/,

1) I added the 3 drop ship product to cart in demo site.
2)  on quick checkout screen I clicked split shipping link

I saw all the three drop ship product in separate group

Now I tried following steps to configure product as drop ship at
https://demo.hotwaxmedia.com/catalog

1) I created 2 party groups and assigned roles 'Account' and  
'Supplier'

similar to demo site
2) I mark the 2 different product with 'Drop ship only' and added the
supplier to the 2 products respectively


If I am not wrong there is also a flag in the SupplierProduct entity  
(where you set the purchase price from the supplier) where you have to  
set that the supplier will drop ship the product.


Jacopo




But when I added this product to the cart and on split shipping page  
I saw

this product in one single group

I don't know what I am missing.

Any help will be greatly appreciated.

Regards,
Abhishake




Re: Need help on drop shipping..

2008-07-02 Thread Abhishake Agarwal
Hello Jacopo,

Thanks for the comment...

If I am not wrong you are talking about 'Supplier can drop ship?' field
which comes when product--->supplier link is clicked.

This field is 'N' same as  in hotwaxmedia demo site for supplier which have
been linked to drop ship products.

Regards,
Abhishake

On Wed, Jul 2, 2008 at 8:00 PM, Jacopo Cappellato <
[EMAIL PROTECTED]> wrote:

>
> On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:
>
>  Hello All,
>>
>> Please help me on this..following steps I followed at
>> https://demo.hotwaxmedia.com/ecommerce/,
>>
>> 1) I added the 3 drop ship product to cart in demo site.
>> 2)  on quick checkout screen I clicked split shipping link
>>
>> I saw all the three drop ship product in separate group
>>
>> Now I tried following steps to configure product as drop ship at
>> https://demo.hotwaxmedia.com/catalog
>>
>> 1) I created 2 party groups and assigned roles 'Account' and 'Supplier'
>> similar to demo site
>> 2) I mark the 2 different product with 'Drop ship only' and added the
>> supplier to the 2 products respectively
>>
>
> If I am not wrong there is also a flag in the SupplierProduct entity (where
> you set the purchase price from the supplier) where you have to set that the
> supplier will drop ship the product.
>
> Jacopo
>
>
>
>>
>> But when I added this product to the cart and on split shipping page I saw
>> this product in one single group
>>
>> I don't know what I am missing.
>>
>> Any help will be greatly appreciated.
>>
>> Regards,
>> Abhishake
>>
>
>


Re: Need help on drop shipping..

2008-07-02 Thread Jacopo Cappellato


On Jul 2, 2008, at 4:15 PM, Abhishake Agarwal wrote:


Hello All,

Please help me on this..following steps I followed at
https://demo.hotwaxmedia.com/ecommerce/,

1) I added the 3 drop ship product to cart in demo site.
2)  on quick checkout screen I clicked split shipping link

I saw all the three drop ship product in separate group

Now I tried following steps to configure product as drop ship at
https://demo.hotwaxmedia.com/catalog

1) I created 2 party groups and assigned roles 'Account' and  
'Supplier'

similar to demo site
2) I mark the 2 different product with 'Drop ship only' and added the
supplier to the 2 products respectively


If I am not wrong there is also a flag in the SupplierProduct entity  
(where you set the purchase price from the supplier) where you have to  
set that the supplier will drop ship the product.


Jacopo




But when I added this product to the cart and on split shipping page  
I saw

this product in one single group

I don't know what I am missing.

Any help will be greatly appreciated.

Regards,
Abhishake




Re: newbie question - first installation and execution

2008-07-02 Thread Jacopo Cappellato


On Jul 2, 2008, at 4:01 PM, juddco wrote:



Thanks, Jaques.

A couple more questions for clarity:

1.  Is that beanshell line supposed to be the last thing I see when  
I run

it?  I kind of expected something like, "Congratulations!  OFBiz is
installed and running successfully!  Go have a drink!"  I suspect  
that my

install/start did not complete.

2.  On the database, I was trying to get fancy and shift to MySQL  
from the

very beginning.  This time, I'm going to start with Derby (one less
variable) but I'm going to want to shift to mysql.  How do I make that
transition?   I know how to configure entityengine.xml and where to  
put the
driver (I *have been* reading the docs.  :-)).  The question is do I  
need to

re-run install to switch databases, or will starting the jar build the
tables in the new DB?  What about the seed/demo data?


You have to:
1) create an empty db in MySQL
2) create the db user and grant all privileges on that db
3) use the information at 1 and 2 to configure the entityengine.xml  
file (also add the driver to the classpath)


As soon as you will restart OFBiz the tables will be created, but  
without seed data.


So you have also to:

4) "ant run-install-seed" (or "ant run-install" if you want also the  
demo data)


Jacopo




(I cut out most of the previous discussion on the thread for  
efficiency.
What happened was the trunk and release zip files on hotwax weren't  
built,
and I had a mess trying to get them installed.  Due in large part to  
my

ignorance.  Now I am starting over.)


Ultimately, I got 404's when I went to
http://dev1.mydomain.com/ecommerce/control/main.

Back to the beginning.  If you see anything obvious that I'm  
missing, I'd

love to hear about it.


Thanks, Judd
--
View this message in context: 
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18238154.html
Sent from the OFBiz - User mailing list archive at Nabble.com.





Re: newbie question - first installation and execution

2008-07-02 Thread Jacques Le Roux

Judd,

From: "juddco" <[EMAIL PROTECTED]>


Thanks, Jaques. 


It's Jacques (but nevermind :o)

A couple more questions for clarity:  


1.  Is that beanshell line supposed to be the last thing I see when I run
it?  I kind of expected something like, "Congratulations!  OFBiz is
installed and running successfully!  Go have a drink!"  I suspect that my
install/start did not complete.


Yes it is, we prefer to be cryptic (joke ;o)


2.  On the database, I was trying to get fancy and shift to MySQL from the
very beginning.  This time, I'm going to start with Derby (one less
variable) but I'm going to want to shift to mysql.  How do I make that
transition?   I know how to configure entityengine.xml and where to put the
driver (I *have been* reading the docs.  :-)).  The question is do I need to
re-run install to switch databases, or will starting the jar build the
tables in the new DB?  What about the seed/demo data?


You need to re-run install to populate the new DB



(I cut out most of the previous discussion on the thread for efficiency. 
What happened was the trunk and release zip files on hotwax weren't built,

and I had a mess trying to get them installed.  Due in large part to my
ignorance.  Now I am starting over.)


Tim Rupert is kindly (we are all volunteers) currently fixing this issue on the 
server. Thank you for the feedback.

Jacques




Ultimately, I got 404's when I went to
http://dev1.mydomain.com/ecommerce/control/main.

Back to the beginning.  If you see anything obvious that I'm missing, I'd
love to hear about it.  


Thanks, Judd
--
View this message in context: 
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18238154.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Need help on drop shipping..

2008-07-02 Thread Abhishake Agarwal
Hello All,

Please help me on this..following steps I followed at
https://demo.hotwaxmedia.com/ecommerce/,

1) I added the 3 drop ship product to cart in demo site.
2)  on quick checkout screen I clicked split shipping link

I saw all the three drop ship product in separate group

Now I tried following steps to configure product as drop ship at
https://demo.hotwaxmedia.com/catalog

1) I created 2 party groups and assigned roles 'Account' and 'Supplier'
similar to demo site
2) I mark the 2 different product with 'Drop ship only' and added the
supplier to the 2 products respectively

But when I added this product to the cart and on split shipping page I saw
this product in one single group

I don't know what I am missing.

Any help will be greatly appreciated.

Regards,
Abhishake


pagination in ofbiz

2008-07-02 Thread jaki

Is it possible to implement pagination in an ofbiz service? I want it to
retrieve products based on the page no. selected and the number of products
to be displayed on a page (say pagesize). eg: if the 2nd page is selected
and pagesize is 10 I want it to fetch only those products which come in rows
from 11-20. 
I want this to be done via a service and not through widgets. Kindly help
-- 
View this message in context: 
http://www.nabble.com/pagination-in-ofbiz-tp18238381p18238381.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: newbie question - first installation and execution

2008-07-02 Thread juddco

Thanks, Jaques. 

A couple more questions for clarity:  

1.  Is that beanshell line supposed to be the last thing I see when I run
it?  I kind of expected something like, "Congratulations!  OFBiz is
installed and running successfully!  Go have a drink!"  I suspect that my
install/start did not complete.

2.  On the database, I was trying to get fancy and shift to MySQL from the
very beginning.  This time, I'm going to start with Derby (one less
variable) but I'm going to want to shift to mysql.  How do I make that
transition?   I know how to configure entityengine.xml and where to put the
driver (I *have been* reading the docs.  :-)).  The question is do I need to
re-run install to switch databases, or will starting the jar build the
tables in the new DB?  What about the seed/demo data?

(I cut out most of the previous discussion on the thread for efficiency. 
What happened was the trunk and release zip files on hotwax weren't built,
and I had a mess trying to get them installed.  Due in large part to my
ignorance.  Now I am starting over.)

>> Ultimately, I got 404's when I went to
>> http://dev1.mydomain.com/ecommerce/control/main.
>>
>> Back to the beginning.  If you see anything obvious that I'm missing, I'd
>> love to hear about it.  

Thanks, Judd
-- 
View this message in context: 
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18238154.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: newbie question - first installation and execution

2008-07-02 Thread Tim Ruppert
I have confirmed the issue and will have it rectified ASAP.  Note that  
we will not be going back and rebuilding all of the old versions - too  
much downloading to test all of them :)


Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 7:14 AM, Tim Ruppert wrote:


I'm on it.

Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 3:16 AM, Jacques Le Roux wrote:

You are right Judd. The trunk (at least) is not build anymore. So  
it seems from you research that this dates from 6/18


Please Tim, could you have a look at it ?

TIA

Jacques

From: "Jacques Le Roux" <[EMAIL PROTECTED]>

From: "juddco" <[EMAIL PROTECTED]>


The 6/18 trunk version is the last one with the ofbiz.jar file in  
it.


I had some trouble getting the version I had to work, so I'm  
scrapping the

load, the DB, etc. and starting over with the 6/18 trunk.

I ran ant, and as far as I could tell it was successful.  I had  
some hiccups
You don't need to run ant if you are using a nightly build. This  
is *the reason* these nightly builds exist. Just follow the  
instructions on the download page
with the install, and then with running ofbiz.  The last line of  
the log was
that the beanshell service ports were not secure.  I'm not sure  
if that's OK
or not (as in, I don't know if the startup script had hung or  
completed).
It's safe enough when testing. This is a reminder for production  
phase.
My database tables were set up, although they didn't contain any  
seed or
demo data.  (I had set it up to run mysql 4 local and the jdbc  
driver seemed

to be working just fine).
The nightly builds should contain aDerby  DB ready to go with demo  
data, *please read instructions on the download page* !
I'm currently downloading the last trunk nightly build and will  
let you know if I get any problems

Jacques

Ultimately, I got 404's when I went to
http://dev1.mydomain.com/ecommerce/control/main.

Back to the beginning.  If you see anything obvious that I'm  
missing, I'd
love to hear about it.  I'm going to stick with the Derby DB  
until I make
sure that the demo works.  If you have any pointers for changing  
from Derby

to MySQL, that would be great too.

Thanks again for the help.

Judd


jacques.le.roux wrote:


Simply upload the jar file and extract it in a new directory,  
then follow

instructions

Jacques

From: "juddco" <[EMAIL PROTECTED]>


Thanks.  Just glad to know I'm not crazy.

I'll give it another shot.  Any reason I can't just upload the  
jar file?

Or
do I need to replace the entire contents?

J

jacques.le.roux wrote:


Ashish,

Judd took http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip 
.

But
There has been a bug commited last night :
http://www.nabble.com/Release-4.0-ofbiz.jar-missing-tt18198738.html

Judd : just reload the new package,  following user ML would  
have

helped...

Jacques

From: "Ashish Vijaywargiya" <[EMAIL PROTECTED]>

Oh Man,

ofbiz.jar file is generated when you run the "ant".
"ant" (the default target) compiles all java files and at the  
end it

creates
the ofbiz.jar file in the OFBIZ_HOME directory.

It will be good if you should spend some time in reading the  
document

available on
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation+Index 
.


--
Ashish


On Tue, Jul 1, 2008 at 12:39 AM, juddco <[EMAIL PROTECTED]>  
wrote:




Thank you for your response.  I downloaded the trunk, and  
it's about

40%
larger than the 4.0 current.  Still no ofbiz.jar; I still  
get the same

error.

I tried adjusting the JAVA_HOME variable, thinking that  
might be it.


Basic question:  Should there be an ofbiz.jar file in the  
zip file at

this
link:  http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip?
There
isn't one.

Thanks again,

Judd


jacques.le.roux wrote:
>
> Which date si your ofbiz-rel4.0-current.zip ? Note that  
the trunk is

more
> recommended to try.
>
> Jacques
>
> From: "juddco"
>>
>> I'm trying to demo ofbiz to see if it fits my needs.  I  
am NOT a

java
>> programmer, so this is probably going to be a  
ridiculously stupid

>> question.
>>
>> I was following the quick and easy setup instructions
>> http://docs.ofbiz.org/display/OFBADMIN/Demo+and+Test+Setup+Guide
here
(I
>> installed ofbiz-rel4.0-current.zip) and got to step 3.  I  
mucked

through
>> my
>> environment variables, but can't seem to get past this  
error:

"Unable
to
>> access jarfile ofbiz.jar."
>>
>> I also noticed that the archive I grabbed didn't have a  
file
>> (/framework/entity/config/entityengine.xml) referenced in  
the DB

setup
in
>> the Technical Production Setup doc.  Did I miss a download
somewhere?
>>
>> I've searched the ofbiz.apache site, this forum, and  
googled the

message
>> to
>> no avail.  I'm stumped.
>>
>> Thanks for the help.
>>
>> http://www.nabble.com/file/p18148299/jarfile_error.jpg
>> --
>> View this message in context:
>>
http://ww

Re: TIME PERIOD AND SETTLEMENT ISSUE IN ACCOUNTING.

2008-07-02 Thread Jacopo Cappellato
Since there is no user interface (apart from the generic ones provided  
by the Webtools application), you have to use the Webtools to add new  
SettlementTerm entries; then you can use them in the AcctgTrans. If  
you set in the "settlement term id" field a value that is not in the  
SettlementTerm entity, then you get the error you have reported  
(foreign key exception).
However I can confirm that there is no other code in OFBiz that uses  
this entity; payment terms in OFBiz are implemented using the  
AgreementTerm, OrderTerm, InvoiceTerm entities.


Jacopo


On Jul 2, 2008, at 3:17 PM, brijesh m wrote:


Hi friends,
Time Period problem solved but not sure about the Settlement in  
accounting transaction as it only works if given   
COD,net_15,net_60,net_90 as input which was retrived from the  
webtools after SQL query processing. So, is it really not supported  
presently as suggested by Jacopo or it is working as I mentioned  
with the above inputs only somebody kindly confirm.



Thanks
Brijesh M.
Jacopo Cappellato <[EMAIL PROTECTED]> wrote: After  
Adrian's fix I was able to close the time period.


Jacopo

On Jul 1, 2008, at 6:28 PM, Adrian Crum wrote:


I fixed the set-calendar operation in rev 673129, but now there
seems to be another problem - having to do with a GL account ID not
being set.

-Adrian

Adrian Crum wrote:

https://localhost:8443/accounting/control/closeFinancialTimePeriod?organizationPartyId=Company&customTimePeriodId=6001
I'm checking into it also. There seems to be a problem with the
set-calendar operation.
-Adrian
Jacopo Cappellato wrote:

Could you please send me the direct link to the demo server?
I would like to test it.

Thanks,

Jacopo

On Jul 1, 2008, at 5:48 PM, ankur gupta wrote:


Hi Brijesh

This TIME PERIOD error also exist in DEMO server of ofbiz.Anybody
give the
solution for this.

Regards,
Ankur




I have configured the accounting quite well but still facing two
problems

a.) can't able to close any of the existing or newly formed TIME
 PERIOD as it shows following error:
  The Following Errors Occurred:Error running the
simple-method: Error in simple-method operation []:
java.lang.RuntimeException:
Error in simple-method operation []:
java.lang.NumberFormatException:
For input string: "0-1"
null



b.) can't understand the concept of SETTLEMENT in the ADD
 TRANSACTION ENTRIES for the unposted transaction as it
 shows error presently as:
 The Following Errors Occurred:
 ERROR: Could not complete the Add Entry To AcctgTrans

[file:/D:/ofbiz/applications/accounting/script/org/ofbiz/
accounting/ledger/AcctgTransServices.xml#createAcctgTransEntry]
process [problem creating the newEntity value: Error while
inserting:


[GenericEntity:AcctgTransEntry][acctgTransEntrySeqId,
5(java.lang.String)]
[acctgTransEntryTypeId,_NA_(java.lang.String)][acctgTransId,
10316(java.lang.String)][amount,5.0(java.lang.Double)]
[createdStamp,2008-06-30
21:42:31.953(java.sql.Timestamp)][createdTxStamp,2008-06-30

21:42:31.75(java.sql.Timestamp)]
[currencyUomId,USD(java.lang.String)]
[debitCreditFlag,C(java.lang.String)][description,null()]
[glAccountId,421000(java.lang.String)]
[glAccountTypeId,ACCOUNTS_RECEIVABLE(java.lang.String)]
[isSummary,null()][lastUpdatedStamp,2008-06-30
21:42:31.953(java.sql.Timestamp)][lastUpdatedTxStamp,2008-06-30


21:42:31.75(java.sql.Timestamp)]
[organizationPartyId,Company(java.lang.String)][origAmount,
5.0(java.lang.Double)][origCurrencyUomId,USD(java.lang.String)]
[partyId,null()][productId,null()]
[reconcileStatusId,AES_NOT_RECONCILED(java.lang.String)]
[settlementTermId,4(java.lang.String)][voucherRef,null()]
(SQL Exception while executing the following:INSERT
INTO
OFBIZ.ACCTG_TRANS_ENTRY (ACCTG_TRANS_ID,  
ACCTG_TRANS_ENTRY_SEQ_ID,

ACCTG_TRANS_ENTRY_TYPE_ID, DESCRIPTION, VOUCHER_REF, PARTY_ID,
ROLE_TYPE_ID,
THEIR_PARTY_ID, PRODUCT_ID, THEIR_PRODUCT_ID, GL_ACCOUNT_TYPE_ID,
GL_ACCOUNT_ID,
ORGANIZATION_PARTY_ID, AMOUNT, CURRENCY_UOM_ID, ORIG_AMOUNT,
ORIG_CURRENCY_UOM_ID, DEBIT_CREDIT_FLAG, DUE_DATE, GROUP_ID,
TAX_ID,
RECONCILE_STATUS_ID, SETTLEMENT_TERM_ID, IS_SUMMARY,
LAST_UPDATED_STAMP,
LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES
(?, ?, ?,
?, ?, ?,
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
(INSERT on table 'ACCTG_TRANS_ENTRY' caused a
violation of foreign key constraint 'ACCTTXENT_STLEN' for key
(4). The
statement has been rolled back.))]



kindly help as i think many among us have faced this similar
problem.

Thanks
Brijesh M.















Re: TIME PERIOD AND SETTLEMENT ISSUE IN ACCOUNTING.

2008-07-02 Thread brijesh m
Hi friends,
Time Period problem solved but not sure about the Settlement in accounting 
transaction as it only works if given  COD,net_15,net_60,net_90 as input which 
was retrived from the webtools after SQL query processing. So, is it really not 
supported presently as suggested by Jacopo or it is working as I mentioned with 
the above inputs only somebody kindly confirm.


Thanks
Brijesh M.
Jacopo Cappellato <[EMAIL PROTECTED]> wrote: After Adrian's fix I was able to 
close the time period.

Jacopo

On Jul 1, 2008, at 6:28 PM, Adrian Crum wrote:

> I fixed the set-calendar operation in rev 673129, but now there  
> seems to be another problem - having to do with a GL account ID not  
> being set.
>
> -Adrian
>
> Adrian Crum wrote:
>> https://localhost:8443/accounting/control/closeFinancialTimePeriod?organizationPartyId=Company&customTimePeriodId=6001
>>  
>>  I'm checking into it also. There seems to be a problem with the  
>> set-calendar operation.
>> -Adrian
>> Jacopo Cappellato wrote:
>>> Could you please send me the direct link to the demo server?
>>> I would like to test it.
>>>
>>> Thanks,
>>>
>>> Jacopo
>>>
>>> On Jul 1, 2008, at 5:48 PM, ankur gupta wrote:
>>>
 Hi Brijesh

 This TIME PERIOD error also exist in DEMO server of ofbiz.Anybody  
 give the
 solution for this.

 Regards,
 Ankur



> I have configured the accounting quite well but still facing two
> problems
>
> a.) can't able to close any of the existing or newly formed TIME
>   PERIOD as it shows following error:
>The Following Errors Occurred:Error running the
> simple-method: Error in simple-method operation []:
> java.lang.RuntimeException:
> Error in simple-method operation []:  
> java.lang.NumberFormatException:
> For input string: "0-1"
> null
>
>
>
> b.) can't understand the concept of SETTLEMENT in the ADD
>   TRANSACTION ENTRIES for the unposted transaction as it
>   shows error presently as:
>   The Following Errors Occurred:
>   ERROR: Could not complete the Add Entry To AcctgTrans
>
> [file:/D:/ofbiz/applications/accounting/script/org/ofbiz/ 
> accounting/ledger/AcctgTransServices.xml#createAcctgTransEntry]
> process [problem creating the newEntity value: Error while  
> inserting:
>
>
> [GenericEntity:AcctgTransEntry][acctgTransEntrySeqId, 
> 5(java.lang.String)] 
> [acctgTransEntryTypeId,_NA_(java.lang.String)][acctgTransId, 
> 10316(java.lang.String)][amount,5.0(java.lang.Double)] 
> [createdStamp,2008-06-30
> 21:42:31.953(java.sql.Timestamp)][createdTxStamp,2008-06-30
>
> 21:42:31.75(java.sql.Timestamp)] 
> [currencyUomId,USD(java.lang.String)] 
> [debitCreditFlag,C(java.lang.String)][description,null()] 
> [glAccountId,421000(java.lang.String)] 
> [glAccountTypeId,ACCOUNTS_RECEIVABLE(java.lang.String)] 
> [isSummary,null()][lastUpdatedStamp,2008-06-30
> 21:42:31.953(java.sql.Timestamp)][lastUpdatedTxStamp,2008-06-30
>
>
> 21:42:31.75(java.sql.Timestamp)] 
> [organizationPartyId,Company(java.lang.String)][origAmount, 
> 5.0(java.lang.Double)][origCurrencyUomId,USD(java.lang.String)] 
> [partyId,null()][productId,null()] 
> [reconcileStatusId,AES_NOT_RECONCILED(java.lang.String)] 
> [settlementTermId,4(java.lang.String)][voucherRef,null()]
> (SQL Exception while executing the following:INSERT
> INTO
> OFBIZ.ACCTG_TRANS_ENTRY (ACCTG_TRANS_ID, ACCTG_TRANS_ENTRY_SEQ_ID,
> ACCTG_TRANS_ENTRY_TYPE_ID, DESCRIPTION, VOUCHER_REF, PARTY_ID,
> ROLE_TYPE_ID,
> THEIR_PARTY_ID, PRODUCT_ID, THEIR_PRODUCT_ID, GL_ACCOUNT_TYPE_ID,
> GL_ACCOUNT_ID,
> ORGANIZATION_PARTY_ID, AMOUNT, CURRENCY_UOM_ID, ORIG_AMOUNT,
> ORIG_CURRENCY_UOM_ID, DEBIT_CREDIT_FLAG, DUE_DATE, GROUP_ID,  
> TAX_ID,
> RECONCILE_STATUS_ID, SETTLEMENT_TERM_ID, IS_SUMMARY,  
> LAST_UPDATED_STAMP,
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES  
> (?, ?, ?,
> ?, ?, ?,
> ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
> (INSERT on table 'ACCTG_TRANS_ENTRY' caused a
> violation of foreign key constraint 'ACCTTXENT_STLEN' for key  
> (4). The
> statement has been rolled back.))]
>
>
>
> kindly help as i think many among us have faced this similar  
> problem.
>
> Thanks
> Brijesh M.
>
>
>
>
>>>
>>>



   

Re: newbie question - first installation and execution

2008-07-02 Thread Tim Ruppert

I'm on it.

Cheers,
Tim
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595


On Jul 2, 2008, at 3:16 AM, Jacques Le Roux wrote:

You are right Judd. The trunk (at least) is not build anymore. So it  
seems from you research that this dates from 6/18


Please Tim, could you have a look at it ?

TIA

Jacques

From: "Jacques Le Roux" <[EMAIL PROTECTED]>

From: "juddco" <[EMAIL PROTECTED]>


The 6/18 trunk version is the last one with the ofbiz.jar file in  
it.


I had some trouble getting the version I had to work, so I'm  
scrapping the

load, the DB, etc. and starting over with the 6/18 trunk.

I ran ant, and as far as I could tell it was successful.  I had  
some hiccups
You don't need to run ant if you are using a nightly build. This is  
*the reason* these nightly builds exist. Just follow the  
instructions on the download page
with the install, and then with running ofbiz.  The last line of  
the log was
that the beanshell service ports were not secure.  I'm not sure if  
that's OK
or not (as in, I don't know if the startup script had hung or  
completed).
It's safe enough when testing. This is a reminder for production  
phase.
My database tables were set up, although they didn't contain any  
seed or
demo data.  (I had set it up to run mysql 4 local and the jdbc  
driver seemed

to be working just fine).
The nightly builds should contain aDerby  DB ready to go with demo  
data, *please read instructions on the download page* !
I'm currently downloading the last trunk nightly build and will let  
you know if I get any problems

Jacques

Ultimately, I got 404's when I went to
http://dev1.mydomain.com/ecommerce/control/main.

Back to the beginning.  If you see anything obvious that I'm  
missing, I'd
love to hear about it.  I'm going to stick with the Derby DB until  
I make
sure that the demo works.  If you have any pointers for changing  
from Derby

to MySQL, that would be great too.

Thanks again for the help.

Judd


jacques.le.roux wrote:


Simply upload the jar file and extract it in a new directory,  
then follow

instructions

Jacques

From: "juddco" <[EMAIL PROTECTED]>


Thanks.  Just glad to know I'm not crazy.

I'll give it another shot.  Any reason I can't just upload the  
jar file?

Or
do I need to replace the entire contents?

J

jacques.le.roux wrote:


Ashish,

Judd took http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip 
.

But
There has been a bug commited last night :
http://www.nabble.com/Release-4.0-ofbiz.jar-missing-tt18198738.html

Judd : just reload the new package,  following user ML would have
helped...

Jacques

From: "Ashish Vijaywargiya" <[EMAIL PROTECTED]>

Oh Man,

ofbiz.jar file is generated when you run the "ant".
"ant" (the default target) compiles all java files and at the  
end it

creates
the ofbiz.jar file in the OFBIZ_HOME directory.

It will be good if you should spend some time in reading the  
document

available on
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation 
+Index.


--
Ashish


On Tue, Jul 1, 2008 at 12:39 AM, juddco <[EMAIL PROTECTED]>  
wrote:




Thank you for your response.  I downloaded the trunk, and  
it's about

40%
larger than the 4.0 current.  Still no ofbiz.jar; I still get  
the same

error.

I tried adjusting the JAVA_HOME variable, thinking that might  
be it.


Basic question:  Should there be an ofbiz.jar file in the zip  
file at

this
link:  http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip?
There
isn't one.

Thanks again,

Judd


jacques.le.roux wrote:
>
> Which date si your ofbiz-rel4.0-current.zip ? Note that the  
trunk is

more
> recommended to try.
>
> Jacques
>
> From: "juddco"
>>
>> I'm trying to demo ofbiz to see if it fits my needs.  I am  
NOT a

java
>> programmer, so this is probably going to be a ridiculously  
stupid

>> question.
>>
>> I was following the quick and easy setup instructions
>> http://docs.ofbiz.org/display/OFBADMIN/Demo+and+Test+Setup+Guide
here
(I
>> installed ofbiz-rel4.0-current.zip) and got to step 3.  I  
mucked

through
>> my
>> environment variables, but can't seem to get past this  
error:

"Unable
to
>> access jarfile ofbiz.jar."
>>
>> I also noticed that the archive I grabbed didn't have a file
>> (/framework/entity/config/entityengine.xml) referenced in  
the DB

setup
in
>> the Technical Production Setup doc.  Did I miss a download
somewhere?
>>
>> I've searched the ofbiz.apache site, this forum, and  
googled the

message
>> to
>> no avail.  I'm stumped.
>>
>> Thanks for the help.
>>
>> http://www.nabble.com/file/p18148299/jarfile_error.jpg
>> --
>> View this message in context:
>>
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18148299.html
>> Sent from the OFBiz - User mailing list archive at  
Nabble.com.

>>
>
>

--
View this message in context:
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18209064.html
Sent from the OFBiz - User mailing list arch

Re: how can I delete items from inventory of ofbiz ??

2008-07-02 Thread Jacques Le Roux

Yes ! For instance search "Is it possible to delete products, categories, catalogs, 
etc., that are no longer needed?"
in the FAQ : 
http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
But on the other hand : "Cleaning the database from unimportant data" in in the FAQ : 
http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo#FAQ-Tips-Tricks-Cookbook-HowTo-ProductionTips

If you have better titles let me know...

Jacques
PS : I think I will stop to make advertisements for the FAQ it's an endless job :( and Confluence is not doing very well with its 
shortcuts


From: "Ashish Vijaywargiya" <[EMAIL PROTECTED]>

Manoj Did you search the old thread for the question you are asking ?
This kind of question has been answered so many times so please spend some
time in searching.

--
Ashish

On Wed, Jul 2, 2008 at 8:16 AM, manoj_aggarwal84 <[EMAIL PROTECTED]>
wrote:



hi all,

Please tell me, how can I delete items from inventory of ofbiz ?

Thanks,
manoj
--
View this message in context:
http://www.nabble.com/how-can-I-delete-items-from-inventory-of-ofbiztp18236185p18236185.html
Sent from the OFBiz - User mailing list archive at Nabble.com.








Re: Users with disabled accounts are still able to login

2008-07-02 Thread Jacques Le Roux
Interesting trick, I put at link to Nabble Forum http://www.nabble.com/forum/Permalink.jtp?root=18223799&post=18223799&page=y from 
http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo#FAQ-Tips-Tricks-Cookbook-HowTo-ProductionTips

Jacques

From: "Robert Volke" <[EMAIL PROTECTED]>

Wow, that did the trick.  When I first saved the Enabled flag change to N, it 
automatically populated the disabled date, so I
deleted this date and saved the change again.  Now the disabled admin can no 
longer login.  It looks like if you simply disable an
account and leave the time stamp, it will automatically enable again in 5 
minutes.  I'm not sure why it does this, and I didn't
see a way to change the end date for the disable so I'm going to inform my 
users to use this work around.

Thank you for all of the help,
Robert Volke


Bilgin Ibryam <[EMAIL PROTECTED]> 7/1/2008 3:53:22 PM >>>


Hi Robert,

try to set the Enabled Flag to "N"  WITHOUT Disabled Date Time.

Bilgin


This message was sent using IMP, the Internet Messaging Program.







Re: how can I delete items from inventory of ofbiz ??

2008-07-02 Thread Rashko Rejmer
Hi manoj,

Just a quick note:
You can create "Physical Inventory Variances" for the item from here:
e.g. for the inventory item 9000
https://demo.hotwaxmedia.com/facility/control/EditInventoryItem?inventoryItemId=9000&facilityId=WebStoreWarehouse
this will create PhysicalInventory and InventoryItemDetail records that
will change the inventory item quantity and also will take care of
accounting transactions.

Regards,
Rashko Rejmer


On Wed, 2008-07-02 at 05:16 -0700, manoj_aggarwal84 wrote:
> hi all,
> 
> Please tell me, how can I delete items from inventory of ofbiz ?
> 
> Thanks,
> manoj



Re: how can I delete items from inventory of ofbiz ??

2008-07-02 Thread Ashish Vijaywargiya
Manoj Did you search the old thread for the question you are asking ?
This kind of question has been answered so many times so please spend some
time in searching.

--
Ashish

On Wed, Jul 2, 2008 at 8:16 AM, manoj_aggarwal84 <[EMAIL PROTECTED]>
wrote:

>
> hi all,
>
> Please tell me, how can I delete items from inventory of ofbiz ?
>
> Thanks,
> manoj
> --
> View this message in context:
> http://www.nabble.com/how-can-I-delete-items-from-inventory-of-ofbiztp18236185p18236185.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>
>


how can I delete items from inventory of ofbiz ??

2008-07-02 Thread manoj_aggarwal84

hi all,

Please tell me, how can I delete items from inventory of ofbiz ?

Thanks,
manoj
-- 
View this message in context: 
http://www.nabble.com/how-can-I-delete-items-from-inventory-of-ofbiztp18236185p18236185.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: POI excel data import - need example from old wiki

2008-07-02 Thread Rupinder

Hi George,
I want to import product items through excel rather then adding products one
by one. Could you tell the procedure for this.


George Hayter wrote:
> 
> Thanks, I got it to work from the example you sent me. But I agree it will
> probably be better to call services directly to import data. The product
> list I want to import is a bit complicated for this approach. It has
> Categories and Subcategories in the same column as the product name.
> 
> I have decided to process the list in Access first and then export to .csv
> and use the data file tools to create the xml seed data. In future I would
> like to create an Excel import contribution that could handle complicated
> Excel product lists and call the entity engine directly to insert the
> data. 
> 
> I wonder if the old wiki will come back online again. Once again there is
> a data file tools example I would like to look at. But I could probably
> figure that out. I am still new to Ofbiz, and am impressed by all the
> features. Thanks to all those who contributed.
> 
> 
> BJ Freeman wrote:
>> 
>> The example used PIO to read an excel and make xml files.
>> the the xml files were read read in.
>> for some imports, like raw data, this is good.
>> but for some imports it is better to actually call services.
>> IMHO.
>> so it depends on the data you importing.
>> 
>> I am sending the example to you directly since the ML does not support
>> attachments.
>> Please ask question on this ML though.
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/POI-excel-data-import---need-example-from-old-wiki-tp15285288p18235578.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: run time error trunk 673311

2008-07-02 Thread Scott Gray
Glad to hear it :-) anyway everything is working fine for me.

-Scott

2008/7/2 BJ Freeman <[EMAIL PROTECTED]>:

> luckily that is one thing that did not get wiped when I had my stroke
> :)
>
> Scott Gray sent the following on 7/2/2008 2:45 AM:
> > Hi BJ
> >
> > You've been around long enough to know that you should run "ant clean"
> > right?
> >
> > Regards
> > Scott
> >
> > 2008/7/2 BJ Freeman <[EMAIL PROTECTED]>:
> >
> >> probably me
> >> did a https://localhost:8443/partymgr/control/main
> >>
> >> 2008-07-02 02:10:36,984 (http-0.0.0.0-8443-1) [ UtilJ2eeCompat.java:78
> >> :INFO ] Apache Tomcat detected, using response.getWriter to write text
> >> out instead of response.getOutputStream
> >> 2008-07-02 02:10:36,984 (http-0.0.0.0-8443-1)
> >> [StandardWrapperValve.java:274:ERROR] Servlet.service() for servlet
> >> ControlServlet threw exception
> >> java.lang.NoSuchMethodError:
> >>
> >>
> org.ofbiz.widget.screen.ScreenRenderer.(Ljava/io/Writer;Lorg/ofbiz/base/util/collections/MapStack;Lorg/ofbiz/widget/screen/ScreenStringRenderer;)V
> >> at
> >>
> >>
> org.ofbiz.widget.screen.ScreenWidgetViewHandler.render(ScreenWidgetViewHandler.java:91)
> >> at
> >>
> org.ofbiz.webapp.control.RequestHandler.renderView(RequestHandler.java:651)
> >> at
> >>
> org.ofbiz.webapp.control.RequestHandler.doRequest(RequestHandler.java:435)
> >> at
> >> org.ofbiz.webapp.control.ControlServlet.doGet(ControlServlet.java:198)
> >> at javax.servlet.http.HttpServlet.service(HttpServlet.java:690) at
> >> javax.servlet.http.HttpServlet.service(HttpServlet.java:803) at
> >>
> >>
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
> >>
> >>
> >
>
>


Re: ofbiz is so slow

2008-07-02 Thread Jacques Le Roux

From: "Heidi Dehaes" <[EMAIL PROTECTED]>

Yes, i know Linux is better but i am not a specialist in Linux.
But i am not using a separate server for the database? I thought my
workstation has enough power and memory to do it on the same machine.
Should it be better to separate the db on a separate machine?


Yes, definitively


The static content is separated and directly accessible from the Apache server.


Good !

Jacques



Heidi

2008/7/2, Jacques Le Roux <[EMAIL PROTECTED]>:

I'm not a specialist, but I will 1st switch from Vista to Linux :o)
I'm quite sure Vista is not really production ready (never tried Vista and I
think will never)
But there are plenty all other tricks which are not specific to OFBiz...
You can't compare access to static content behind Apache to dynamic pages
from OFBiz.
Are you using a second server for DB at least ? Have you separated your
static content and provide it directly from Apache server in
front ? Etc.

Jacques

From: "Heidi Dehaes" <[EMAIL PROTECTED]>

> Hello,
>
> I use the ofbiz application and embedded tomcat server behind a Apache
> webserver.
> I am wondering that webpages on the Apache web server are very fast
> and webpages from the ofbizapplication are very slow.
>
> My database behind the application is MYSQL.
> I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
> Windows Vista.
>
> Is it normal ? How to speed up the ofbiz application?
> I use already standard caching possibilities in the catalog screen.
>
> Regards,
> Heidi
>
> ofbiz:   http://www.olagos.eu
> apache:   http://www.olagos.eu/soldenzomer2008/index.html
>
>






Re: ofbiz is so slow

2008-07-02 Thread Heidi Dehaes
You mean in the startup command?
I don't know by heart. I am at a distance from my (remote) server now.

What do you propose for a 4 GB central memory? With Vista 32 bit only
3 GB is addressable. And my MYSQL database has to run also.

Heidi

2008/7/2, Scott Gray <[EMAIL PROTECTED]>:
> Sorry if this is an obvious question but how much memory have you given to
> OFBiz?
>
> Regards
> Scott
>
> 2008/7/2 Heidi Dehaes <[EMAIL PROTECTED]>:
>
> > Yes, i know Linux is better but i am not a specialist in Linux.
> > But i am not using a separate server for the database? I thought my
> > workstation has enough power and memory to do it on the same machine.
> > Should it be better to separate the db on a separate machine?
> > The static content is separated and directly accessible from the Apache
> > server.
> >
> > Heidi
> >
> > 2008/7/2, Jacques Le Roux <[EMAIL PROTECTED]>:
> > > I'm not a specialist, but I will 1st switch from Vista to Linux :o)
> > > I'm quite sure Vista is not really production ready (never tried Vista
> > and I
> > > think will never)
> > > But there are plenty all other tricks which are not specific to OFBiz...
> > > You can't compare access to static content behind Apache to dynamic pages
> > > from OFBiz.
> > > Are you using a second server for DB at least ? Have you separated your
> > > static content and provide it directly from Apache server in
> > > front ? Etc.
> > >
> > > Jacques
> > >
> > > From: "Heidi Dehaes" <[EMAIL PROTECTED]>
> > >
> > > > Hello,
> > > >
> > > > I use the ofbiz application and embedded tomcat server behind a Apache
> > > > webserver.
> > > > I am wondering that webpages on the Apache web server are very fast
> > > > and webpages from the ofbizapplication are very slow.
> > > >
> > > > My database behind the application is MYSQL.
> > > > I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
> > > > Windows Vista.
> > > >
> > > > Is it normal ? How to speed up the ofbiz application?
> > > > I use already standard caching possibilities in the catalog screen.
> > > >
> > > > Regards,
> > > > Heidi
> > > >
> > > > ofbiz:   http://www.olagos.eu
> > > > apache:   http://www.olagos.eu/soldenzomer2008/index.html
> > > >
> > > >
> > >
> > >
> >
>


Re: run time error trunk 673311

2008-07-02 Thread BJ Freeman
luckily that is one thing that did not get wiped when I had my stroke
:)

Scott Gray sent the following on 7/2/2008 2:45 AM:
> Hi BJ
> 
> You've been around long enough to know that you should run "ant clean"
> right?
> 
> Regards
> Scott
> 
> 2008/7/2 BJ Freeman <[EMAIL PROTECTED]>:
> 
>> probably me
>> did a https://localhost:8443/partymgr/control/main
>>
>> 2008-07-02 02:10:36,984 (http-0.0.0.0-8443-1) [ UtilJ2eeCompat.java:78
>> :INFO ] Apache Tomcat detected, using response.getWriter to write text
>> out instead of response.getOutputStream
>> 2008-07-02 02:10:36,984 (http-0.0.0.0-8443-1)
>> [StandardWrapperValve.java:274:ERROR] Servlet.service() for servlet
>> ControlServlet threw exception
>> java.lang.NoSuchMethodError:
>>
>> org.ofbiz.widget.screen.ScreenRenderer.(Ljava/io/Writer;Lorg/ofbiz/base/util/collections/MapStack;Lorg/ofbiz/widget/screen/ScreenStringRenderer;)V
>> at
>>
>> org.ofbiz.widget.screen.ScreenWidgetViewHandler.render(ScreenWidgetViewHandler.java:91)
>> at
>> org.ofbiz.webapp.control.RequestHandler.renderView(RequestHandler.java:651)
>> at
>> org.ofbiz.webapp.control.RequestHandler.doRequest(RequestHandler.java:435)
>> at
>> org.ofbiz.webapp.control.ControlServlet.doGet(ControlServlet.java:198)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:690) at
>> javax.servlet.http.HttpServlet.service(HttpServlet.java:803) at
>>
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
>>
>>
> 



Re: run time error trunk 673311

2008-07-02 Thread Scott Gray
Hi BJ

You've been around long enough to know that you should run "ant clean"
right?

Regards
Scott

2008/7/2 BJ Freeman <[EMAIL PROTECTED]>:

> probably me
> did a https://localhost:8443/partymgr/control/main
>
> 2008-07-02 02:10:36,984 (http-0.0.0.0-8443-1) [ UtilJ2eeCompat.java:78
> :INFO ] Apache Tomcat detected, using response.getWriter to write text
> out instead of response.getOutputStream
> 2008-07-02 02:10:36,984 (http-0.0.0.0-8443-1)
> [StandardWrapperValve.java:274:ERROR] Servlet.service() for servlet
> ControlServlet threw exception
> java.lang.NoSuchMethodError:
>
> org.ofbiz.widget.screen.ScreenRenderer.(Ljava/io/Writer;Lorg/ofbiz/base/util/collections/MapStack;Lorg/ofbiz/widget/screen/ScreenStringRenderer;)V
> at
>
> org.ofbiz.widget.screen.ScreenWidgetViewHandler.render(ScreenWidgetViewHandler.java:91)
> at
> org.ofbiz.webapp.control.RequestHandler.renderView(RequestHandler.java:651)
> at
> org.ofbiz.webapp.control.RequestHandler.doRequest(RequestHandler.java:435)
> at
> org.ofbiz.webapp.control.ControlServlet.doGet(ControlServlet.java:198)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:690) at
> javax.servlet.http.HttpServlet.service(HttpServlet.java:803) at
>
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
>
>


Re: ofbiz is so slow

2008-07-02 Thread Scott Gray
Sorry if this is an obvious question but how much memory have you given to
OFBiz?

Regards
Scott

2008/7/2 Heidi Dehaes <[EMAIL PROTECTED]>:

> Yes, i know Linux is better but i am not a specialist in Linux.
> But i am not using a separate server for the database? I thought my
> workstation has enough power and memory to do it on the same machine.
> Should it be better to separate the db on a separate machine?
> The static content is separated and directly accessible from the Apache
> server.
>
> Heidi
>
> 2008/7/2, Jacques Le Roux <[EMAIL PROTECTED]>:
> > I'm not a specialist, but I will 1st switch from Vista to Linux :o)
> > I'm quite sure Vista is not really production ready (never tried Vista
> and I
> > think will never)
> > But there are plenty all other tricks which are not specific to OFBiz...
> > You can't compare access to static content behind Apache to dynamic pages
> > from OFBiz.
> > Are you using a second server for DB at least ? Have you separated your
> > static content and provide it directly from Apache server in
> > front ? Etc.
> >
> > Jacques
> >
> > From: "Heidi Dehaes" <[EMAIL PROTECTED]>
> >
> > > Hello,
> > >
> > > I use the ofbiz application and embedded tomcat server behind a Apache
> > > webserver.
> > > I am wondering that webpages on the Apache web server are very fast
> > > and webpages from the ofbizapplication are very slow.
> > >
> > > My database behind the application is MYSQL.
> > > I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
> > > Windows Vista.
> > >
> > > Is it normal ? How to speed up the ofbiz application?
> > > I use already standard caching possibilities in the catalog screen.
> > >
> > > Regards,
> > > Heidi
> > >
> > > ofbiz:   http://www.olagos.eu
> > > apache:   http://www.olagos.eu/soldenzomer2008/index.html
> > >
> > >
> >
> >
>


Re: ofbiz is so slow

2008-07-02 Thread Heidi Dehaes
Yes, i know Linux is better but i am not a specialist in Linux.
But i am not using a separate server for the database? I thought my
workstation has enough power and memory to do it on the same machine.
Should it be better to separate the db on a separate machine?
The static content is separated and directly accessible from the Apache server.

Heidi

2008/7/2, Jacques Le Roux <[EMAIL PROTECTED]>:
> I'm not a specialist, but I will 1st switch from Vista to Linux :o)
> I'm quite sure Vista is not really production ready (never tried Vista and I
> think will never)
> But there are plenty all other tricks which are not specific to OFBiz...
> You can't compare access to static content behind Apache to dynamic pages
> from OFBiz.
> Are you using a second server for DB at least ? Have you separated your
> static content and provide it directly from Apache server in
> front ? Etc.
>
> Jacques
>
> From: "Heidi Dehaes" <[EMAIL PROTECTED]>
>
> > Hello,
> >
> > I use the ofbiz application and embedded tomcat server behind a Apache
> > webserver.
> > I am wondering that webpages on the Apache web server are very fast
> > and webpages from the ofbizapplication are very slow.
> >
> > My database behind the application is MYSQL.
> > I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
> > Windows Vista.
> >
> > Is it normal ? How to speed up the ofbiz application?
> > I use already standard caching possibilities in the catalog screen.
> >
> > Regards,
> > Heidi
> >
> > ofbiz:   http://www.olagos.eu
> > apache:   http://www.olagos.eu/soldenzomer2008/index.html
> >
> >
>
>


Re: ofbiz is so slow

2008-07-02 Thread BJ Freeman
do a CTRL-ALT-DEL
to get the task manager
take a look at the processes when accessing the pages.
also look at memory allocation, even with 4 gigs is you have a lot of
processes you may be using virtual memory.


Heidi Dehaes sent the following on 7/2/2008 1:47 AM:
> Hello,
> 
> I use the ofbiz application and embedded tomcat server behind a Apache
> webserver.
> I am wondering that webpages on the Apache web server are very fast
> and webpages from the ofbizapplication are very slow.
> 
> My database behind the application is MYSQL.
> I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
> Windows Vista.
> 
> Is it normal ? How to speed up the ofbiz application?
> I use already standard caching possibilities in the catalog screen.
> 
> Regards,
> Heidi
> 
> ofbiz:   http://www.olagos.eu
> apache:   http://www.olagos.eu/soldenzomer2008/index.html
> 
> 
> 



run time error trunk 673311

2008-07-02 Thread BJ Freeman
probably me
did a https://localhost:8443/partymgr/control/main

2008-07-02 02:10:36,984 (http-0.0.0.0-8443-1) [ UtilJ2eeCompat.java:78
:INFO ] Apache Tomcat detected, using response.getWriter to write text
out instead of response.getOutputStream
2008-07-02 02:10:36,984 (http-0.0.0.0-8443-1)
[StandardWrapperValve.java:274:ERROR] Servlet.service() for servlet
ControlServlet threw exception
java.lang.NoSuchMethodError:
org.ofbiz.widget.screen.ScreenRenderer.(Ljava/io/Writer;Lorg/ofbiz/base/util/collections/MapStack;Lorg/ofbiz/widget/screen/ScreenStringRenderer;)V
at
org.ofbiz.widget.screen.ScreenWidgetViewHandler.render(ScreenWidgetViewHandler.java:91)
at
org.ofbiz.webapp.control.RequestHandler.renderView(RequestHandler.java:651)
at
org.ofbiz.webapp.control.RequestHandler.doRequest(RequestHandler.java:435)
at
org.ofbiz.webapp.control.ControlServlet.doGet(ControlServlet.java:198)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:690) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:803) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)



Re: newbie question - first installation and execution

2008-07-02 Thread Jacques Le Roux

You are right Judd. The trunk (at least) is not build anymore. So it seems from 
you research that this dates from 6/18

Please Tim, could you have a look at it ?

TIA

Jacques

From: "Jacques Le Roux" <[EMAIL PROTECTED]>

From: "juddco" <[EMAIL PROTECTED]>


The 6/18 trunk version is the last one with the ofbiz.jar file in it.

I had some trouble getting the version I had to work, so I'm scrapping the
load, the DB, etc. and starting over with the 6/18 trunk.

I ran ant, and as far as I could tell it was successful.  I had some hiccups


You don't need to run ant if you are using a nightly build. This is *the reason* these nightly builds exist. Just follow the 
instructions on the download page



with the install, and then with running ofbiz.  The last line of the log was
that the beanshell service ports were not secure.  I'm not sure if that's OK
or not (as in, I don't know if the startup script had hung or completed).


It's safe enough when testing. This is a reminder for production phase.


My database tables were set up, although they didn't contain any seed or
demo data.  (I had set it up to run mysql 4 local and the jdbc driver seemed
to be working just fine).


The nightly builds should contain aDerby  DB ready to go with demo data, 
*please read instructions on the download page* !

I'm currently downloading the last trunk nightly build and will let you know if 
I get any problems

Jacques


Ultimately, I got 404's when I went to
http://dev1.mydomain.com/ecommerce/control/main.

Back to the beginning.  If you see anything obvious that I'm missing, I'd
love to hear about it.  I'm going to stick with the Derby DB until I make
sure that the demo works.  If you have any pointers for changing from Derby
to MySQL, that would be great too.

Thanks again for the help.

Judd


jacques.le.roux wrote:


Simply upload the jar file and extract it in a new directory, then follow
instructions

Jacques

From: "juddco" <[EMAIL PROTECTED]>


Thanks.  Just glad to know I'm not crazy.

I'll give it another shot.  Any reason I can't just upload the jar file?
Or
do I need to replace the entire contents?

J

jacques.le.roux wrote:


Ashish,

Judd took http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip.
But
There has been a bug commited last night :
http://www.nabble.com/Release-4.0-ofbiz.jar-missing-tt18198738.html

Judd : just reload the new package,  following user ML would have
helped...

Jacques

From: "Ashish Vijaywargiya" <[EMAIL PROTECTED]>

Oh Man,

ofbiz.jar file is generated when you run the "ant".
"ant" (the default target) compiles all java files and at the end it
creates
the ofbiz.jar file in the OFBIZ_HOME directory.

It will be good if you should spend some time in reading the document
available on
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation+Index.

--
Ashish


On Tue, Jul 1, 2008 at 12:39 AM, juddco <[EMAIL PROTECTED]> wrote:



Thank you for your response.  I downloaded the trunk, and it's about
40%
larger than the 4.0 current.  Still no ofbiz.jar; I still get the same
error.

I tried adjusting the JAVA_HOME variable, thinking that might be it.

Basic question:  Should there be an ofbiz.jar file in the zip file at
this
link:  http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip?
There
isn't one.

Thanks again,

Judd


jacques.le.roux wrote:
>
> Which date si your ofbiz-rel4.0-current.zip ? Note that the trunk is
more
> recommended to try.
>
> Jacques
>
> From: "juddco"
>>
>> I'm trying to demo ofbiz to see if it fits my needs.  I am NOT a
java
>> programmer, so this is probably going to be a ridiculously stupid
>> question.
>>
>> I was following the quick and easy setup instructions
>> http://docs.ofbiz.org/display/OFBADMIN/Demo+and+Test+Setup+Guide
here
 (I
>> installed ofbiz-rel4.0-current.zip) and got to step 3.  I mucked
through
>> my
>> environment variables, but can't seem to get past this error:
"Unable
to
>> access jarfile ofbiz.jar."
>>
>> I also noticed that the archive I grabbed didn't have a file
>> (/framework/entity/config/entityengine.xml) referenced in the DB
setup
in
>> the Technical Production Setup doc.  Did I miss a download
somewhere?
>>
>> I've searched the ofbiz.apache site, this forum, and googled the
message
>> to
>> no avail.  I'm stumped.
>>
>> Thanks for the help.
>>
>> http://www.nabble.com/file/p18148299/jarfile_error.jpg
>> --
>> View this message in context:
>>
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18148299.html
>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>
>
>

--
View this message in context:
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18209064.html
Sent from the OFBiz - User mailing list archive at Nabble.com.








--
View this message in context:
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18214354.html
Sent from the OFBiz - User mailing list archive at Nabble.com.






--
View this me

Re: ofbiz is so slow

2008-07-02 Thread Jacques Le Roux

I'm not a specialist, but I will 1st switch from Vista to Linux :o)
I'm quite sure Vista is not really production ready (never tried Vista and I 
think will never)
But there are plenty all other tricks which are not specific to OFBiz...
You can't compare access to static content behind Apache to dynamic pages from 
OFBiz.
Are you using a second server for DB at least ? Have you separated your static 
content and provide it directly from Apache server in
front ? Etc.

Jacques

From: "Heidi Dehaes" <[EMAIL PROTECTED]>

Hello,

I use the ofbiz application and embedded tomcat server behind a Apache
webserver.
I am wondering that webpages on the Apache web server are very fast
and webpages from the ofbizapplication are very slow.

My database behind the application is MYSQL.
I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
Windows Vista.

Is it normal ? How to speed up the ofbiz application?
I use already standard caching possibilities in the catalog screen.

Regards,
Heidi

ofbiz:   http://www.olagos.eu
apache:   http://www.olagos.eu/soldenzomer2008/index.html





Re: ofbiz is so slow

2008-07-02 Thread David E Jones


Try reading the instructions (in the Technical Production Setup  
Guide), it's really quite simple.


Of course, there are those who do this sort of thing on a regular  
basis for hire if you're not comfortable managing the server yourself.


One page in 5 seconds is really bad (except for pages that wait for  
big background processes). Of course, if you have a bunch of custom  
pages it could be that they were written really poorly and get way too  
much from the database and do it in inefficient way.


Chances are it's just the config/code caching though. Super easy to  
change the cache.properties file for this...


-David


On Jul 2, 2008, at 3:01 AM, Heidi Dehaes wrote:

If you try my pages you will see i have only 1 page in 5 seconds, i  
guess.


No i didn't tune the caching. It is rather difficult stuff for me.

Heidi

2008/7/2, David E Jones <[EMAIL PROTECTED]>:


I guess it depends on what you mean by "slow". Compared to static  
pages
serving up dynamic pages rendered on the fly will definitely be  
slower, but
on a machine like that you should still be able to get 50-100 pages  
per

second.

Have you gone through the Technical Production Setup Guide and done  
the

performance related configurations (especially of the caching)?

-David



On Jul 2, 2008, at 2:47 AM, Heidi Dehaes wrote:


Hello,

I use the ofbiz application and embedded tomcat server behind a  
Apache

webserver.
I am wondering that webpages on the Apache web server are very fast
and webpages from the ofbizapplication are very slow.

My database behind the application is MYSQL.
I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
Windows Vista.

Is it normal ? How to speed up the ofbiz application?
I use already standard caching possibilities in the catalog screen.

Regards,
Heidi

ofbiz:   http://www.olagos.eu
apache:   http://www.olagos.eu/soldenzomer2008/index.html








Re: ofbiz is so slow

2008-07-02 Thread Heidi Dehaes
If you try my pages you will see i have only 1 page in 5 seconds, i guess.

No i didn't tune the caching. It is rather difficult stuff for me.

Heidi

2008/7/2, David E Jones <[EMAIL PROTECTED]>:
>
> I guess it depends on what you mean by "slow". Compared to static pages
> serving up dynamic pages rendered on the fly will definitely be slower, but
> on a machine like that you should still be able to get 50-100 pages per
> second.
>
> Have you gone through the Technical Production Setup Guide and done the
> performance related configurations (especially of the caching)?
>
> -David
>
>
>
> On Jul 2, 2008, at 2:47 AM, Heidi Dehaes wrote:
>
> > Hello,
> >
> > I use the ofbiz application and embedded tomcat server behind a Apache
> > webserver.
> > I am wondering that webpages on the Apache web server are very fast
> > and webpages from the ofbizapplication are very slow.
> >
> > My database behind the application is MYSQL.
> > I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
> > Windows Vista.
> >
> > Is it normal ? How to speed up the ofbiz application?
> > I use already standard caching possibilities in the catalog screen.
> >
> > Regards,
> > Heidi
> >
> > ofbiz:   http://www.olagos.eu
> > apache:   http://www.olagos.eu/soldenzomer2008/index.html
> >
>
>


Re: ofbiz is so slow

2008-07-02 Thread David E Jones


I guess it depends on what you mean by "slow". Compared to static  
pages serving up dynamic pages rendered on the fly will definitely be  
slower, but on a machine like that you should still be able to get  
50-100 pages per second.


Have you gone through the Technical Production Setup Guide and done  
the performance related configurations (especially of the caching)?


-David


On Jul 2, 2008, at 2:47 AM, Heidi Dehaes wrote:


Hello,

I use the ofbiz application and embedded tomcat server behind a Apache
webserver.
I am wondering that webpages on the Apache web server are very fast
and webpages from the ofbizapplication are very slow.

My database behind the application is MYSQL.
I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
Windows Vista.

Is it normal ? How to speed up the ofbiz application?
I use already standard caching possibilities in the catalog screen.

Regards,
Heidi

ofbiz:   http://www.olagos.eu
apache:   http://www.olagos.eu/soldenzomer2008/index.html




Nightly builds success ?

2008-07-02 Thread Jacques Le Roux
Hi,

I'm not quite sure, but I can't download with all my bandwidth power which 
seems to mean that there are other simultaneous downloads. Have we a log about 
that ?

Jacques
PS : Actually not, I forgot I also listen radio (musique) from the net while 
working :/. But the log question still stands

ofbiz is so slow

2008-07-02 Thread Heidi Dehaes
Hello,

I use the ofbiz application and embedded tomcat server behind a Apache
webserver.
I am wondering that webpages on the Apache web server are very fast
and webpages from the ofbizapplication are very slow.

My database behind the application is MYSQL.
I use 4 GB central memory with a Q6600 Quad Core Intel Processor on
Windows Vista.

Is it normal ? How to speed up the ofbiz application?
I use already standard caching possibilities in the catalog screen.

Regards,
Heidi

ofbiz:   http://www.olagos.eu
apache:   http://www.olagos.eu/soldenzomer2008/index.html


Re: new screens under product module

2008-07-02 Thread Jacques Le Roux

Yes the backgournd idea is to avoid to create useless Jira issues.

Jacques

From: "Ashish Vijaywargiya" <[EMAIL PROTECTED]>

No Policy has changed BJ.
I was just discussing him if he want to contribute back to Ofbiz or want to
do it in Custom application.

--
Ashish

On Wed, Jul 2, 2008 at 3:45 AM, BJ Freeman <[EMAIL PROTECTED]> wrote:


I have been informed in the past that the dev mailing list is a place to
discuss such topics then the jira is used to provide the patches, and
recap of the discussion.
or has the policy changed?

Ashish Vijaywargiya sent the following on 7/1/2008 9:47 PM:
> Rajeev,
>
> If you have some thoughts that you think would be helpful for the ofbiz
> community then you
> can propose those features on the JIRA issue tracker and you can discuss
> those with the community members.
>
> If you would like to do that for your custom application then you can
create
> the custom
> component in the hot-deploy directory and can put the mount point same as
> that of Product Component in ofbiz-component.xml file.
> And then on each request (if you would like to reuse the request uri from
> Product component) you can put the related view-map entries in the
> controller.xml(Custom application one) file and can change the screen
> definition according to your need.
>
> Please let us know if you still have some questions.
>
> --
> Ashish
>
> On Tue, Jul 1, 2008 at 3:44 PM, Rajeev Gupta <[EMAIL PROTECTED]
>
> wrote:
>
>> We like to create a new custom screen in the product module at the same
>> level as given here; that will interact with the database product,
feature
>> and feature category table.
>>
>> Is that possible? Any guidance will be appreciated. Where should we add
>> that?
>>
>>
>>
>






Re: newbie question - first installation and execution

2008-07-02 Thread Jacques Le Roux

From: "juddco" <[EMAIL PROTECTED]>


The 6/18 trunk version is the last one with the ofbiz.jar file in it.

I had some trouble getting the version I had to work, so I'm scrapping the
load, the DB, etc. and starting over with the 6/18 trunk.

I ran ant, and as far as I could tell it was successful.  I had some hiccups


You don't need to run ant if you are using a nightly build. This is *the reason* these nightly builds exist. Just follow the 
instructions on the download page



with the install, and then with running ofbiz.  The last line of the log was
that the beanshell service ports were not secure.  I'm not sure if that's OK
or not (as in, I don't know if the startup script had hung or completed).


It's safe enough when testing. This is a reminder for production phase.


My database tables were set up, although they didn't contain any seed or
demo data.  (I had set it up to run mysql 4 local and the jdbc driver seemed
to be working just fine).


The nightly builds should contain aDerby  DB ready to go with demo data, 
*please read instructions on the download page* !

I'm currently downloading the last trunk nightly build and will let you know if 
I get any problems

Jacques


Ultimately, I got 404's when I went to
http://dev1.mydomain.com/ecommerce/control/main.

Back to the beginning.  If you see anything obvious that I'm missing, I'd
love to hear about it.  I'm going to stick with the Derby DB until I make
sure that the demo works.  If you have any pointers for changing from Derby
to MySQL, that would be great too.

Thanks again for the help.

Judd


jacques.le.roux wrote:


Simply upload the jar file and extract it in a new directory, then follow
instructions

Jacques

From: "juddco" <[EMAIL PROTECTED]>


Thanks.  Just glad to know I'm not crazy.

I'll give it another shot.  Any reason I can't just upload the jar file?
Or
do I need to replace the entire contents?

J

jacques.le.roux wrote:


Ashish,

Judd took http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip.
But
There has been a bug commited last night :
http://www.nabble.com/Release-4.0-ofbiz.jar-missing-tt18198738.html

Judd : just reload the new package,  following user ML would have
helped...

Jacques

From: "Ashish Vijaywargiya" <[EMAIL PROTECTED]>

Oh Man,

ofbiz.jar file is generated when you run the "ant".
"ant" (the default target) compiles all java files and at the end it
creates
the ofbiz.jar file in the OFBIZ_HOME directory.

It will be good if you should spend some time in reading the document
available on
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation+Index.

--
Ashish


On Tue, Jul 1, 2008 at 12:39 AM, juddco <[EMAIL PROTECTED]> wrote:



Thank you for your response.  I downloaded the trunk, and it's about
40%
larger than the 4.0 current.  Still no ofbiz.jar; I still get the same
error.

I tried adjusting the JAVA_HOME variable, thinking that might be it.

Basic question:  Should there be an ofbiz.jar file in the zip file at
this
link:  http://build.hotwaxmedia.com/builds/ofbiz-trunk-current.zip?
There
isn't one.

Thanks again,

Judd


jacques.le.roux wrote:
>
> Which date si your ofbiz-rel4.0-current.zip ? Note that the trunk is
more
> recommended to try.
>
> Jacques
>
> From: "juddco"
>>
>> I'm trying to demo ofbiz to see if it fits my needs.  I am NOT a
java
>> programmer, so this is probably going to be a ridiculously stupid
>> question.
>>
>> I was following the quick and easy setup instructions
>> http://docs.ofbiz.org/display/OFBADMIN/Demo+and+Test+Setup+Guide
here
 (I
>> installed ofbiz-rel4.0-current.zip) and got to step 3.  I mucked
through
>> my
>> environment variables, but can't seem to get past this error:
"Unable
to
>> access jarfile ofbiz.jar."
>>
>> I also noticed that the archive I grabbed didn't have a file
>> (/framework/entity/config/entityengine.xml) referenced in the DB
setup
in
>> the Technical Production Setup doc.  Did I miss a download
somewhere?
>>
>> I've searched the ofbiz.apache site, this forum, and googled the
message
>> to
>> no avail.  I'm stumped.
>>
>> Thanks for the help.
>>
>> http://www.nabble.com/file/p18148299/jarfile_error.jpg
>> --
>> View this message in context:
>>
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18148299.html
>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>
>
>

--
View this message in context:
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18209064.html
Sent from the OFBiz - User mailing list archive at Nabble.com.








--
View this message in context:
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18214354.html
Sent from the OFBiz - User mailing list archive at Nabble.com.






--
View this message in context: 
http://www.nabble.com/newbie-question---first-installation-and-execution-tp18148299p18228906.html
Sent from the OFBiz - User mailing list archive at Nabble.com.





Re: delete products, categories or catalogs

2008-07-02 Thread Jacques Le Roux

From: "Rajeev Gupta" <[EMAIL PROTECTED]>

Jacques,
Thanks. That was it. We had to replace code39 with ean13.  If you know about
the easiest method (if inbuilt) to create new screens, we can use your help.


New screens in OFBiz ? Then be sure to read this before 
http://docs.ofbiz.org/display/OFBADMIN/OFBiz+Documentation+Index

Jacques


Thanks in advance.
Rajeev Gupta
www.hytechpro.com
-Original Message-
From: Jacques Le Roux [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 20, 2008 4:34 AM

To: user@ofbiz.apache.org; [EMAIL PROTECTED]
Subject: Re: delete products, categories or catalogs

If you look at line 41 of ProductBarCode.fo.ftl you will find your answer

Jacques

From: "Rajeev Gupta" <[EMAIL PROTECTED]>


Jacques,

Thanks for your message. That's helpful. I was more interested in cleaning
up data that you create during the start of any implementation.

I saw that you developed barcode patch. Is there a way to change the
formatting to EAN-13 style? I will send a separate email on the group

about

it.

Thanks,
Rajeev

-Original Message-
From: Jacques Le Roux [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 19, 2008 2:21 PM

To: user@ofbiz.apache.org; [EMAIL PROTECTED]
Subject: Re: delete products, categories or catalogs

This question has been already asked many times. You should find more
information in Nabble. 
The main idea is that in OFBiz we don't delete but use end dates to mark
obsolete. 
Four main reasons :

. Data are still there in case of audit
. Disk space should not a be problem 
. DB indexes are managing quite well huge data volumes.

. Easier with all entities associations

If you really need to do it, think about these 4 points before...

Jacques

From: "Rajeev Gupta" <[EMAIL PROTECTED]>

Is it possible to delete products, categories or catalogs that are no

longer
needed? What's the best way to achieve it? 











Re: new screens under product module

2008-07-02 Thread Ashish Vijaywargiya
No Policy has changed BJ.
I was just discussing him if he want to contribute back to Ofbiz or want to
do it in Custom application.

--
Ashish

On Wed, Jul 2, 2008 at 3:45 AM, BJ Freeman <[EMAIL PROTECTED]> wrote:

> I have been informed in the past that the dev mailing list is a place to
> discuss such topics then the jira is used to provide the patches, and
> recap of the discussion.
> or has the policy changed?
>
> Ashish Vijaywargiya sent the following on 7/1/2008 9:47 PM:
> > Rajeev,
> >
> > If you have some thoughts that you think would be helpful for the ofbiz
> > community then you
> > can propose those features on the JIRA issue tracker and you can discuss
> > those with the community members.
> >
> > If you would like to do that for your custom application then you can
> create
> > the custom
> > component in the hot-deploy directory and can put the mount point same as
> > that of Product Component in ofbiz-component.xml file.
> > And then on each request (if you would like to reuse the request uri from
> > Product component) you can put the related view-map entries in the
> > controller.xml(Custom application one) file and can change the screen
> > definition according to your need.
> >
> > Please let us know if you still have some questions.
> >
> > --
> > Ashish
> >
> > On Tue, Jul 1, 2008 at 3:44 PM, Rajeev Gupta <[EMAIL PROTECTED]
> >
> > wrote:
> >
> >> We like to create a new custom screen in the product module at the same
> >> level as given here; that will interact with the database product,
> feature
> >> and feature category table.
> >>
> >> Is that possible? Any guidance will be appreciated. Where should we add
> >> that?
> >>
> >>
> >>
> >
>
>


Re: Login for party

2008-07-02 Thread Hans Bakker
if you assign security for project manager only, you should already in
the url indicate that you want to logon to the projectmanager
so: https://localhost:8443/projectmgr and
not https://localhost:8443/partymgr


On Wed, 2008-07-02 at 00:46 -0700, Pal InfoCom Technologies wrote:
> 
> 
> For Project Management, Through Party Module ,  I have created party group &
> party create employee  & link employee to party group. Then asigned security
> options to user id i.e. Project Admin & Project User. Now after logging out
> from admin credentials I want to login again as employee with its
> credentials but not able to login. Please let me know how to login as it is
> displaying error message " Login for application not completed, required
> permissions missing"
> 
> 
> 
-- 
http://www.antwebsystems.com : 
Quality OFBiz support for competitive rates



Login for party

2008-07-02 Thread Pal InfoCom Technologies


For Project Management, Through Party Module ,  I have created party group &
party create employee  & link employee to party group. Then asigned security
options to user id i.e. Project Admin & Project User. Now after logging out
from admin credentials I want to login again as employee with its
credentials but not able to login. Please let me know how to login as it is
displaying error message " Login for application not completed, required
permissions missing"



-- 
View this message in context: 
http://www.nabble.com/Login-for-party-tp18232030p18232030.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: new screens under product module

2008-07-02 Thread BJ Freeman
I have been informed in the past that the dev mailing list is a place to
discuss such topics then the jira is used to provide the patches, and
recap of the discussion.
or has the policy changed?

Ashish Vijaywargiya sent the following on 7/1/2008 9:47 PM:
> Rajeev,
> 
> If you have some thoughts that you think would be helpful for the ofbiz
> community then you
> can propose those features on the JIRA issue tracker and you can discuss
> those with the community members.
> 
> If you would like to do that for your custom application then you can create
> the custom
> component in the hot-deploy directory and can put the mount point same as
> that of Product Component in ofbiz-component.xml file.
> And then on each request (if you would like to reuse the request uri from
> Product component) you can put the related view-map entries in the
> controller.xml(Custom application one) file and can change the screen
> definition according to your need.
> 
> Please let us know if you still have some questions.
> 
> --
> Ashish
> 
> On Tue, Jul 1, 2008 at 3:44 PM, Rajeev Gupta <[EMAIL PROTECTED]>
> wrote:
> 
>> We like to create a new custom screen in the product module at the same
>> level as given here; that will interact with the database product, feature
>> and feature category table.
>>
>> Is that possible? Any guidance will be appreciated. Where should we add
>> that?
>>
>>
>>
>