Re: import existing package fails

2010-03-25 Thread Jacques Le Roux

As you build with ant it must know how to build, put
   fileset dir=../product/build/lib includes=*.jar/
in the party build.xml file.

Note that this introduces a dependency from party to product component.
I did not try and this will maybe not work because the product jar file must exist and if you look at the application build.xml 
party is called before...


This is why it's far better to use services when possible.

Jacques

From: Patrick patrickinminneapo...@gmail.com

OrderServices.java has this import directive
import org.ofbiz.product.store.ProductStoreWorker;

If I copy the import to PartyServices.java the compiler complains it
doesn't know about the package.
Is there a different import statement that would work?

PartyServices.java:145: package org.ofbiz.product.store does not exist
[javac15] import org.ofbiz.product.store.ProductStoreWorker;

Thanks
Patrick






Re: Cart getting empty

2010-03-25 Thread Ruth Hoffman

Hi Abey:
Interesting observation. I have not an opportunity do much testing with IE8.
Regards,
Ruth

Abey Jacob wrote:

Let me Thank each and everyone of you for the patient responses.

I could see this problem with the demo site (09.04) as well. Based on the responses, I tried out a few things up with the installed Ofbiz in my machine.  Here is the observation. 


I was using IE 8.0.7. But when I used firefox3.6.2  it shows up the next screen 
where I could enter details of 'quick checkout'. And it proceeded to the point 
of showing 'Submit Order' and then 'Order Confirmation'. So the flow is normal 
in both the versions 4.0 and 09.04, when I use firefox.

So may be it was some problem with the storage of cookies in the browser;  I am 
not sure what setting change I should make in the IE browser for it to correct 
the flow.

 Thanks,
Abey.



--- On Tue, 23/3/10, Scott Gray scott.g...@hotwaxmedia.com wrote:

From: Scott Gray scott.g...@hotwaxmedia.com
Subject: Re: Cart getting empty
To: user@ofbiz.apache.org
Date: Tuesday, 23 March, 2010, 3:34

One common place I've seen this happen is from HTTPS to HTTP.  If you start 
your session in HTTPS and switch to HTTP then the session will almost always 
get dropped (I'm not sure if the JSESSIONID helps here, it may do).

If anyone wants to try that scenario they might have better luck trying to 
replicate the problem.

Regards
Scott

HotWax Media
http://www.hotwaxmedia.com

On 22/03/2010, at 12:02 PM, David E Jones wrote:

  

This could just be a problem with a failure to maintain the session between 
HTTP and HTTPS requests (ie you're getting one HTTP session and one HTTPS 
session) because the jsessionid isn't forced when going between HTTP and HTTPS. 
There are configuration/deployment options to help take care of this on a lower 
level, and at some point (don't remember when) the URL writing code in OFBiz 
was changed to force a jsessionid when going between HTTP and HTTPS.

-David


On Mar 22, 2010, at 11:54 AM, Ruth Hoffman wrote:



Hi BJ:
No. Sorry. I didn't mean to imply that. I meant that in the past I have been 
through the out-of-the-box 4.x version of the eCommerce demo - many times - and 
I have not see this happen. But, as we all know, there are many ways to skin an 
OFBiz cat and perhaps I did not run through the exact steps that Abey has 
reported.

Regards,
Ruth

BJ Freeman wrote:
  

Ruth do you know of a 4.0 demo site
I would be interested.

=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


Ruth Hoffman sent the following on 3/22/2010 10:32 AM:



Hi Abey:
I've been through both the 4.0 and 9.04 versions of the OFBiz eCommerce
checkout (many times) and have not seen this happen.
One thing you could do right now is go to one of the demo sites and try
your exact sequence of steps (and note what they are because, as you
have probably observed, there are many twists and turns that could take
place during checkout) and see if it occurs there.

Regards,
Ruth

Find me on the web at http://www.myofbiz.com or Google keyword myofbiz
ruth.hoff...@myofbiz.com

BJ Freeman wrote:

  

I vaguely remember something related to 4.0
it really is near its life cycle so you may want to consider moving up
to 9.04. or even wait for 10.4.
otherwise do a google search
ofbiz  cart
or
ofbiz 4.0

=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro



Abey Jacob sent the following on 3/22/2010 1:50 AM:



Hi,
I am NOT experienced in Ofbiz. Let me tell a problem I faced while
doing a trial.
Did an ant build of the 4.0 Ofbiz code and started the engine. From
the ecommerce module, tried to do a 'quick checkout' of 3 'round
gizmo's. After entering the shipping details, the next screen tells
me that  the cart is empty.  But when I see the cart using 'view
cart' it shows all the materials I  added to the cart, there in the
cart itself. But when I again go for checkout, it again tells me that
the cart is empty. When  I try to see the order from the order list,
I find my order has not been saved.
I tried the same with 09.04 version of the code, with the same
result. Anyone of you have an idea why this is happening. I have
Windows 7 as the system.
Thanks,
Abey.



  










  
  


Re: Cart getting empty

2010-03-25 Thread BJ Freeman
Microsoft has a way of programming their browser to work best with Net
sites. they do use non standard protocols.
so I would suggest you talk on the Microsoft forums.
put
news://news.microsoft.com
into the URL address of your browser to find the correct forum.
or check
http://support.microsoft.com





=

BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


Abey Jacob sent the following on 3/25/2010 4:20 AM:
 Let me Thank each and everyone of you for the patient responses.
 
 I could see this problem with the demo site (09.04) as well. Based on the 
 responses, I tried out a few things up with the installed Ofbiz in my 
 machine.  Here is the observation. 
 
 I was using IE 8.0.7. But when I used firefox3.6.2  it shows up the next 
 screen where I could enter details of 'quick checkout'. And it proceeded to 
 the point of showing 'Submit Order' and then 'Order Confirmation'. So the 
 flow is normal in both the versions 4.0 and 09.04, when I use firefox.
 
 So may be it was some problem with the storage of cookies in the browser;  I 
 am not sure what setting change I should make in the IE browser for it to 
 correct the flow.
 
  Thanks,
 Abey.
 
 
 
 --- On Tue, 23/3/10, Scott Gray scott.g...@hotwaxmedia.com wrote:
 
 From: Scott Gray scott.g...@hotwaxmedia.com
 Subject: Re: Cart getting empty
 To: user@ofbiz.apache.org
 Date: Tuesday, 23 March, 2010, 3:34
 
 One common place I've seen this happen is from HTTPS to HTTP.  If you start 
 your session in HTTPS and switch to HTTP then the session will almost always 
 get dropped (I'm not sure if the JSESSIONID helps here, it may do).
 
 If anyone wants to try that scenario they might have better luck trying to 
 replicate the problem.
 
 Regards
 Scott
 
 HotWax Media
 http://www.hotwaxmedia.com
 
 On 22/03/2010, at 12:02 PM, David E Jones wrote:
 
 This could just be a problem with a failure to maintain the session between 
 HTTP and HTTPS requests (ie you're getting one HTTP session and one HTTPS 
 session) because the jsessionid isn't forced when going between HTTP and 
 HTTPS. There are configuration/deployment options to help take care of this 
 on a lower level, and at some point (don't remember when) the URL writing 
 code in OFBiz was changed to force a jsessionid when going between HTTP and 
 HTTPS.

 -David


 On Mar 22, 2010, at 11:54 AM, Ruth Hoffman wrote:

 Hi BJ:
 No. Sorry. I didn't mean to imply that. I meant that in the past I have 
 been through the out-of-the-box 4.x version of the eCommerce demo - many 
 times - and I have not see this happen. But, as we all know, there are many 
 ways to skin an OFBiz cat and perhaps I did not run through the exact steps 
 that Abey has reported.

 Regards,
 Ruth

 BJ Freeman wrote:
 Ruth do you know of a 4.0 demo site
 I would be interested.

 =
 BJ Freeman
 http://bjfreeman.elance.com
 Strategic Power Office with Supplier Automation 
 http://www.businessesnetwork.com/automation/viewforum.php?f=93
 Specialtymarket.com http://www.specialtymarket.com/

 Systems Integrator-- Glad to Assist

 Chat  Y! messenger: bjfr33man
 Linkedin
 http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


 Ruth Hoffman sent the following on 3/22/2010 10:32 AM:

 Hi Abey:
 I've been through both the 4.0 and 9.04 versions of the OFBiz eCommerce
 checkout (many times) and have not seen this happen.
 One thing you could do right now is go to one of the demo sites and try
 your exact sequence of steps (and note what they are because, as you
 have probably observed, there are many twists and turns that could take
 place during checkout) and see if it occurs there.

 Regards,
 Ruth
 
 Find me on the web at http://www.myofbiz.com or Google keyword myofbiz
 ruth.hoff...@myofbiz.com

 BJ Freeman wrote:

 I vaguely remember something related to 4.0
 it really is near its life cycle so you may want to consider moving up
 to 9.04. or even wait for 10.4.
 otherwise do a google search
 ofbiz  cart
 or
 ofbiz 4.0

 =
 BJ Freeman
 http://bjfreeman.elance.com
 Strategic Power Office with Supplier Automation
 http://www.businessesnetwork.com/automation/viewforum.php?f=93
 Specialtymarket.com http://www.specialtymarket.com/

 Systems Integrator-- Glad to Assist

 Chat  Y! messenger: bjfr33man
 Linkedin
 http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro



 Abey Jacob sent the following on 3/22/2010 1:50 AM:

 Hi,
 I am NOT experienced in Ofbiz. Let me tell a problem I faced while
 doing a trial.
 Did an ant build of the 4.0 Ofbiz code and started the engine. From
 the ecommerce module, 

Multiple Payment Types

2010-03-25 Thread ScottA

Hello,

I was checking out the latest ecommerce in the trunk and I have a question
regarding multiple payment types. While it is not implemented in the trunk,
is there any support OOTB where someone can place an order then pay for it
using lets say a visa, a mastercard and another form of payment? I see that
you can use a credit card and a gift card but the scenario I am asking about
could be an invoice of $300 with a $100 payment by Visa, a $100 payment by
Amex and a $100 payment by Discover where the customer is choosing the
amount to pay by each method.

Any help would be appreciated. TIA
-- 
View this message in context: 
http://n4.nabble.com/Multiple-Payment-Types-tp1691124p1691124.html
Sent from the OFBiz - User mailing list archive at Nabble.com.


Re: Multiple Payment Types

2010-03-25 Thread ScottA

Sorry BJ, I'm a little confused. If for example my gateway is auth.net, they
would be the gateway for visa/mc/amec/discover but the question is, can
ofbiz handle these multiple forms. $100 visa, $100, mc, $100 amex, etc.
-- 
View this message in context: 
http://n4.nabble.com/Multiple-Payment-Types-tp1691124p1691203.html
Sent from the OFBiz - User mailing list archive at Nabble.com.


Re: Multiple Payment Types

2010-03-25 Thread Ruth Hoffman

Hi Scott:
I think there may be some restrictions in splitting payments between 
more than one online service processing provider(s). I seem to remember 
reading something in the code about that. Since you are talking about 
just auth.net as your service processing provider, you should be able to 
do this. I've never done it so I don't know if it really works 
out-of-the-box, but the demo store does support this scenario.


If you want more info on this, please see my book  Getting Started with 
Apache OFBiz, E-Commerce Out-Of-The-Box, revised Chapter 4.4.


Regards,
Ruth



ScottA wrote:

Sorry BJ, I'm a little confused. If for example my gateway is auth.net, they
would be the gateway for visa/mc/amec/discover but the question is, can
ofbiz handle these multiple forms. $100 visa, $100, mc, $100 amex, etc.
  


FREE - OFBIz Manufacturing and MRP ebook

2010-03-25 Thread Sharan-F

Hi Everyone

Just to let you know that the free “Getting Started with Apache OFBiz
Manufacturing   MRP in 5 Easy Steps” guide is now listed in the Learning
section on the OFBiz books page  http://cwiki.apache.org/confluence/x/FoB2
and can be downloaded from  http://www.myofbiz.com www.myOFBiz.com 

Thanks
Sharan

-- 
View this message in context: 
http://n4.nabble.com/FREE-OFBIz-Manufacturing-and-MRP-ebook-tp1691243p1691243.html
Sent from the OFBiz - User mailing list archive at Nabble.com.


Re: Multiple Payment Types

2010-03-25 Thread ScottA

Thanks very much Ruth. I was hoping that would be the case. Much appreciated.
-- 
View this message in context: 
http://n4.nabble.com/Multiple-Payment-Types-tp1691124p1691249.html
Sent from the OFBiz - User mailing list archive at Nabble.com.


Re: Multiple Payment Types

2010-03-25 Thread BJ Freeman
as far as the gateway, yes you can put through multiple payments for an
order that your provider handles.
the gate way has no way of knowing it is one order.
Not an OTTB feature though.
It is possible, though.

=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


ScottA sent the following on 3/25/2010 12:57 PM:
 Sorry BJ, I'm a little confused. If for example my gateway is auth.net, they
 would be the gateway for visa/mc/amec/discover but the question is, can
 ofbiz handle these multiple forms. $100 visa, $100, mc, $100 amex, etc.




Re: Multiple Payment Types

2010-03-25 Thread BJ Freeman
ruth:
almost correct. OTTB only one type of payment per order, but many type
of payments to select from.

=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


Ruth Hoffman sent the following on 3/25/2010 1:30 PM:
 Hi Scott:
 I think there may be some restrictions in splitting payments between
 more than one online service processing provider(s). I seem to remember
 reading something in the code about that. Since you are talking about
 just auth.net as your service processing provider, you should be able to
 do this. I've never done it so I don't know if it really works
 out-of-the-box, but the demo store does support this scenario.
 
 If you want more info on this, please see my book  Getting Started with
 Apache OFBiz, E-Commerce Out-Of-The-Box, revised Chapter 4.4.
 
 Regards,
 Ruth
 
 
 
 ScottA wrote:
 Sorry BJ, I'm a little confused. If for example my gateway is
 auth.net, they
 would be the gateway for visa/mc/amec/discover but the question is, can
 ofbiz handle these multiple forms. $100 visa, $100, mc, $100 amex, etc.
   
 




demo store look and feel

2010-03-25 Thread Christopher Snow
The ofbiz demo store looks very tired compared to stores such as magento 
commerce demo (http://demo.magentocommerce.com/)


Has anyone considered copying magento's look and feel for ofbiz?

Many thanks,

Chris






Re: demo store look and feel

2010-03-25 Thread BJ Freeman
sure just create a theme.
or take a couple from the backend and make them for ecommerce.


=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


Christopher Snow sent the following on 3/25/2010 4:42 PM:
 The ofbiz demo store looks very tired compared to stores such as magento
 commerce demo (http://demo.magentocommerce.com/)
 
 Has anyone considered copying magento's look and feel for ofbiz?
 
 Many thanks,
 
 Chris
 
 
 
 
 




Re: demo store look and feel

2010-03-25 Thread Ruth Hoffman

Wow, that was easy  ;-)
Regards,
Ruth

BJ Freeman wrote:

you can use
https://issues.apache.org/jira/browse/OFBIZ-3490
to create a new theme by copying then go in and make changes so it works
 with the ecommerce side


=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


BJ Freeman sent the following on 3/25/2010 5:00 PM:
  

sure just create a theme.
or take a couple from the backend and make them for ecommerce.


=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


Christopher Snow sent the following on 3/25/2010 4:42 PM:


The ofbiz demo store looks very tired compared to stores such as magento
commerce demo (http://demo.magentocommerce.com/)

Has anyone considered copying magento's look and feel for ofbiz?

Many thanks,

Chris





  







  


Re: demo store look and feel

2010-03-25 Thread BJ Freeman
if I figured he was a end user would have approached it from a different
angle. :D

as my dad use to say it is something any 5yr can do with 20 yrs experience.

=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


Ruth Hoffman sent the following on 3/25/2010 5:17 PM:
 Wow, that was easy  ;-)
 Regards,
 Ruth
 
 BJ Freeman wrote:
 you can use
 https://issues.apache.org/jira/browse/OFBIZ-3490
 to create a new theme by copying then go in and make changes so it works
  with the ecommerce side


 =
 BJ Freeman
 http://bjfreeman.elance.com
 Strategic Power Office with Supplier Automation
 http://www.businessesnetwork.com/automation/viewforum.php?f=93
 Specialtymarket.com http://www.specialtymarket.com/

 Systems Integrator-- Glad to Assist

 Chat  Y! messenger: bjfr33man
 Linkedin
 http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro



 BJ Freeman sent the following on 3/25/2010 5:00 PM:
  
 sure just create a theme.
 or take a couple from the backend and make them for ecommerce.


 =
 BJ Freeman
 http://bjfreeman.elance.com
 Strategic Power Office with Supplier Automation
 http://www.businessesnetwork.com/automation/viewforum.php?f=93
 Specialtymarket.com http://www.specialtymarket.com/

 Systems Integrator-- Glad to Assist

 Chat  Y! messenger: bjfr33man
 Linkedin
 http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro



 Christopher Snow sent the following on 3/25/2010 4:42 PM:

 The ofbiz demo store looks very tired compared to stores such as
 magento
 commerce demo (http://demo.magentocommerce.com/)

 Has anyone considered copying magento's look and feel for ofbiz?

 Many thanks,

 Chris





   

 



   
 




Re: demo store look and feel

2010-03-25 Thread Christopher Snow
My question was more along the lines of: 'Would a rip of magento look 
and feel be accepted into trunk?'


BJ Freeman wrote:

sure just create a theme.
or take a couple from the backend and make them for ecommerce.


=
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation 
http://www.businessesnetwork.com/automation/viewforum.php?f=93
Specialtymarket.com http://www.specialtymarket.com/

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro


Christopher Snow sent the following on 3/25/2010 4:42 PM:
  

The ofbiz demo store looks very tired compared to stores such as magento
commerce demo (http://demo.magentocommerce.com/)

Has anyone considered copying magento's look and feel for ofbiz?

Many thanks,

Chris









  




Re: demo store look and feel

2010-03-25 Thread Bruno Busco
We already have an alternative theme for the ecommerce application in the
trunk.
It is called multiflex.
May be we could spend some time to improve it and make it the default
ecommerce theme.

-Bruno

2010/3/26 Christopher Snow sno...@snowconsulting.co.uk

 My question was more along the lines of: 'Would a rip of magento look and
 feel be accepted into trunk?'


 BJ Freeman wrote:

 sure just create a theme.
 or take a couple from the backend and make them for ecommerce.


 =
 BJ Freeman
 http://bjfreeman.elance.com
 Strategic Power Office with Supplier Automation 
 http://www.businessesnetwork.com/automation/viewforum.php?f=93
 Specialtymarket.com http://www.specialtymarket.com/

 Systems Integrator-- Glad to Assist

 Chat  Y! messenger: bjfr33man
 Linkedin
 
 http://www.linkedin.com/profile?viewProfile=key=1237480locale=en_UStrk=tab_pro
 


 Christopher Snow sent the following on 3/25/2010 4:42 PM:


 The ofbiz demo store looks very tired compared to stores such as magento
 commerce demo (http://demo.magentocommerce.com/)

 Has anyone considered copying magento's look and feel for ofbiz?

 Many thanks,

 Chris