Re: xml engine / handler

2010-02-01 Thread Zhang Shiqian
In your service you can return any format data, because json is simple and
small, so i adopted it.
You can user json-lib  to format your java
object.

On Tue, Feb 2, 2010 at 3:47 PM, Zhang Shiqian
wrote:

> 1. Apply the service-wsdl.patch to your OFBIZ copy.
> 2. Export your service by add "export="true" in your service definition
> file(services.xml), for example
>
> 
>  location=" 
> 3. In the Flex mxml file, declare the web service
>
>  
> http://ns.adobe.com/mxml/2009";
>xmlns:s="library://ns.adobe.com/flex/spark"
>xmlns:mx="library://ns.adobe.com/flex/halo"
>creationComplete="initApp()">
> 
>wsdl="
> http://localhost:8080/webtools/control/SOAPService/getReverseAuctionPrice?WSDL
> "
>   useProxy="false">
>  result="flashReverseAuctionData(event)"
>  fault="showError(event)">
> 
> {period}
> {runMode}
> {itemId}
> {participants}
> {newestBidTime}
> 
> 
> 
> 
>
> flashReverseAuctionData and showError are the callback method. period
> and runMode are the parameters which bind to properties of the class.
> 
> [Bindable]
> private var itemId:String;
> [Bindable]
> private var participants:String;
> ...
>
>
> 4. Create the callback method called by Flex webservice component.
>
>  private function showError(event:FaultEvent):void {
>
> Alert.show(event.fault.faultString);
> }
> 5. Call the service
>
> try {
>
> serviceId.getReverseAuctionPrice();
> } catch(ex:Error) {
> Alert.show(ex.message);
> }
> 6. Manipulate the result
>
> private function flashReverseAuctionData(event:ResultEvent):void {
>
> var bidsData = JSON.decode(event.result.toString());
> if(bidsDataStore==null ){
> bidsDataStore= bidsData;
> }else{
>  //TODO
> }
> }
>
> Using as3corelib to deal with JSON format data
>
>
>
>
>
> On Tue, Feb 2, 2010 at 1:05 PM, Christopher Snow <
> sno...@snowconsulting.co.uk> wrote:
>
>> Hi Zhang,
>>
>> Would you be happy to provide some documentation on how to do this?
>>
>> Many thanks,
>>
>> Chris
>>
>>
>> Zhang Shiqian wrote:
>>
>>> Ofbiz services can be exported as standard web services, you can use Flex
>>> to
>>> call the web services. We have developed some Flex components used in our
>>> ofbiz applications run in this model, and introduced as3corelib to deal
>>> with
>>> JSON format data.
>>>
>>> On Tue, Feb 2, 2010 at 12:42 AM, Christopher Snow <
>>> sno...@snowconsulting.co.uk> wrote:
>>>
>>>
>>>
 We are not automatically exporting objects with REST.

 We are exporting some services with REST.  Each one has to be manually
 coded.

 It would be nice to develop a solution to automatically export objects
 (entities), perhaps this would be relatively trivial using the new
 "entity-auto" service (i.e. CRuD service)?




 Abdullah Shaikh wrote:



> Yes, thats good to have a separate component to handle xml over http,
> REST
> in your case.
>
> But I am not getting how are forming the url's, because in REST, urls
> represents a objects.
>
> For example :
>
> http://ofbiz/partymgr/party/1234 - will represent a party whose id is
> 1234
>
> http://ofbiz/partymgr/party/1234/addrress/5678 - will represent the
> address
> whose id is 5678 of party 1234
>
> I guess its difficult to have this sort of thing considering the number
> of
> functionality already build in ofbiz.
>
> or are you using REST but not following the each url represents an
> object.
>
>
> Thanks,
> Abdullah
>
> On Mon, Feb 1, 2010 at 9:23 PM, Christopher Snow <
> sno...@snowconsulting.co.uk> wrote:
>
>
>
>
>
>> Sorry - just seen this.
>> The approach we currently use is having a dedicated web app in ofbiz
>> which
>> is used to expose ofbiz services using REST (the organisation favors
>> REST) .
>>  We are using the jersey rest libraries.
>>
>> I believe our flex guy is using HTTPService to communicate with rest.
>>
>> Cheers,
>>
>> chris
>>
>>
>> Abdullah Shaikh wrote:
>>
>>
>>
>>
>>
>>> Hi Chris,
>>>
>>> I don't want to use xml-rpc but instead would like to use Flex
>>> HTTPService,
>>> I guess xml-rpc would work with HTTPService.
>>>
>>> Basic idea is to create a xml over http communication between ofbiz &
>>> any
>>> other RIA, so that we can make ofbiz communicated with flex, gwt etc.
>>>
>>> I will hav

Re: xml engine / handler

2010-02-01 Thread Zhang Shiqian
1. Apply the service-wsdl.patch to your OFBIZ copy.
2. Export your service by add "export="true" in your service definition
file(services.xml), for example


http://ns.adobe.com/mxml/2009";
   xmlns:s="library://ns.adobe.com/flex/spark"
   xmlns:mx="library://ns.adobe.com/flex/halo"
   creationComplete="initApp()">

http://localhost:8080/webtools/control/SOAPService/getReverseAuctionPrice?WSDL
"
  useProxy="false">


{period}
{runMode}
{itemId}
{participants}
{newestBidTime}





flashReverseAuctionData and showError are the callback method. period
and runMode are the parameters which bind to properties of the class.

[Bindable]
private var itemId:String;
[Bindable]
private var participants:String;
...


4. Create the callback method called by Flex webservice component.

private function showError(event:FaultEvent):void {

Alert.show(event.fault.faultString);
}
5. Call the service

try {

serviceId.getReverseAuctionPrice();
} catch(ex:Error) {
Alert.show(ex.message);
}
6. Manipulate the result

private function flashReverseAuctionData(event:ResultEvent):void {

var bidsData = JSON.decode(event.result.toString());
if(bidsDataStore==null ){
bidsDataStore= bidsData;
}else{
 //TODO
}
}

Using as3corelib to deal with JSON format data





On Tue, Feb 2, 2010 at 1:05 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:

> Hi Zhang,
>
> Would you be happy to provide some documentation on how to do this?
>
> Many thanks,
>
> Chris
>
>
> Zhang Shiqian wrote:
>
>> Ofbiz services can be exported as standard web services, you can use Flex
>> to
>> call the web services. We have developed some Flex components used in our
>> ofbiz applications run in this model, and introduced as3corelib to deal
>> with
>> JSON format data.
>>
>> On Tue, Feb 2, 2010 at 12:42 AM, Christopher Snow <
>> sno...@snowconsulting.co.uk> wrote:
>>
>>
>>
>>> We are not automatically exporting objects with REST.
>>>
>>> We are exporting some services with REST.  Each one has to be manually
>>> coded.
>>>
>>> It would be nice to develop a solution to automatically export objects
>>> (entities), perhaps this would be relatively trivial using the new
>>> "entity-auto" service (i.e. CRuD service)?
>>>
>>>
>>>
>>>
>>> Abdullah Shaikh wrote:
>>>
>>>
>>>
 Yes, thats good to have a separate component to handle xml over http,
 REST
 in your case.

 But I am not getting how are forming the url's, because in REST, urls
 represents a objects.

 For example :

 http://ofbiz/partymgr/party/1234 - will represent a party whose id is
 1234

 http://ofbiz/partymgr/party/1234/addrress/5678 - will represent the
 address
 whose id is 5678 of party 1234

 I guess its difficult to have this sort of thing considering the number
 of
 functionality already build in ofbiz.

 or are you using REST but not following the each url represents an
 object.


 Thanks,
 Abdullah

 On Mon, Feb 1, 2010 at 9:23 PM, Christopher Snow <
 sno...@snowconsulting.co.uk> wrote:





> Sorry - just seen this.
> The approach we currently use is having a dedicated web app in ofbiz
> which
> is used to expose ofbiz services using REST (the organisation favors
> REST) .
>  We are using the jersey rest libraries.
>
> I believe our flex guy is using HTTPService to communicate with rest.
>
> Cheers,
>
> chris
>
>
> Abdullah Shaikh wrote:
>
>
>
>
>
>> Hi Chris,
>>
>> I don't want to use xml-rpc but instead would like to use Flex
>> HTTPService,
>> I guess xml-rpc would work with HTTPService.
>>
>> Basic idea is to create a xml over http communication between ofbiz &
>> any
>> other RIA, so that we can make ofbiz communicated with flex, gwt etc.
>>
>> I will have a look at the link provided.
>>
>> Thanks,
>> Abdullah
>>
>> On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
>> sno...@snowconsulting.co.uk> wrote:
>>
>>
>>
>>
>>
>>
>>
>>> Hi Abdullah,
>>>
>>> On my current project, we initially used xml-rpc using a flex xmlrpc
>>> library sent to me by Andrew Zeneski.
>>>
>>> We had tried using the new ofbiz soap implementation, but it didn't
>>> play
>>> nicely with flex.
>>>
>>> Have a look at XMLRPC in the faq:
>>>
>>>
>>>
>>> http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
>>>

Re: xml engine / handler

2010-02-01 Thread Abdullah Shaikh
OK, you mean, ofbiz services are exposed and consumed by Flex, but that is
soap over http right ?

Where does the JSON format data comes into picture ? or how the services
outputs JSON data ?

or am I missing something ?

- Abdullah

On Tue, Feb 2, 2010 at 7:27 AM, Zhang Shiqian
wrote:

> Ofbiz services can be exported as standard web services, you can use Flex
> to
> call the web services. We have developed some Flex components used in our
> ofbiz applications run in this model, and introduced as3corelib to deal
> with
> JSON format data.
>
> On Tue, Feb 2, 2010 at 12:42 AM, Christopher Snow <
> sno...@snowconsulting.co.uk> wrote:
>
> > We are not automatically exporting objects with REST.
> >
> > We are exporting some services with REST.  Each one has to be manually
> > coded.
> >
> > It would be nice to develop a solution to automatically export objects
> > (entities), perhaps this would be relatively trivial using the new
> > "entity-auto" service (i.e. CRuD service)?
> >
> >
> >
> >
> > Abdullah Shaikh wrote:
> >
> >> Yes, thats good to have a separate component to handle xml over http,
> REST
> >> in your case.
> >>
> >> But I am not getting how are forming the url's, because in REST, urls
> >> represents a objects.
> >>
> >> For example :
> >>
> >> http://ofbiz/partymgr/party/1234 - will represent a party whose id is
> >> 1234
> >>
> >> http://ofbiz/partymgr/party/1234/addrress/5678 - will represent the
> >> address
> >> whose id is 5678 of party 1234
> >>
> >> I guess its difficult to have this sort of thing considering the number
> of
> >> functionality already build in ofbiz.
> >>
> >> or are you using REST but not following the each url represents an
> object.
> >>
> >>
> >> Thanks,
> >> Abdullah
> >>
> >> On Mon, Feb 1, 2010 at 9:23 PM, Christopher Snow <
> >> sno...@snowconsulting.co.uk> wrote:
> >>
> >>
> >>
> >>> Sorry - just seen this.
> >>> The approach we currently use is having a dedicated web app in ofbiz
> >>> which
> >>> is used to expose ofbiz services using REST (the organisation favors
> >>> REST) .
> >>>  We are using the jersey rest libraries.
> >>>
> >>> I believe our flex guy is using HTTPService to communicate with rest.
> >>>
> >>> Cheers,
> >>>
> >>> chris
> >>>
> >>>
> >>> Abdullah Shaikh wrote:
> >>>
> >>>
> >>>
>  Hi Chris,
> 
>  I don't want to use xml-rpc but instead would like to use Flex
>  HTTPService,
>  I guess xml-rpc would work with HTTPService.
> 
>  Basic idea is to create a xml over http communication between ofbiz &
>  any
>  other RIA, so that we can make ofbiz communicated with flex, gwt etc.
> 
>  I will have a look at the link provided.
> 
>  Thanks,
>  Abdullah
> 
>  On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
>  sno...@snowconsulting.co.uk> wrote:
> 
> 
> 
> 
> 
> > Hi Abdullah,
> >
> > On my current project, we initially used xml-rpc using a flex xmlrpc
> > library sent to me by Andrew Zeneski.
> >
> > We had tried using the new ofbiz soap implementation, but it didn't
> > play
> > nicely with flex.
> >
> > Have a look at XMLRPC in the faq:
> >
> >
> >
> http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
> >
> > If you want a more optimised communication between flex and ofbiz,
> you
> > can
> > try BlazeDS:
> >
> >
> >
> >
> >
> http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized
> >
> > Cheers,
> >
> > Chris
> >
> >
> >
> >
> >
> > Abdullah Shaikh wrote:
> >
> >
> >
> >
> >
> >> Hi All,
> >>
> >> I want to develop a flex application which will interact with ofbiz
> >> using
> >> xml.
> >>
> >> I just had a cursory view of xmlrpcclient & xmlserializer, has
> anybody
> >> done
> >> this ? what will be the best way to have ofbiz output xml ?
> >>
> >> I have seen that GenericValue can be easily converted to xml form.
> >>
> >> The request can be in xml form or can be a normal http request, but
> >> the
> >> response from ofbiz should be in xml form, for example something
> like
> >> this,
> >>
> >> 
> >>  - all the required fields
> >> 
> >> 
> >>
> >> 
> >>  - all the required fields
> >> 
> >>
> >> This way we can have a flex application communicate with ofbiz using
> >> xml
> >> over http, I think flex don't understand json, so we need to go the
> >> xml
> >> way
> >> and also the benefits of xml is that with this approach ofbiz can
> >> interact
> >> with any kind of RIA technology.
> >>
> >>
> >> Thanks,
> >> Abdullah
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >
> >
> 
> 
> 
> >>>
> >>>
> >>
> >>
> >>
> >
> >
>
>
> --
> --
> Regards,
>

Re: Split shipment feature is gone on current 9.04 checkout screen(s)

2010-02-01 Thread Rishi Solanki
Ruth,
The multiform checkout was implemented as per covering all the possible
functionality which may be on any site, then quick checkout is encrypt its
some of the functionality and finally the one page is the most encrypted
demo to do checkout in which many functionality are not covered
intentionally. From your email it seems you are looking for the split
shipment in One page checkout which is not available at all there. If you
want that functionality there then yes you should create a Jira for that but
as it is a new feature then it won't be go into release 9.04 it will be new
implementation for trunk only.

Rishi Solanki
Enterprise Software Developer
HotWax Media Pvt. Ltd.


On Tue, Feb 2, 2010 at 6:41 AM, Ruth Hoffman  wrote:

> The subject says it all...I'll submit a JIRA...if it really is missing.
>
> FYI - this was never on the "Quick Checkout" form and only available on the
> multi-form checkout. Now that the multiple form checkout is gone (replaced
> by another single form checkout called "One Page Checkout") so is this
> feature. Or am I missing something?
>
> Regards,
> Ruth
>


Re: xml engine / handler

2010-02-01 Thread Christopher Snow

Hi Zhang,

Would you be happy to provide some documentation on how to do this?

Many thanks,

Chris

Zhang Shiqian wrote:

Ofbiz services can be exported as standard web services, you can use Flex to
call the web services. We have developed some Flex components used in our
ofbiz applications run in this model, and introduced as3corelib to deal with
JSON format data.

On Tue, Feb 2, 2010 at 12:42 AM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:

  

We are not automatically exporting objects with REST.

We are exporting some services with REST.  Each one has to be manually
coded.

It would be nice to develop a solution to automatically export objects
(entities), perhaps this would be relatively trivial using the new
"entity-auto" service (i.e. CRuD service)?




Abdullah Shaikh wrote:



Yes, thats good to have a separate component to handle xml over http, REST
in your case.

But I am not getting how are forming the url's, because in REST, urls
represents a objects.

For example :

http://ofbiz/partymgr/party/1234 - will represent a party whose id is
1234

http://ofbiz/partymgr/party/1234/addrress/5678 - will represent the
address
whose id is 5678 of party 1234

I guess its difficult to have this sort of thing considering the number of
functionality already build in ofbiz.

or are you using REST but not following the each url represents an object.


Thanks,
Abdullah

On Mon, Feb 1, 2010 at 9:23 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:



  

Sorry - just seen this.
The approach we currently use is having a dedicated web app in ofbiz
which
is used to expose ofbiz services using REST (the organisation favors
REST) .
 We are using the jersey rest libraries.

I believe our flex guy is using HTTPService to communicate with rest.

Cheers,

chris


Abdullah Shaikh wrote:





Hi Chris,

I don't want to use xml-rpc but instead would like to use Flex
HTTPService,
I guess xml-rpc would work with HTTPService.

Basic idea is to create a xml over http communication between ofbiz &
any
other RIA, so that we can make ofbiz communicated with flex, gwt etc.

I will have a look at the link provided.

Thanks,
Abdullah

On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:





  

Hi Abdullah,

On my current project, we initially used xml-rpc using a flex xmlrpc
library sent to me by Andrew Zeneski.

We had tried using the new ofbiz soap implementation, but it didn't
play
nicely with flex.

Have a look at XMLRPC in the faq:


http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo

If you want a more optimised communication between flex and ofbiz, you
can
try BlazeDS:




http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized

Cheers,

Chris





Abdullah Shaikh wrote:







Hi All,

I want to develop a flex application which will interact with ofbiz
using
xml.

I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
done
this ? what will be the best way to have ofbiz output xml ?

I have seen that GenericValue can be easily converted to xml form.

The request can be in xml form or can be a normal http request, but
the
response from ofbiz should be in xml form, for example something like
this,


 - all the required fields




 - all the required fields


This way we can have a flex application communicate with ofbiz using
xml
over http, I think flex don't understand json, so we need to go the
xml
way
and also the benefits of xml is that with this approach ofbiz can
interact
with any kind of RIA technology.


Thanks,
Abdullah







  



  



  




  




Re: xml engine / handler

2010-02-01 Thread Zhang Shiqian
Ofbiz services can be exported as standard web services, you can use Flex to
call the web services. We have developed some Flex components used in our
ofbiz applications run in this model, and introduced as3corelib to deal with
JSON format data.

On Tue, Feb 2, 2010 at 12:42 AM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:

> We are not automatically exporting objects with REST.
>
> We are exporting some services with REST.  Each one has to be manually
> coded.
>
> It would be nice to develop a solution to automatically export objects
> (entities), perhaps this would be relatively trivial using the new
> "entity-auto" service (i.e. CRuD service)?
>
>
>
>
> Abdullah Shaikh wrote:
>
>> Yes, thats good to have a separate component to handle xml over http, REST
>> in your case.
>>
>> But I am not getting how are forming the url's, because in REST, urls
>> represents a objects.
>>
>> For example :
>>
>> http://ofbiz/partymgr/party/1234 - will represent a party whose id is
>> 1234
>>
>> http://ofbiz/partymgr/party/1234/addrress/5678 - will represent the
>> address
>> whose id is 5678 of party 1234
>>
>> I guess its difficult to have this sort of thing considering the number of
>> functionality already build in ofbiz.
>>
>> or are you using REST but not following the each url represents an object.
>>
>>
>> Thanks,
>> Abdullah
>>
>> On Mon, Feb 1, 2010 at 9:23 PM, Christopher Snow <
>> sno...@snowconsulting.co.uk> wrote:
>>
>>
>>
>>> Sorry - just seen this.
>>> The approach we currently use is having a dedicated web app in ofbiz
>>> which
>>> is used to expose ofbiz services using REST (the organisation favors
>>> REST) .
>>>  We are using the jersey rest libraries.
>>>
>>> I believe our flex guy is using HTTPService to communicate with rest.
>>>
>>> Cheers,
>>>
>>> chris
>>>
>>>
>>> Abdullah Shaikh wrote:
>>>
>>>
>>>
 Hi Chris,

 I don't want to use xml-rpc but instead would like to use Flex
 HTTPService,
 I guess xml-rpc would work with HTTPService.

 Basic idea is to create a xml over http communication between ofbiz &
 any
 other RIA, so that we can make ofbiz communicated with flex, gwt etc.

 I will have a look at the link provided.

 Thanks,
 Abdullah

 On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
 sno...@snowconsulting.co.uk> wrote:





> Hi Abdullah,
>
> On my current project, we initially used xml-rpc using a flex xmlrpc
> library sent to me by Andrew Zeneski.
>
> We had tried using the new ofbiz soap implementation, but it didn't
> play
> nicely with flex.
>
> Have a look at XMLRPC in the faq:
>
>
> http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
>
> If you want a more optimised communication between flex and ofbiz, you
> can
> try BlazeDS:
>
>
>
>
> http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized
>
> Cheers,
>
> Chris
>
>
>
>
>
> Abdullah Shaikh wrote:
>
>
>
>
>
>> Hi All,
>>
>> I want to develop a flex application which will interact with ofbiz
>> using
>> xml.
>>
>> I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
>> done
>> this ? what will be the best way to have ofbiz output xml ?
>>
>> I have seen that GenericValue can be easily converted to xml form.
>>
>> The request can be in xml form or can be a normal http request, but
>> the
>> response from ofbiz should be in xml form, for example something like
>> this,
>>
>> 
>>  - all the required fields
>> 
>> 
>>
>> 
>>  - all the required fields
>> 
>>
>> This way we can have a flex application communicate with ofbiz using
>> xml
>> over http, I think flex don't understand json, so we need to go the
>> xml
>> way
>> and also the benefits of xml is that with this approach ofbiz can
>> interact
>> with any kind of RIA technology.
>>
>>
>> Thanks,
>> Abdullah
>>
>>
>>
>>
>>
>>
>>
>
>



>>>
>>>
>>
>>
>>
>
>


-- 
-- 
Regards,

Zhang Shiqian

Wizitsoft Information Technology Ltd.
www.wizitsoft.com | Phone: (8610)6267 0653 ext 604 | Mobile: (86)13264158885


Split shipment feature is gone on current 9.04 checkout screen(s)

2010-02-01 Thread Ruth Hoffman

The subject says it all...I'll submit a JIRA...if it really is missing.

FYI - this was never on the "Quick Checkout" form and only available on 
the multi-form checkout. Now that the multiple form checkout is gone 
(replaced by another single form checkout called "One Page Checkout") so 
is this feature. Or am I missing something?


Regards,
Ruth


Re: Best method for work flow type problem?

2010-02-01 Thread David E Jones

You'd have to write code to automate task changes. There are actually a few 
parts of OFBiz that already do this, ie that create or update WorkEffort 
records.

As a generality the Work Effort Manager is more general, it is the generic UI 
for the WorkEffort and related entities. The Project Manager is simply a more 
specific app built on top of what is in the workeffort component.

-David


On Feb 1, 2010, at 1:41 AM, Sam Hamilton wrote:

> Sorry badly phrased - lets try that again.
> 
> Can the Work Effort or Project Manager know when another part of the
> system is updated and move the work along to the next person, e.g. if
> someone uploads a photo for a SKU it should then create a task for the
> person to write the copy and close the task for uploading a photo for
> that SKU.
> 
> I get the feeling just from the names that Work Effort is probably more
> like a pipeline - regularly getting products out the factory door where
> as Project Manager is more for building the factory?
> 
> Cheers
> Sam
> 
> 
> 
> 
> On 01/02/2010 15:18, David E Jones wrote:
>> 
>> If I understand your question right, then yes. In other words, the Project 
>> Manager is built on top of other components/applications like the workeffort 
>> component, and most of the data from Project Manager screens goes to 
>> workeffort entities.
>> 
>> -David
>> 
>> 
>> On Feb 1, 2010, at 1:15 AM, Sam Hamilton wrote:
>> 
>>> Thanks David - and please excuse the ignorance - booting up a copy of
>>> OFBiz now to start exploring; the project manager can manage inputting
>>> of data into other parts of ofbiz?
>>> 
>>> Cheers
>>> Sam
>>> 
>>> 
>>> On 01/02/2010 15:03, David E Jones wrote:
 
 Most work management stuff in OFBiz is in the Work Effort and Project 
 Manager applications (basic stuff in the workeffort component).
 
 While just a guess, I think that'll be more useful than a "workflow 
 engine" type of thing. The easiest way to use it is probably to setup a 
 template project for each process you want to track, and then clone it 
 each time you actually want to track doing that thing.
 
 -David
 
 
 On Feb 1, 2010, at 12:58 AM, Sam Hamilton wrote:
 
> Hey List,
> 
> I was wondering what your opinions are for the best way to implement a
> work flow type problem?
> 
> Each week we source new products and these products need copy writing,
> photos, translation and then listing onto our various country websites -
> its like a big pipeline that we monitor for blockages.
> 
> Right now we do this all in sharepoint and I am itching to move this
> into OFBiz but what would be the best practice for this now that Shark
> has be deprecated (
> http://cwiki.apache.org/confluence/display/OFBIZ/Open+Source+Projects+and+Standards
> )
> 
> Cheers
> Sam
 
>>> 
>> 
> 



Re: Missing Download

2010-02-01 Thread Tim Ruppert
This will be fixed sometime tonite - please take a look here to get what you're 
looking for:

http://ci.apache.org/projects/ofbiz/snapshots/

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

o:801.649.6594
f:801.649.6595

On Feb 1, 2010, at 3:17 PM, Craig Gilbert wrote:

> Hi Userlist,
> 
> I was looking for an active download for the OFBiz software. The main site 
> doesn't appear to be working anymore. Any hints?
> 
> Regards
> 
> Craig Gilbert



smime.p7s
Description: S/MIME cryptographic signature


Missing Download

2010-02-01 Thread Craig Gilbert

Hi Userlist,

I was looking for an active download for the OFBiz software. The main 
site doesn't appear to be working anymore. Any hints?


Regards

Craig Gilbert


Re: need a function

2010-02-01 Thread Patrick
Thanks you are right.

On Mon, Feb 1, 2010 at 3:51 PM, Adrian Crum  wrote:
> Why are you using the userLoginId as a partyId?
>
> By the way, there is no sleep function. There shouldn't be any need for one.
> The issue you are having is not related to timing.
>
> -Adrian
>
> Patrick wrote:
>>
>> (INSERT on table 'PARTY_ROLE' caused a violation of foreign key
>> constraint 'PARTY_RLE_PARTY' for key (person48).
>>
>> Error: ERROR: Could not complete the Create Party Role
>>
>> [file:/opt/ofbiz-release9.04/applications/party/script/org/ofbiz/party/party/PartyServices.xml#createPartyRole]
>> process [problem creating the newEntity value: Error while inserting:
>> [GenericEntity:PartyRole][createdStamp,2010-02-01
>> 15:40:58.095(java.sql.Timestamp)][createdTxStamp,2010-02-01
>> 15:40:57.541(java.sql.Timestamp)][lastUpdatedStamp,2010-02-01
>> 15:40:58.095(java.sql.Timestamp)][lastUpdatedTxStamp,2010-02-01
>>
>> 15:40:57.541(java.sql.Timestamp)][partyId,person48(java.lang.String)][roleTypeId,VENDOR(java.lang.String)]
>> (SQL Exception while executing the following:INSERT INTO
>> OFBIZ.PARTY_ROLE (PARTY_ID, ROLE_TYPE_ID, LAST_UPDATED_STAMP,
>> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?,
>> ?, ?, ?, ?) (INSERT on table 'PARTY_ROLE' caused a violation of
>> foreign key constraint 'PARTY_RLE_PARTY' for key (person48). The
>> statement has been rolled back.))]   calling service createPartyRole
>> in createUserLoginAndCategory
>>
>> This is the calling code.  It happens after I create the user.
>>
>> 
>> 
>> 
>> > service-name="createPartyRole" map="partyRole"/>
>> 
>>
>>
>>
>>
>>
>>
>>
>> On Mon, Feb 1, 2010 at 3:35 PM, Cimballi 
>> wrote:
>>>
>>> The createPartyRole service doesn't require a Person, only a Party and
>>> a RoleType.
>>> Are you sure you understand well the error message ? Maybe you can copy
>>> it here.
>>>
>>> Cimballi
>>>
>>>
>>> On Mon, Feb 1, 2010 at 4:14 PM, Patrick 
>>> wrote:

 In a simple-method, I create a user and give that user a "vendor" role
 with the createUserLogin and createPartyRole services.

 I can 1) create a user  and 2) give a user the role of "vendor".  The
 problem is I can't  create a user and give THAT user a vendor role in
 a single method.

 When I try, createPartyRole complains that the target "Person" doesn't
 exist, because it has a foreign key constraint.  So I think the
 createUserLogin hasn't completed.  So I need some kind of 
 until the createUserLogin is done.  What do you suggest?

 Thanks for all your help so far.  Patrick

>>
>


Re: need a function

2010-02-01 Thread Adrian Crum

Why are you using the userLoginId as a partyId?

By the way, there is no sleep function. There shouldn't be any need for 
one. The issue you are having is not related to timing.


-Adrian

Patrick wrote:

(INSERT on table 'PARTY_ROLE' caused a violation of foreign key
constraint 'PARTY_RLE_PARTY' for key (person48).

Error: ERROR: Could not complete the Create Party Role
[file:/opt/ofbiz-release9.04/applications/party/script/org/ofbiz/party/party/PartyServices.xml#createPartyRole]
process [problem creating the newEntity value: Error while inserting:
[GenericEntity:PartyRole][createdStamp,2010-02-01
15:40:58.095(java.sql.Timestamp)][createdTxStamp,2010-02-01
15:40:57.541(java.sql.Timestamp)][lastUpdatedStamp,2010-02-01
15:40:58.095(java.sql.Timestamp)][lastUpdatedTxStamp,2010-02-01
15:40:57.541(java.sql.Timestamp)][partyId,person48(java.lang.String)][roleTypeId,VENDOR(java.lang.String)]
(SQL Exception while executing the following:INSERT INTO
OFBIZ.PARTY_ROLE (PARTY_ID, ROLE_TYPE_ID, LAST_UPDATED_STAMP,
LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?,
?, ?, ?, ?) (INSERT on table 'PARTY_ROLE' caused a violation of
foreign key constraint 'PARTY_RLE_PARTY' for key (person48). The
statement has been rolled back.))]   calling service createPartyRole
in createUserLoginAndCategory

This is the calling code.  It happens after I create the user.













On Mon, Feb 1, 2010 at 3:35 PM, Cimballi  wrote:

The createPartyRole service doesn't require a Person, only a Party and
a RoleType.
Are you sure you understand well the error message ? Maybe you can copy it here.

Cimballi


On Mon, Feb 1, 2010 at 4:14 PM, Patrick  wrote:

In a simple-method, I create a user and give that user a "vendor" role
with the createUserLogin and createPartyRole services.

I can 1) create a user  and 2) give a user the role of "vendor".  The
problem is I can't  create a user and give THAT user a vendor role in
a single method.

When I try, createPartyRole complains that the target "Person" doesn't
exist, because it has a foreign key constraint.  So I think the
createUserLogin hasn't completed.  So I need some kind of 
until the createUserLogin is done.  What do you suggest?

Thanks for all your help so far.  Patrick





Re: need a function

2010-02-01 Thread Patrick
(INSERT on table 'PARTY_ROLE' caused a violation of foreign key
constraint 'PARTY_RLE_PARTY' for key (person48).

Error: ERROR: Could not complete the Create Party Role
[file:/opt/ofbiz-release9.04/applications/party/script/org/ofbiz/party/party/PartyServices.xml#createPartyRole]
process [problem creating the newEntity value: Error while inserting:
[GenericEntity:PartyRole][createdStamp,2010-02-01
15:40:58.095(java.sql.Timestamp)][createdTxStamp,2010-02-01
15:40:57.541(java.sql.Timestamp)][lastUpdatedStamp,2010-02-01
15:40:58.095(java.sql.Timestamp)][lastUpdatedTxStamp,2010-02-01
15:40:57.541(java.sql.Timestamp)][partyId,person48(java.lang.String)][roleTypeId,VENDOR(java.lang.String)]
(SQL Exception while executing the following:INSERT INTO
OFBIZ.PARTY_ROLE (PARTY_ID, ROLE_TYPE_ID, LAST_UPDATED_STAMP,
LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?,
?, ?, ?, ?) (INSERT on table 'PARTY_ROLE' caused a violation of
foreign key constraint 'PARTY_RLE_PARTY' for key (person48). The
statement has been rolled back.))]   calling service createPartyRole
in createUserLoginAndCategory

This is the calling code.  It happens after I create the user.













On Mon, Feb 1, 2010 at 3:35 PM, Cimballi  wrote:
> The createPartyRole service doesn't require a Person, only a Party and
> a RoleType.
> Are you sure you understand well the error message ? Maybe you can copy it 
> here.
>
> Cimballi
>
>
> On Mon, Feb 1, 2010 at 4:14 PM, Patrick  
> wrote:
>> In a simple-method, I create a user and give that user a "vendor" role
>> with the createUserLogin and createPartyRole services.
>>
>> I can 1) create a user  and 2) give a user the role of "vendor".  The
>> problem is I can't  create a user and give THAT user a vendor role in
>> a single method.
>>
>> When I try, createPartyRole complains that the target "Person" doesn't
>> exist, because it has a foreign key constraint.  So I think the
>> createUserLogin hasn't completed.  So I need some kind of 
>> until the createUserLogin is done.  What do you suggest?
>>
>> Thanks for all your help so far.  Patrick
>>
>


Re: need a function

2010-02-01 Thread Cimballi
The createPartyRole service doesn't require a Person, only a Party and
a RoleType.
Are you sure you understand well the error message ? Maybe you can copy it here.

Cimballi


On Mon, Feb 1, 2010 at 4:14 PM, Patrick  wrote:
> In a simple-method, I create a user and give that user a "vendor" role
> with the createUserLogin and createPartyRole services.
>
> I can 1) create a user  and 2) give a user the role of "vendor".  The
> problem is I can't  create a user and give THAT user a vendor role in
> a single method.
>
> When I try, createPartyRole complains that the target "Person" doesn't
> exist, because it has a foreign key constraint.  So I think the
> createUserLogin hasn't completed.  So I need some kind of 
> until the createUserLogin is done.  What do you suggest?
>
> Thanks for all your help so far.  Patrick
>


need a function

2010-02-01 Thread Patrick
In a simple-method, I create a user and give that user a "vendor" role
with the createUserLogin and createPartyRole services.

I can 1) create a user  and 2) give a user the role of "vendor".  The
problem is I can't  create a user and give THAT user a vendor role in
a single method.

When I try, createPartyRole complains that the target "Person" doesn't
exist, because it has a foreign key constraint.  So I think the
createUserLogin hasn't completed.  So I need some kind of 
until the createUserLogin is done.  What do you suggest?

Thanks for all your help so far.  Patrick


Re: how to pass data from one simple-method to another simple-method?

2010-02-01 Thread S K Pradeep kumar
result-to-field you can use..


With regards,
S K Pradeep kumar,



On Tue, Feb 2, 2010 at 12:50 AM, Adrian Crum  wrote:

> The called simple method will inherit the context of the calling simple
> method. Any variables declared in the first will be available to the second.
>
> -Adrian
>
>
> Patrick wrote:
>
>> I am trying to call "updateSecurityGroup" simple-method from another
>> method.  How do I tell it I want add a security setting for a
>> particular user.  If it was a service I would use 
>> but since its a method I'm confused.  Thanks. Patrick
>>
>>


Re: Thread list - more info

2010-02-01 Thread Steve
What I am trying to debug is the fact that the thread list accumulates  
(in the service engine threads section) async services that are  
running, and, the threads never go back to status sleeping.


The thread list lists the service engine threads that are running on  
top. Those jobs are async services in this case like  
sendOrderConfirmation


If you look in the job list, you can see the service that is listed in  
the thread list, and the status is running, just like the thread list  
shows.


So, the issue is async services are never marked as SERVICE_FINISHED,  
they stay at SERVICE_RUNNING


The log below shows it completed, and I did receive the email.

2010-02-01 11:01:12,762 (TP-Processor26) [ ServiceDispatcher.java: 
599:INFO ] [[ASync service started...- total:0.0,since last(Begin): 
0.0]] - 'neobits / sendOrderConfirmation'
2010-02-01 11:01:12,767 (TP-Processor26) [ GenericAsyncEngine.java: 
137:INFO ] Persisted job queued : 1265050872766
2010-02-01 11:01:12,768 (TP-Processor26) [ ServiceDispatcher.java: 
696:INFO ] [[ASync service finished...- total:0.006,since last(ASync  
service sta...):0.006]] - 'neobits / sendOrderConfirmation'
2010-02-01 11:01:31,174 (default-invoker-Thread-980027)  
[ JobInvoker.java:231:INFO ] Invoker [default-invoker-Thread-980027]  
received job [1265050872766] from poller  
[org.ofbiz.service.job.jobpol...@6aadae91]
2010-02-01 11:01:31,176 (default-invoker-Thread-980027)  
[PersistedServiceJob.java:176:INFO ]  
org.ofbiz.service.job.persistedservice...@4ed9bcaa[72203] -- Next  
runtime: Wed Dec 31 15:59:59 PST 1969
2010-02-01 11:01:31,195 (default-invoker-Thread-980027)  
[ WicketURLEncoder.java:203:WARN ] No current Application found -  
defaulting encoding to UTF-8
2010-02-01 11:01:31,195 (default-invoker-Thread-980027)  
[ WicketURLEncoder.java:203:WARN ] No current Application found -  
defaulting encoding to UTF-8
2010-02-01 11:01:31,239 (default-invoker-Thread-980027)  
[ServiceEcaCondition.java:155:WARN ] From Field (communicationEventId)  
is not found in context for sendMail, defaulting to null.
2010-02-01 11:01:31,240 (default-invoker-Thread-980027)  
[ ServiceEcaRule.java:133:INFO ] For Service ECA [sendMail] on  
[commit] got false for condition: [partyId][equals][1][true][String]
2010-02-01 11:01:31,241 (default-invoker-Thread-980027)  
[ ServiceDispatcher.java:578:INFO ] Sync service [JobDispatcher/ 
sendMailFromScreen] finished in [57] milliseconds
2010-02-01 11:01:31,241 (default-invoker-Thread-980027)  
[ ServiceEcaRule.java:150:INFO ] Running Service ECA Service:  
createOrderNotificationLog, triggered by rule on Service:  
sendOrderConfirmation
2010-02-01 11:01:31,244 (default-invoker-Thread-980027)  
[ ServiceDispatcher.java:578:INFO ] Sync service [JobDispatcher/ 
sendOrderConfirmation] finished in [64] milliseconds


From the thread list screen:

980536 default-invoker-Thread-980027
Running
1265050872766
sendOrderConfirmation
0
14145074
2046927

The time in MS keeps rising.

From the job list screen for the same async service:

Job
ID
Pool
Run Time
Start Date/Time
Service
Status
End Date/Time
Use seperate logfile
Logfile

1265050872766
72203
pool
2010-02-01 11:01:12.000
2010-02-01 11:01:31.000
sendOrderConfirmation
SERVICE_RUNNING

N

I can't figure out why on the new machine, they are never marked as  
SERVICE_FINISHED. Makes no sense to me


Re: how to pass data from one simple-method to another simple-method?

2010-02-01 Thread Adrian Crum
The called simple method will inherit the context of the calling simple 
method. Any variables declared in the first will be available to the second.


-Adrian

Patrick wrote:

I am trying to call "updateSecurityGroup" simple-method from another
method.  How do I tell it I want add a security setting for a
particular user.  If it was a service I would use 
but since its a method I'm confused.  Thanks. Patrick



Re: Thread list - more info

2010-02-01 Thread Adrian Crum
Threads and jobs are not the same thing. What is it that you are trying 
to debug?


-Adrian

Steve wrote:

So, here are the relevant logging entries:

2010-02-01 11:01:12,762 (TP-Processor26) [ 
ServiceDispatcher.java:599:INFO ] [[ASync service started...- 
total:0.0,since last(Begin):0.0]] - 'store / sendOrderConfirmation'
2010-02-01 11:01:12,767 (TP-Processor26) [ 
GenericAsyncEngine.java:137:INFO ] Persisted job queued : 1265050872766
2010-02-01 11:01:12,768 (TP-Processor26) [ 
ServiceDispatcher.java:696:INFO ] [[ASync service finished...- 
total:0.006,since last(ASync service sta...):0.006]] - 'store / 
sendOrderConfirmation'
2010-02-01 11:01:31,174 (default-invoker-Thread-980027) [ 
JobInvoker.java:231:INFO ] Invoker [default-invoker-Thread-980027] 
received job [1265050872766] from poller 
[org.ofbiz.service.job.jobpol...@6aadae91]
2010-02-01 11:01:31,176 (default-invoker-Thread-980027) 
[PersistedServiceJob.java:176:INFO ] 
org.ofbiz.service.job.persistedservice...@4ed9bcaa[72203] -- Next 
runtime: Wed Dec 31 15:59:59 PST 1969
2010-02-01 11:01:31,195 (default-invoker-Thread-980027) [ 
WicketURLEncoder.java:203:WARN ] No current Application found - 
defaulting encoding to UTF-8
2010-02-01 11:01:31,195 (default-invoker-Thread-980027) [ 
WicketURLEncoder.java:203:WARN ] No current Application found - 
defaulting encoding to UTF-8
2010-02-01 11:01:31,239 (default-invoker-Thread-980027) 
[ServiceEcaCondition.java:155:WARN ] From Field (communicationEventId) 
is not found in context for sendMail, defaulting to null.
2010-02-01 11:01:31,240 (default-invoker-Thread-980027) [ 
ServiceEcaRule.java:133:INFO ] For Service ECA [sendMail] on [commit] 
got false for condition: [partyId][equals][1][true][String]
2010-02-01 11:01:31,241 (default-invoker-Thread-980027) [ 
ServiceDispatcher.java:578:INFO ] Sync service 
[JobDispatcher/sendMailFromScreen] finished in [57] milliseconds
2010-02-01 11:01:31,241 (default-invoker-Thread-980027) [ 
ServiceEcaRule.java:150:INFO ] Running Service ECA Service: 
createOrderNotificationLog, triggered by rule on Service: 
sendOrderConfirmation
2010-02-01 11:01:31,244 (default-invoker-Thread-980027) [ 
ServiceDispatcher.java:578:INFO ] Sync service 
[JobDispatcher/sendOrderConfirmation] finished in [64] milliseconds


Note it says the service finished, yet, it is still marked as running in 
the webtools thread list. Those seem to never go away, eventually, I 
presume we will run out of available threads.


Where can I look to help debug this further? I looked back and this did 
not happen on the old machine, the jobs were always marked as finished.


Email was in fact sent, to me and I got it, so, it did run.



Thread list - more info

2010-02-01 Thread Steve

So, here are the relevant logging entries:

2010-02-01 11:01:12,762 (TP-Processor26) [ ServiceDispatcher.java: 
599:INFO ] [[ASync service started...- total:0.0,since last(Begin): 
0.0]] - 'store / sendOrderConfirmation'
2010-02-01 11:01:12,767 (TP-Processor26) [ GenericAsyncEngine.java: 
137:INFO ] Persisted job queued : 1265050872766
2010-02-01 11:01:12,768 (TP-Processor26) [ ServiceDispatcher.java: 
696:INFO ] [[ASync service finished...- total:0.006,since last(ASync  
service sta...):0.006]] - 'store / sendOrderConfirmation'
2010-02-01 11:01:31,174 (default-invoker-Thread-980027)  
[ JobInvoker.java:231:INFO ] Invoker [default-invoker-Thread-980027]  
received job [1265050872766] from poller  
[org.ofbiz.service.job.jobpol...@6aadae91]
2010-02-01 11:01:31,176 (default-invoker-Thread-980027)  
[PersistedServiceJob.java:176:INFO ]  
org.ofbiz.service.job.persistedservice...@4ed9bcaa[72203] -- Next  
runtime: Wed Dec 31 15:59:59 PST 1969
2010-02-01 11:01:31,195 (default-invoker-Thread-980027)  
[ WicketURLEncoder.java:203:WARN ] No current Application found -  
defaulting encoding to UTF-8
2010-02-01 11:01:31,195 (default-invoker-Thread-980027)  
[ WicketURLEncoder.java:203:WARN ] No current Application found -  
defaulting encoding to UTF-8
2010-02-01 11:01:31,239 (default-invoker-Thread-980027)  
[ServiceEcaCondition.java:155:WARN ] From Field (communicationEventId)  
is not found in context for sendMail, defaulting to null.
2010-02-01 11:01:31,240 (default-invoker-Thread-980027)  
[ ServiceEcaRule.java:133:INFO ] For Service ECA [sendMail] on  
[commit] got false for condition: [partyId][equals][1][true][String]
2010-02-01 11:01:31,241 (default-invoker-Thread-980027)  
[ ServiceDispatcher.java:578:INFO ] Sync service [JobDispatcher/ 
sendMailFromScreen] finished in [57] milliseconds
2010-02-01 11:01:31,241 (default-invoker-Thread-980027)  
[ ServiceEcaRule.java:150:INFO ] Running Service ECA Service:  
createOrderNotificationLog, triggered by rule on Service:  
sendOrderConfirmation
2010-02-01 11:01:31,244 (default-invoker-Thread-980027)  
[ ServiceDispatcher.java:578:INFO ] Sync service [JobDispatcher/ 
sendOrderConfirmation] finished in [64] milliseconds


Note it says the service finished, yet, it is still marked as running  
in the webtools thread list. Those seem to never go away, eventually,  
I presume we will run out of available threads.


Where can I look to help debug this further? I looked back and this  
did not happen on the old machine, the jobs were always marked as  
finished.


Email was in fact sent, to me and I got it, so, it did run.


Re: http://ofbiz.apache.org/ Download

2010-02-01 Thread Tim Ruppert
Just wanted to make sure that I clarified this particular statement so that 
there is no confusion - Contegix and HotWax would have been happy to continue 
the infrastructure support.  

The reason for the move is that the hosting of all of this infrastructure has 
long been a hot discussion topic in the community - we had discussed having 
Contegix provide an "official" server (like they do for other Apache projects), 
but it was decided that instead we would move everything over to the actual ASF 
managed hardware instead. 

I hope that clears up any confusion - and thanks for everyone who's helping to 
make this stuff happen.

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

o:801.649.6594
f:801.649.6595

On Jan 31, 2010, at 11:15 AM, Jacques Le Roux wrote:

> Hi BJ,
> 
> As Tim explained Contegix will not support us anymore. Please use the 
> ofbiz-vm.apache.org links on this page rather
> http://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Demo+Servers
> 
> Jacques
> 



smime.p7s
Description: S/MIME cryptographic signature


Re: how to pass data from one simple-method to another simple-method?

2010-02-01 Thread S K Pradeep kumar
Hi,

See the service groups .

For example: createCreditCardAndAddress

With regards,
S K Pradeep kumar,



On Tue, Feb 2, 2010 at 12:16 AM, Patrick wrote:

> I am trying to call "updateSecurityGroup" simple-method from another
> method.  How do I tell it I want add a security setting for a
> particular user.  If it was a service I would use 
> but since its a method I'm confused.  Thanks. Patrick
>


Re: http://ofbiz.apache.org/ Download

2010-02-01 Thread Tim Ruppert
Please let me know what you would like me to do here?

Cheers,
Ruppert

On Jan 31, 2010, at 4:58 PM, Hans Bakker wrote:

> But knowing hat the apache environment isn't ready yet?
> 
> On Sun, 2010-01-31 at 15:47 -0800, Tim Ruppert wrote:
>> I'll be happy to get these redirects in place this evening - can't say  
>> I didn't tell everyone that it was coming ...  More to come tonite -  
>> we need to remove the usage of ofbiz going forward since this is all  
>> apache now.  That is what everyone wanted right.  The redirects will  
>> remain in place for a bit - but kong term this will go away since it's  
>> not official.
>> 
>> If my understanding is incorrect on any of these points let me know.
>> 
>> Cheers,
>> Ruppert
>> --
>> Tim Ruppert
>> HotWax Media
>> http://www.hotwaxmedia.com
>> 
>> o:801.649.6594
>> f:801.649.6595
>> 
>> On Jan 31, 2010, at 2:21 PM, Hans Bakker  
>>  wrote:
>> 
>>> Just got this back from infra:
>>> 
>>> Hi All,
 
 We have shut down our VM host nyx, in order to try a firmware  
 upgrade on the
 array.
 
 So Hudson-win.apache.org, ofbiz-vm.apache.org and some buildbot  
 slaves are
 all down currently. I'll get them back up as soon as possible,
 
 Thanks
>>> 
>>> so they are working on it...
>>> 
>>> Regards,
>>> Hans
>>> 
>>> 
>>> On Mon, 2010-02-01 at 04:26 +0700, Hans Bakker wrote:
 I asked infrastructure to look at the ofbiz-vm.apache.org.
 
 very strange because it was running one hour ago...
 
 Regards,
 Hans
 
 On Sun, 2010-01-31 at 09:10 -0800, BJ Freeman wrote:
> returns to main page when clicked.
> 
>>> -- 
>>> Antwebsystems.com: Quality OFBiz services for competitive rates
>>> 
> -- 
> Antwebsystems.com: Quality OFBiz services for competitive rates
> 



smime.p7s
Description: S/MIME cryptographic signature


how to pass data from one simple-method to another simple-method?

2010-02-01 Thread Patrick
I am trying to call "updateSecurityGroup" simple-method from another
method.  How do I tell it I want add a security setting for a
particular user.  If it was a service I would use 
but since its a method I'm confused.  Thanks. Patrick


Invoking a service that requires BigDecimal from GWT

2010-02-01 Thread kgambrah

Hi Everyone,
I am working on a Google Webtoolkit client that uses JSON to communicate 
with the server. However I've come to a point where I need to invoke a 
service that expects a BigDecimal as an input.


I am currently thinking of 2 approaches,
1. Create a new service to take a number and convert it to a BigDecimal
2. Create a BigDecimal on the GWT server and then invoke the ofbiz service

I was just thinking maybe someone has dealt with this issue and can 
share some insight.


Regards,
Kojo


Re: xml engine / handler

2010-02-01 Thread Christopher Snow

We are not automatically exporting objects with REST.

We are exporting some services with REST.  Each one has to be manually 
coded.


It would be nice to develop a solution to automatically export objects 
(entities), perhaps this would be relatively trivial using the new 
"entity-auto" service (i.e. CRuD service)?




Abdullah Shaikh wrote:

Yes, thats good to have a separate component to handle xml over http, REST
in your case.

But I am not getting how are forming the url's, because in REST, urls
represents a objects.

For example :

http://ofbiz/partymgr/party/1234 - will represent a party whose id is 1234

http://ofbiz/partymgr/party/1234/addrress/5678 - will represent the address
whose id is 5678 of party 1234

I guess its difficult to have this sort of thing considering the number of
functionality already build in ofbiz.

or are you using REST but not following the each url represents an object.


Thanks,
Abdullah

On Mon, Feb 1, 2010 at 9:23 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:

  

Sorry - just seen this.
The approach we currently use is having a dedicated web app in ofbiz which
is used to expose ofbiz services using REST (the organisation favors REST) .
 We are using the jersey rest libraries.

I believe our flex guy is using HTTPService to communicate with rest.

Cheers,

chris


Abdullah Shaikh wrote:



Hi Chris,

I don't want to use xml-rpc but instead would like to use Flex
HTTPService,
I guess xml-rpc would work with HTTPService.

Basic idea is to create a xml over http communication between ofbiz & any
other RIA, so that we can make ofbiz communicated with flex, gwt etc.

I will have a look at the link provided.

Thanks,
Abdullah

On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:



  

Hi Abdullah,

On my current project, we initially used xml-rpc using a flex xmlrpc
library sent to me by Andrew Zeneski.

We had tried using the new ofbiz soap implementation, but it didn't play
nicely with flex.

Have a look at XMLRPC in the faq:

http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo

If you want a more optimised communication between flex and ofbiz, you
can
try BlazeDS:



http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized

Cheers,

Chris





Abdullah Shaikh wrote:





Hi All,

I want to develop a flex application which will interact with ofbiz
using
xml.

I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
done
this ? what will be the best way to have ofbiz output xml ?

I have seen that GenericValue can be easily converted to xml form.

The request can be in xml form or can be a normal http request, but the
response from ofbiz should be in xml form, for example something like
this,


 - all the required fields




 - all the required fields


This way we can have a flex application communicate with ofbiz using xml
over http, I think flex don't understand json, so we need to go the xml
way
and also the benefits of xml is that with this approach ofbiz can
interact
with any kind of RIA technology.


Thanks,
Abdullah





  



  



  




Re: xml engine / handler

2010-02-01 Thread Abdullah Shaikh
Yes, thats good to have a separate component to handle xml over http, REST
in your case.

But I am not getting how are forming the url's, because in REST, urls
represents a objects.

For example :

http://ofbiz/partymgr/party/1234 - will represent a party whose id is 1234

http://ofbiz/partymgr/party/1234/addrress/5678 - will represent the address
whose id is 5678 of party 1234

I guess its difficult to have this sort of thing considering the number of
functionality already build in ofbiz.

or are you using REST but not following the each url represents an object.


Thanks,
Abdullah

On Mon, Feb 1, 2010 at 9:23 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:

> Sorry - just seen this.
> The approach we currently use is having a dedicated web app in ofbiz which
> is used to expose ofbiz services using REST (the organisation favors REST) .
>  We are using the jersey rest libraries.
>
> I believe our flex guy is using HTTPService to communicate with rest.
>
> Cheers,
>
> chris
>
>
> Abdullah Shaikh wrote:
>
>> Hi Chris,
>>
>> I don't want to use xml-rpc but instead would like to use Flex
>> HTTPService,
>> I guess xml-rpc would work with HTTPService.
>>
>> Basic idea is to create a xml over http communication between ofbiz & any
>> other RIA, so that we can make ofbiz communicated with flex, gwt etc.
>>
>> I will have a look at the link provided.
>>
>> Thanks,
>> Abdullah
>>
>> On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
>> sno...@snowconsulting.co.uk> wrote:
>>
>>
>>
>>> Hi Abdullah,
>>>
>>> On my current project, we initially used xml-rpc using a flex xmlrpc
>>> library sent to me by Andrew Zeneski.
>>>
>>> We had tried using the new ofbiz soap implementation, but it didn't play
>>> nicely with flex.
>>>
>>> Have a look at XMLRPC in the faq:
>>>
>>> http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
>>>
>>> If you want a more optimised communication between flex and ofbiz, you
>>> can
>>> try BlazeDS:
>>>
>>>
>>>
>>> http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized
>>>
>>> Cheers,
>>>
>>> Chris
>>>
>>>
>>>
>>>
>>>
>>> Abdullah Shaikh wrote:
>>>
>>>
>>>
 Hi All,

 I want to develop a flex application which will interact with ofbiz
 using
 xml.

 I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
 done
 this ? what will be the best way to have ofbiz output xml ?

 I have seen that GenericValue can be easily converted to xml form.

 The request can be in xml form or can be a normal http request, but the
 response from ofbiz should be in xml form, for example something like
 this,

 
  - all the required fields
 
 

 
  - all the required fields
 

 This way we can have a flex application communicate with ofbiz using xml
 over http, I think flex don't understand json, so we need to go the xml
 way
 and also the benefits of xml is that with this approach ofbiz can
 interact
 with any kind of RIA technology.


 Thanks,
 Abdullah





>>>
>>>
>>
>>
>>
>
>


Blog and forum response

2010-02-01 Thread Jens Oechsler
When trying to view Ecommerce blog or forums responses, I get this error:

org.ofbiz.widget.screen.ScreenRenderException: Error rendering screen
[component://ecommerce/widget/CommonScreens.xml#main-decorator]:
java.lang.IllegalArgumentException: Could not find a
treeStringRenderer in the context (Could not find a treeStringRenderer
in the context)

Its from trunk with demo data.
Is anyone else seeing this or know the solution?


Web Tools "Thread List"

2010-02-01 Thread Steve
Recently moved an ofbiz installation from one machine to another  
faster machine. Lots of other software was updated since the new  
Centos machine was installed from scratch, so, OS, tools, etc are all  
what Centos calls current. Using openjdk Java.


When looking at the web tools screens in ofbiz, specifically, the  
thread list screen, I see 5 service engine threads. They all say  
running, and, don't ever seem to not say running. I don't see any  
logged messages, but, don't recall this happening before. Service  
running is sendGenericNotificationEmail


Email is the same as the old machine, It sends via the provider. Some  
emails send fine, like the ones for user registration. Other emails,  
like order confirmation, are never sent. I see them in the running  
threads also.


Not sure what is going on, but, I don't think this is normal behavior?  
What would cause the services to keep a running status with no  
messages logged? Any thoughts on where to look?


Re: xml engine / handler

2010-02-01 Thread Abdullah Shaikh
Thanks Bilgin, I will have a look at xmlrpc.

- Abdullah

On Mon, Feb 1, 2010 at 9:00 PM, Bilgin Ibryam  wrote:

> Abdullah Shaikh wrote:
>
>> Hi Bilgin,
>>
>> The client can be in any RIA technology, I need to communicate with ofbiz
>> from flex, in this case I guess I won't be able to use xmlrpc client.
>>
>> Thanks,
>> Abdullah
>>
>> On Mon, Feb 1, 2010 at 8:14 PM, Bilgin Ibryam  wrote:
>>
>>
>>
>>> Abdullah Shaikh wrote:
>>>
>>>
>>>
 Hi All,

 I want to develop a flex application which will interact with ofbiz
 using
 xml.

 I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
 done
 this ? what will be the best way to have ofbiz output xml ?

 I have seen that GenericValue can be easily converted to xml form.

 The request can be in xml form or can be a normal http request, but the
 response from ofbiz should be in xml form, for example something like
 this,

 
  - all the required fields
 
 

 
  - all the required fields
 

 This way we can have a flex application communicate with ofbiz using xml
 over http, I think flex don't understand json, so we need to go the xml
 way
 and also the benefits of xml is that with this approach ofbiz can
 interact
 with any kind of RIA technology.


 Thanks,
 Abdullah





>>> Hi Abdullah,
>>>
>>> take a look at XmlRpcEventHandler.java. We use it to call ofbiz services
>>> by
>>> sending data in xml format over http (using a xmlrpc client). The result
>>> is
>>> also returned in xml format.
>>>
>>> Bilgin
>>>
>>>
>>>
>>
>>
>>
> I have no experience with flex, but xmlrpc is just a way to transport the
> data over http encoded in xml. (it is like a lightweight soap) In this
> sense, it doesn't matter what technology is using your client application.
> If it is able to encode the data in properly formatted xml and send it over
> http (and then read the result), that would be enough. I see that there are
> also flex libraries for xmlrpc http://en.wikipedia.org/wiki/XML-RPC
>
> Bilgin
>


Re: How to set the maximum file size to upload in a form?

2010-02-01 Thread Abdullah Shaikh
You can configure this in general.properties.

Look at the http.upload.max. * properties

- Abdullah

On Mon, Feb 1, 2010 at 8:54 PM, MarioF  wrote:

>
> Hi,
>
> I have to set a maximum file size for the upload files. Now I am using a
> form with this field:
>
> 
>
> Is it possible to put here a limit in the size of the files?
>
> Thanks in advance,
> Mario.
>
>
> --
> View this message in context:
> http://n4.nabble.com/How-to-set-the-maximum-file-size-to-upload-in-a-form-tp1458891p1458891.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>


Re: xml engine / handler

2010-02-01 Thread Jeroen van der Wal
Hi Chris,

We're also a big fan of REST but have not taken time to work on a solution
like you mentioned. Are you willing to share what you have done so far?

Thanks,

Jeroen van der Wal
Stromboli b.v.
+31 655 874050


On Mon, Feb 1, 2010 at 4:53 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:

> Sorry - just seen this.
> The approach we currently use is having a dedicated web app in ofbiz which
> is used to expose ofbiz services using REST (the organisation favors REST) .
>  We are using the jersey rest libraries.
>
> I believe our flex guy is using HTTPService to communicate with rest.
>
> Cheers,
>
> chris
>
>
> Abdullah Shaikh wrote:
>
>> Hi Chris,
>>
>> I don't want to use xml-rpc but instead would like to use Flex
>> HTTPService,
>> I guess xml-rpc would work with HTTPService.
>>
>> Basic idea is to create a xml over http communication between ofbiz & any
>> other RIA, so that we can make ofbiz communicated with flex, gwt etc.
>>
>> I will have a look at the link provided.
>>
>> Thanks,
>> Abdullah
>>
>> On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
>> sno...@snowconsulting.co.uk> wrote:
>>
>>
>>
>>> Hi Abdullah,
>>>
>>> On my current project, we initially used xml-rpc using a flex xmlrpc
>>> library sent to me by Andrew Zeneski.
>>>
>>> We had tried using the new ofbiz soap implementation, but it didn't play
>>> nicely with flex.
>>>
>>> Have a look at XMLRPC in the faq:
>>>
>>> http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
>>>
>>> If you want a more optimised communication between flex and ofbiz, you
>>> can
>>> try BlazeDS:
>>>
>>>
>>>
>>> http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized
>>>
>>> Cheers,
>>>
>>> Chris
>>>
>>>
>>>
>>>
>>>
>>> Abdullah Shaikh wrote:
>>>
>>>
>>>
 Hi All,

 I want to develop a flex application which will interact with ofbiz
 using
 xml.

 I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
 done
 this ? what will be the best way to have ofbiz output xml ?

 I have seen that GenericValue can be easily converted to xml form.

 The request can be in xml form or can be a normal http request, but the
 response from ofbiz should be in xml form, for example something like
 this,

 
  - all the required fields
 
 

 
  - all the required fields
 

 This way we can have a flex application communicate with ofbiz using xml
 over http, I think flex don't understand json, so we need to go the xml
 way
 and also the benefits of xml is that with this approach ofbiz can
 interact
 with any kind of RIA technology.


 Thanks,
 Abdullah





>>>
>>>
>>
>>
>>
>
>


Re: xml engine / handler

2010-02-01 Thread Christopher Snow
Sorry - just seen this. 

The approach we currently use is having a dedicated web app in ofbiz 
which is used to expose ofbiz services using REST (the organisation 
favors REST) .  We are using the jersey rest libraries.


I believe our flex guy is using HTTPService to communicate with rest.

Cheers,

chris

Abdullah Shaikh wrote:

Hi Chris,

I don't want to use xml-rpc but instead would like to use Flex HTTPService,
I guess xml-rpc would work with HTTPService.

Basic idea is to create a xml over http communication between ofbiz & any
other RIA, so that we can make ofbiz communicated with flex, gwt etc.

I will have a look at the link provided.

Thanks,
Abdullah

On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:

  

Hi Abdullah,

On my current project, we initially used xml-rpc using a flex xmlrpc
library sent to me by Andrew Zeneski.

We had tried using the new ofbiz soap implementation, but it didn't play
nicely with flex.

Have a look at XMLRPC in the faq:
http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo

If you want a more optimised communication between flex and ofbiz, you can
try BlazeDS:


http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized

Cheers,

Chris





Abdullah Shaikh wrote:



Hi All,

I want to develop a flex application which will interact with ofbiz using
xml.

I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
done
this ? what will be the best way to have ofbiz output xml ?

I have seen that GenericValue can be easily converted to xml form.

The request can be in xml form or can be a normal http request, but the
response from ofbiz should be in xml form, for example something like
this,


 - all the required fields




 - all the required fields


This way we can have a flex application communicate with ofbiz using xml
over http, I think flex don't understand json, so we need to go the xml
way
and also the benefits of xml is that with this approach ofbiz can interact
with any kind of RIA technology.


Thanks,
Abdullah



  



  




Re: xml engine / handler

2010-02-01 Thread Christopher Snow
I HAVE connected to ofbiz with flex using xmlrpc. 


Did you see my post? http://n4.nabble.com/forum/PostLink.jtp?post=1458842



Bilgin Ibryam wrote:

Abdullah Shaikh wrote:

Hi Bilgin,

The client can be in any RIA technology, I need to communicate with 
ofbiz

from flex, in this case I guess I won't be able to use xmlrpc client.

Thanks,
Abdullah

On Mon, Feb 1, 2010 at 8:14 PM, Bilgin Ibryam  wrote:

 

Abdullah Shaikh wrote:

   

Hi All,

I want to develop a flex application which will interact with ofbiz 
using

xml.

I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
done
this ? what will be the best way to have ofbiz output xml ?

I have seen that GenericValue can be easily converted to xml form.

The request can be in xml form or can be a normal http request, but 
the

response from ofbiz should be in xml form, for example something like
this,


 - all the required fields




 - all the required fields


This way we can have a flex application communicate with ofbiz 
using xml
over http, I think flex don't understand json, so we need to go the 
xml

way
and also the benefits of xml is that with this approach ofbiz can 
interact

with any kind of RIA technology.


Thanks,
Abdullah



  

Hi Abdullah,

take a look at XmlRpcEventHandler.java. We use it to call ofbiz 
services by
sending data in xml format over http (using a xmlrpc client). The 
result is

also returned in xml format.

Bilgin




  
I have no experience with flex, but xmlrpc is just a way to transport 
the data over http encoded in xml. (it is like a lightweight soap) In 
this sense, it doesn't matter what technology is using your client 
application. If it is able to encode the data in properly formatted 
xml and send it over http (and then read the result), that would be 
enough. I see that there are also flex libraries for xmlrpc 
http://en.wikipedia.org/wiki/XML-RPC


Bilgin




Re: xml engine / handler

2010-02-01 Thread Bilgin Ibryam

Abdullah Shaikh wrote:

Hi Bilgin,

The client can be in any RIA technology, I need to communicate with ofbiz
from flex, in this case I guess I won't be able to use xmlrpc client.

Thanks,
Abdullah

On Mon, Feb 1, 2010 at 8:14 PM, Bilgin Ibryam  wrote:

  

Abdullah Shaikh wrote:



Hi All,

I want to develop a flex application which will interact with ofbiz using
xml.

I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
done
this ? what will be the best way to have ofbiz output xml ?

I have seen that GenericValue can be easily converted to xml form.

The request can be in xml form or can be a normal http request, but the
response from ofbiz should be in xml form, for example something like
this,


 - all the required fields




 - all the required fields


This way we can have a flex application communicate with ofbiz using xml
over http, I think flex don't understand json, so we need to go the xml
way
and also the benefits of xml is that with this approach ofbiz can interact
with any kind of RIA technology.


Thanks,
Abdullah



  

Hi Abdullah,

take a look at XmlRpcEventHandler.java. We use it to call ofbiz services by
sending data in xml format over http (using a xmlrpc client). The result is
also returned in xml format.

Bilgin




  
I have no experience with flex, but xmlrpc is just a way to transport 
the data over http encoded in xml. (it is like a lightweight soap) In 
this sense, it doesn't matter what technology is using your client 
application. If it is able to encode the data in properly formatted xml 
and send it over http (and then read the result), that would be enough. 
I see that there are also flex libraries for xmlrpc 
http://en.wikipedia.org/wiki/XML-RPC


Bilgin


How to set the maximum file size to upload in a form?

2010-02-01 Thread MarioF

Hi,

I have to set a maximum file size for the upload files. Now I am using a
form with this field:



Is it possible to put here a limit in the size of the files? 

Thanks in advance,
Mario.


-- 
View this message in context: 
http://n4.nabble.com/How-to-set-the-maximum-file-size-to-upload-in-a-form-tp1458891p1458891.html
Sent from the OFBiz - User mailing list archive at Nabble.com.


Re: xml engine / handler

2010-02-01 Thread Abdullah Shaikh
Hi Bilgin,

The client can be in any RIA technology, I need to communicate with ofbiz
from flex, in this case I guess I won't be able to use xmlrpc client.

Thanks,
Abdullah

On Mon, Feb 1, 2010 at 8:14 PM, Bilgin Ibryam  wrote:

> Abdullah Shaikh wrote:
>
>> Hi All,
>>
>> I want to develop a flex application which will interact with ofbiz using
>> xml.
>>
>> I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
>> done
>> this ? what will be the best way to have ofbiz output xml ?
>>
>> I have seen that GenericValue can be easily converted to xml form.
>>
>> The request can be in xml form or can be a normal http request, but the
>> response from ofbiz should be in xml form, for example something like
>> this,
>>
>> 
>>  - all the required fields
>> 
>> 
>>
>> 
>>  - all the required fields
>> 
>>
>> This way we can have a flex application communicate with ofbiz using xml
>> over http, I think flex don't understand json, so we need to go the xml
>> way
>> and also the benefits of xml is that with this approach ofbiz can interact
>> with any kind of RIA technology.
>>
>>
>> Thanks,
>> Abdullah
>>
>>
>>
> Hi Abdullah,
>
> take a look at XmlRpcEventHandler.java. We use it to call ofbiz services by
> sending data in xml format over http (using a xmlrpc client). The result is
> also returned in xml format.
>
> Bilgin
>


Re: xml engine / handler

2010-02-01 Thread Abdullah Shaikh
Hi Chris,

I don't want to use xml-rpc but instead would like to use Flex HTTPService,
I guess xml-rpc would work with HTTPService.

Basic idea is to create a xml over http communication between ofbiz & any
other RIA, so that we can make ofbiz communicated with flex, gwt etc.

I will have a look at the link provided.

Thanks,
Abdullah

On Mon, Feb 1, 2010 at 8:09 PM, Christopher Snow <
sno...@snowconsulting.co.uk> wrote:

> Hi Abdullah,
>
> On my current project, we initially used xml-rpc using a flex xmlrpc
> library sent to me by Andrew Zeneski.
>
> We had tried using the new ofbiz soap implementation, but it didn't play
> nicely with flex.
>
> Have a look at XMLRPC in the faq:
> http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
>
> If you want a more optimised communication between flex and ofbiz, you can
> try BlazeDS:
>
>
> http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized
>
> Cheers,
>
> Chris
>
>
>
>
>
> Abdullah Shaikh wrote:
>
>> Hi All,
>>
>> I want to develop a flex application which will interact with ofbiz using
>> xml.
>>
>> I just had a cursory view of xmlrpcclient & xmlserializer, has anybody
>> done
>> this ? what will be the best way to have ofbiz output xml ?
>>
>> I have seen that GenericValue can be easily converted to xml form.
>>
>> The request can be in xml form or can be a normal http request, but the
>> response from ofbiz should be in xml form, for example something like
>> this,
>>
>> 
>>  - all the required fields
>> 
>> 
>>
>> 
>>  - all the required fields
>> 
>>
>> This way we can have a flex application communicate with ofbiz using xml
>> over http, I think flex don't understand json, so we need to go the xml
>> way
>> and also the benefits of xml is that with this approach ofbiz can interact
>> with any kind of RIA technology.
>>
>>
>> Thanks,
>> Abdullah
>>
>>
>>
>
>


Re: xml engine / handler

2010-02-01 Thread Bilgin Ibryam

Abdullah Shaikh wrote:

Hi All,

I want to develop a flex application which will interact with ofbiz using
xml.

I just had a cursory view of xmlrpcclient & xmlserializer, has anybody done
this ? what will be the best way to have ofbiz output xml ?

I have seen that GenericValue can be easily converted to xml form.

The request can be in xml form or can be a normal http request, but the
response from ofbiz should be in xml form, for example something like this,


 - all the required fields




 - all the required fields


This way we can have a flex application communicate with ofbiz using xml
over http, I think flex don't understand json, so we need to go the xml way
and also the benefits of xml is that with this approach ofbiz can interact
with any kind of RIA technology.


Thanks,
Abdullah

  

Hi Abdullah,

take a look at XmlRpcEventHandler.java. We use it to call ofbiz services 
by sending data in xml format over http (using a xmlrpc client). The 
result is also returned in xml format.


Bilgin


Re: xml engine / handler

2010-02-01 Thread Christopher Snow

Hi Abdullah,

On my current project, we initially used xml-rpc using a flex xmlrpc 
library sent to me by Andrew Zeneski.


We had tried using the new ofbiz soap implementation, but it didn't play 
nicely with flex.


Have a look at XMLRPC in the faq: 
http://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo


If you want a more optimised communication between flex and ofbiz, you 
can try BlazeDS:


http://langhua.org/portal/portal/default/OFBiz/OFBizBlazeDSModulePortletWindow?windowstate=maximized

Cheers,

Chris




Abdullah Shaikh wrote:

Hi All,

I want to develop a flex application which will interact with ofbiz using
xml.

I just had a cursory view of xmlrpcclient & xmlserializer, has anybody done
this ? what will be the best way to have ofbiz output xml ?

I have seen that GenericValue can be easily converted to xml form.

The request can be in xml form or can be a normal http request, but the
response from ofbiz should be in xml form, for example something like this,


 - all the required fields




 - all the required fields


This way we can have a flex application communicate with ofbiz using xml
over http, I think flex don't understand json, so we need to go the xml way
and also the benefits of xml is that with this approach ofbiz can interact
with any kind of RIA technology.


Thanks,
Abdullah

  




xml engine / handler

2010-02-01 Thread Abdullah Shaikh
Hi All,

I want to develop a flex application which will interact with ofbiz using
xml.

I just had a cursory view of xmlrpcclient & xmlserializer, has anybody done
this ? what will be the best way to have ofbiz output xml ?

I have seen that GenericValue can be easily converted to xml form.

The request can be in xml form or can be a normal http request, but the
response from ofbiz should be in xml form, for example something like this,


 - all the required fields




 - all the required fields


This way we can have a flex application communicate with ofbiz using xml
over http, I think flex don't understand json, so we need to go the xml way
and also the benefits of xml is that with this approach ofbiz can interact
with any kind of RIA technology.


Thanks,
Abdullah


Re: simple code fails please help

2010-02-01 Thread Patrick
I figured it out - I'll post just send this for the archives - the way
to create an entity and add it to a contextMap











On Mon, Feb 1, 2010 at 7:40 AM, Patrick  wrote:
> Hi David
> How do I put an entity into a context / contextMap? Thanks Patrick
>
> On Sun, Jan 31, 2010 at 8:17 PM, David E Jones  wrote:
>>
>> The map passed to a service call is the "context" (incoming parameters) for 
>> that service.
>>
>> You're passing an entity value object to the service as the context instead 
>> of putting the entity value object IN the context and then passing the 
>> context. There are two problems with that:
>>
>> 1. the entity value object will likely have values in it that are not valid 
>> for the service
>> 2. the service engine is going to look for values in the value object that 
>> are not part of the entity, thus triggering an error meant to help with 
>> run-time debugging
>>
>> -David
>>
>>
>> On Jan 31, 2010, at 7:25 PM, Patrick wrote:
>>
>>> Basically I am trying to pass a ProductCategory into the service
>>> createProductCategory below
>>>
>>> >> login-required="false">
>>> 
>>> 
>>> 
>>> >> />
>>>
>>> I would like to create this entity "ProductCategory" and pass it into
>>> the service "createProductCategory"
>>>
>>> The error I get is this, java.lang.IllegalArgumentException:
>>> [GenericEntity.set] "userLogin" is not a field of ProductCategory,
>>> must be one of: productCategoryId, productCategoryTypeId,
>>>
>>> This doesn't make sense to me, because I know that userLogin is not a
>>> field of ProductCategory, my code doesn't indicate that at all.
>>> Thanks in advance for any assistance. Patrick
>>
>>
>


Re: SVN

2010-02-01 Thread Ruth Hoffman
Thanks Chris for making this point. It is an important one and often 
overlooked!

Regards,
Ruth

Christopher Snow wrote:

Release 9.04 only gets updated with bug fixes.

If you are looking to learn ofbiz, stable is the way to go.  If 
something doesn't work as you expect when working on trunk, you don't 
know if the problem is your mis-understanding, or if it's the 'code' 
that's broken.


Brendan Vogt wrote:

Does this get updated frequently, or only on major releases like once a
year?



On 1 February 2010 14:45, Christopher Snow 
wrote:


 

I would recommend the following for stable:

http://svn.apache.org/repos/asf/ofbiz/branches/release09.04


Jeroen van der Wal wrote:

   

- In Explorer right click on a directory (eg your home or documents
directory)
- Select "SVN Checkout"
- Enter URL of repository: 
http://svn.apache.org/repos/asf/ofbiz/trunk/

- Click OK

Jeroen van der Wal
Stromboli b.v.
+31 655 874050


On Mon, Feb 1, 2010 at 1:28 PM, Brendan Vogt 
wrote:



 

Hi,

I want to download the code by using Tortoise SVN, where must I 
point it

to?  What is the difference between the different versions, trunk,
release9.04 and release4.0?  I'm looking for the stable version.

How would I use the following with Tortoise?

$ svn co http://svn.apache.org/repos/asf/ofbiz/trunk ofbiz

Brendan






  



  





Re: How to add task time to a new invoice

2010-02-01 Thread Ruth Hoffman

Hi Hans:
Yes - this is extremely useful and got me to the point where I could ask 
the question(s) I asked last night. In fact, that document has given me 
the confidence to say (to my client) "yes, this can be done".


Now, I'm left with putting together a demonstration such that I may walk 
through and show this person exactly how this would work from a 
consultant's point of view and from the business owner's point of view. 
So, when I asked how to get my timesheets associated with a project and 
then generate an invoice, this was from trying to use the Project 
Manager as a consultant would use it. There is nothing anywhere that I 
can find that describes the steps to accomplish this task. Certainly 
there is nothing that indicates that time sheets have to be dated a 
certain way to be eligible for inclusion in an invoice. And there is no 
indication anywhere of how to change dates on a time sheet to make them 
eligible for use when generating new invoices. I even looked at the form 
widget and cannot find this.


BTW, I haven't yet tried what you suggested last night. That's a task 
for later today.


Thanks for all your help. Your document and your suggestions posted on 
this list have saved me countless hours. Hopefully, we can work through 
the rest of this together and I'll have my demo (and the Wiki) 
documentation wrapped up soon.


Regards,
Ruth

Hans Bakker wrote:

did you check:
http://cwiki.apache.org/confluence/display/OFBENDUSER/OFBiz+in+a+service
+and+project+oriented+company

where it is all explained?

Regards,
Hans

On Mon, 2010-02-01 at 08:30 -0500, Ruth Hoffman wrote:
  

Hi Chris:
I was thinking that if I can get Hans to help me through this, I'd 
update the Wiki first with more detailed instructions.


FYI - this is sort of a diversion from what I'm trying to finish up now: 
some basic accounting & marketing "how to" info in the E-Commerce OOTB 
book. But someone has asked me to demonstrate to them how one might use 
OFBiz within a Consulting/Software Product company. And, ever mindful of 
possible future training/book topics, I thought I'd give it a whirl.


Thanks for the support!

Find me on the web at http://www.myofbiz.com or Google keyword "myofbiz"
ruth.hoff...@myofbiz.com
Ruth
Christopher Snow wrote:


Hi Ruth,

When you have figured out how to use ofbiz for a consulting firm, will 
you be including this in one of your books?  I would certainly like to 
know how to do this, but without having to go through all the "pain" 
that you have gone through!


Many thanks,

Chris

Ruth Hoffman wrote:
  
OK, can't do that because one already exist...plan "b", start all 
over new project, new timesheet.

TIA
Ruth

Ruth Hoffman wrote:


Hi Hans:
It is not really clear how to do that. I get mired down chasing 
navigation links. Anyhow, I'll try creating a new time sheet with a 
through date before the end of the current month and see if that one 
shows up.

TIA
Ruth

Hans Bakker wrote:
  

you can adjust the date to a later date before creating he invoice

On Sun, 2010-01-31 at 17:40 -0500, Ruth Hoffman wrote:
 


Hi Hans:
So, I shall check my timesheets for end dates relative to the 
current month (since I'm creating a new invoice)

Thanks again
Ruth


Hans Bakker wrote:
 
  

Hi Ruth,

when you create an invoice, you can set the end date which 
defaults to

the end of the last month what normally should be ok for monthly
billing...

if your timesheets however are laterthen they cannot be 
found.


Regards,
Hans


On Sun, 2010-01-31 at 17:30 -0500, Ruth Hoffman wrote:
 


Hi Hans:
Thanks for the quick reply!

I thought that is how it might work. I tried this...and I get 
the following error: "No timeentry items found". This lead me to 
believe that I have to do something else besides
create project -> create phase -> create task -> create 
timesheet -> set timesheet to complete


Then when I bring up the "Billing" tab for my project I see 
"Hours not yet billed information" and my timesheets are all 
listed.


When I go to "Add all reported/approved task time to a new 
invoice" I get that response.


So, I think I'm missing something?
TIA
Ruth

Hans Bakker wrote:
 
  
timesheets have tasks...if you report on a task, the tasks are 
related

to a project.

you have to 'complete' the timesheet in order for it to appear 
in the

project billing tab.

Regards
Hans


On Sun, 2010-01-31 at 17:06 -0500, Ruth Hoffman wrote:
   


Quick question about the Project Manager application:

How does one associate timesheets with projects?

I see where I can "Add all reported/approved task time to a 
new invoice" but how do I get a task "approved". And how do I 
associate the timesheet (which I am assuming is the "task 
time") with a project?


TIA
Ruth

  
  


Re: SVN

2010-02-01 Thread Christopher Snow

Release 9.04 only gets updated with bug fixes.

If you are looking to learn ofbiz, stable is the way to go.  If 
something doesn't work as you expect when working on trunk, you don't 
know if the problem is your mis-understanding, or if it's the 'code' 
that's broken.


Brendan Vogt wrote:

Does this get updated frequently, or only on major releases like once a
year?



On 1 February 2010 14:45, Christopher Snow wrote:

  

I would recommend the following for stable:

http://svn.apache.org/repos/asf/ofbiz/branches/release09.04


Jeroen van der Wal wrote:



- In Explorer right click on a directory (eg your home or documents
directory)
- Select "SVN Checkout"
- Enter URL of repository: http://svn.apache.org/repos/asf/ofbiz/trunk/
- Click OK

Jeroen van der Wal
Stromboli b.v.
+31 655 874050


On Mon, Feb 1, 2010 at 1:28 PM, Brendan Vogt 
wrote:



  

Hi,

I want to download the code by using Tortoise SVN, where must I point it
to?  What is the difference between the different versions, trunk,
release9.04 and release4.0?  I'm looking for the stable version.

How would I use the following with Tortoise?

$ svn co http://svn.apache.org/repos/asf/ofbiz/trunk ofbiz

Brendan






  



  




Re: simple code fails please help

2010-02-01 Thread Patrick
Hi David
How do I put an entity into a context / contextMap? Thanks Patrick

On Sun, Jan 31, 2010 at 8:17 PM, David E Jones  wrote:
>
> The map passed to a service call is the "context" (incoming parameters) for 
> that service.
>
> You're passing an entity value object to the service as the context instead 
> of putting the entity value object IN the context and then passing the 
> context. There are two problems with that:
>
> 1. the entity value object will likely have values in it that are not valid 
> for the service
> 2. the service engine is going to look for values in the value object that 
> are not part of the entity, thus triggering an error meant to help with 
> run-time debugging
>
> -David
>
>
> On Jan 31, 2010, at 7:25 PM, Patrick wrote:
>
>> Basically I am trying to pass a ProductCategory into the service
>> createProductCategory below
>>
>> > login-required="false">
>> 
>> 
>> 
>> > />
>>
>> I would like to create this entity "ProductCategory" and pass it into
>> the service "createProductCategory"
>>
>> The error I get is this, java.lang.IllegalArgumentException:
>> [GenericEntity.set] "userLogin" is not a field of ProductCategory,
>> must be one of: productCategoryId, productCategoryTypeId,
>>
>> This doesn't make sense to me, because I know that userLogin is not a
>> field of ProductCategory, my code doesn't indicate that at all.
>> Thanks in advance for any assistance. Patrick
>
>


Re: How to add task time to a new invoice

2010-02-01 Thread Hans Bakker
did you check:
http://cwiki.apache.org/confluence/display/OFBENDUSER/OFBiz+in+a+service
+and+project+oriented+company

where it is all explained?

Regards,
Hans

On Mon, 2010-02-01 at 08:30 -0500, Ruth Hoffman wrote:
> Hi Chris:
> I was thinking that if I can get Hans to help me through this, I'd 
> update the Wiki first with more detailed instructions.
> 
> FYI - this is sort of a diversion from what I'm trying to finish up now: 
> some basic accounting & marketing "how to" info in the E-Commerce OOTB 
> book. But someone has asked me to demonstrate to them how one might use 
> OFBiz within a Consulting/Software Product company. And, ever mindful of 
> possible future training/book topics, I thought I'd give it a whirl.
> 
> Thanks for the support!
> 
> Find me on the web at http://www.myofbiz.com or Google keyword "myofbiz"
> ruth.hoff...@myofbiz.com
> Ruth
> Christopher Snow wrote:
> > Hi Ruth,
> >
> > When you have figured out how to use ofbiz for a consulting firm, will 
> > you be including this in one of your books?  I would certainly like to 
> > know how to do this, but without having to go through all the "pain" 
> > that you have gone through!
> >
> > Many thanks,
> >
> > Chris
> >
> > Ruth Hoffman wrote:
> >> OK, can't do that because one already exist...plan "b", start all 
> >> over new project, new timesheet.
> >> TIA
> >> Ruth
> >>
> >> Ruth Hoffman wrote:
> >>> Hi Hans:
> >>> It is not really clear how to do that. I get mired down chasing 
> >>> navigation links. Anyhow, I'll try creating a new time sheet with a 
> >>> through date before the end of the current month and see if that one 
> >>> shows up.
> >>> TIA
> >>> Ruth
> >>>
> >>> Hans Bakker wrote:
>  you can adjust the date to a later date before creating he invoice
> 
>  On Sun, 2010-01-31 at 17:40 -0500, Ruth Hoffman wrote:
>   
> > Hi Hans:
> > So, I shall check my timesheets for end dates relative to the 
> > current month (since I'm creating a new invoice)
> > Thanks again
> > Ruth
> >
> >
> > Hans Bakker wrote:
> >  
> >> Hi Ruth,
> >>
> >> when you create an invoice, you can set the end date which 
> >> defaults to
> >> the end of the last month what normally should be ok for monthly
> >> billing...
> >>
> >> if your timesheets however are laterthen they cannot be 
> >> found.
> >>
> >> Regards,
> >> Hans
> >>
> >>
> >> On Sun, 2010-01-31 at 17:30 -0500, Ruth Hoffman wrote:
> >>  
> >>> Hi Hans:
> >>> Thanks for the quick reply!
> >>>
> >>> I thought that is how it might work. I tried this...and I get 
> >>> the following error: "No timeentry items found". This lead me to 
> >>> believe that I have to do something else besides
> >>> create project -> create phase -> create task -> create 
> >>> timesheet -> set timesheet to complete
> >>>
> >>> Then when I bring up the "Billing" tab for my project I see 
> >>> "Hours not yet billed information" and my timesheets are all 
> >>> listed.
> >>>
> >>> When I go to "Add all reported/approved task time to a new 
> >>> invoice" I get that response.
> >>>
> >>> So, I think I'm missing something?
> >>> TIA
> >>> Ruth
> >>>
> >>> Hans Bakker wrote:
> >>>  
>  timesheets have tasks...if you report on a task, the tasks are 
>  related
>  to a project.
> 
>  you have to 'complete' the timesheet in order for it to appear 
>  in the
>  project billing tab.
> 
>  Regards
>  Hans
> 
> 
>  On Sun, 2010-01-31 at 17:06 -0500, Ruth Hoffman wrote:
> 
> > Quick question about the Project Manager application:
> >
> > How does one associate timesheets with projects?
> >
> > I see where I can "Add all reported/approved task time to a 
> > new invoice" but how do I get a task "approved". And how do I 
> > associate the timesheet (which I am assuming is the "task 
> > time") with a project?
> >
> > TIA
> > Ruth
> > 
> >>>
> >
> >
-- 
Antwebsystems.com: Quality OFBiz services for competitive rates



Re: How to add task time to a new invoice

2010-02-01 Thread Ruth Hoffman

Hi Chris:
I was thinking that if I can get Hans to help me through this, I'd 
update the Wiki first with more detailed instructions.


FYI - this is sort of a diversion from what I'm trying to finish up now: 
some basic accounting & marketing "how to" info in the E-Commerce OOTB 
book. But someone has asked me to demonstrate to them how one might use 
OFBiz within a Consulting/Software Product company. And, ever mindful of 
possible future training/book topics, I thought I'd give it a whirl.


Thanks for the support!

Find me on the web at http://www.myofbiz.com or Google keyword "myofbiz"
ruth.hoff...@myofbiz.com
Ruth
Christopher Snow wrote:

Hi Ruth,

When you have figured out how to use ofbiz for a consulting firm, will 
you be including this in one of your books?  I would certainly like to 
know how to do this, but without having to go through all the "pain" 
that you have gone through!


Many thanks,

Chris

Ruth Hoffman wrote:
OK, can't do that because one already exist...plan "b", start all 
over new project, new timesheet.

TIA
Ruth

Ruth Hoffman wrote:

Hi Hans:
It is not really clear how to do that. I get mired down chasing 
navigation links. Anyhow, I'll try creating a new time sheet with a 
through date before the end of the current month and see if that one 
shows up.

TIA
Ruth

Hans Bakker wrote:

you can adjust the date to a later date before creating he invoice

On Sun, 2010-01-31 at 17:40 -0500, Ruth Hoffman wrote:
 

Hi Hans:
So, I shall check my timesheets for end dates relative to the 
current month (since I'm creating a new invoice)

Thanks again
Ruth


Hans Bakker wrote:
 

Hi Ruth,

when you create an invoice, you can set the end date which 
defaults to

the end of the last month what normally should be ok for monthly
billing...

if your timesheets however are laterthen they cannot be 
found.


Regards,
Hans


On Sun, 2010-01-31 at 17:30 -0500, Ruth Hoffman wrote:
 

Hi Hans:
Thanks for the quick reply!

I thought that is how it might work. I tried this...and I get 
the following error: "No timeentry items found". This lead me to 
believe that I have to do something else besides
create project -> create phase -> create task -> create 
timesheet -> set timesheet to complete


Then when I bring up the "Billing" tab for my project I see 
"Hours not yet billed information" and my timesheets are all 
listed.


When I go to "Add all reported/approved task time to a new 
invoice" I get that response.


So, I think I'm missing something?
TIA
Ruth

Hans Bakker wrote:
 
timesheets have tasks...if you report on a task, the tasks are 
related

to a project.

you have to 'complete' the timesheet in order for it to appear 
in the

project billing tab.

Regards
Hans


On Sun, 2010-01-31 at 17:06 -0500, Ruth Hoffman wrote:
   

Quick question about the Project Manager application:

How does one associate timesheets with projects?

I see where I can "Add all reported/approved task time to a 
new invoice" but how do I get a task "approved". And how do I 
associate the timesheet (which I am assuming is the "task 
time") with a project?


TIA
Ruth








Re: SVN

2010-02-01 Thread Brendan Vogt
Does this get updated frequently, or only on major releases like once a
year?



On 1 February 2010 14:45, Christopher Snow wrote:

> I would recommend the following for stable:
>
> http://svn.apache.org/repos/asf/ofbiz/branches/release09.04
>
>
> Jeroen van der Wal wrote:
>
>> - In Explorer right click on a directory (eg your home or documents
>> directory)
>> - Select "SVN Checkout"
>> - Enter URL of repository: http://svn.apache.org/repos/asf/ofbiz/trunk/
>> - Click OK
>>
>> Jeroen van der Wal
>> Stromboli b.v.
>> +31 655 874050
>>
>>
>> On Mon, Feb 1, 2010 at 1:28 PM, Brendan Vogt 
>> wrote:
>>
>>
>>
>>> Hi,
>>>
>>> I want to download the code by using Tortoise SVN, where must I point it
>>> to?  What is the difference between the different versions, trunk,
>>> release9.04 and release4.0?  I'm looking for the stable version.
>>>
>>> How would I use the following with Tortoise?
>>>
>>> $ svn co http://svn.apache.org/repos/asf/ofbiz/trunk ofbiz
>>>
>>> Brendan
>>>
>>>
>>>
>>
>>
>>
>
>


Re: SVN

2010-02-01 Thread Christopher Snow

I would recommend the following for stable:

http://svn.apache.org/repos/asf/ofbiz/branches/release09.04

Jeroen van der Wal wrote:

- In Explorer right click on a directory (eg your home or documents
directory)
- Select "SVN Checkout"
- Enter URL of repository: http://svn.apache.org/repos/asf/ofbiz/trunk/
- Click OK

Jeroen van der Wal
Stromboli b.v.
+31 655 874050


On Mon, Feb 1, 2010 at 1:28 PM, Brendan Vogt  wrote:

  

Hi,

I want to download the code by using Tortoise SVN, where must I point it
to?  What is the difference between the different versions, trunk,
release9.04 and release4.0?  I'm looking for the stable version.

How would I use the following with Tortoise?

$ svn co http://svn.apache.org/repos/asf/ofbiz/trunk ofbiz

Brendan




  




Re: SVN

2010-02-01 Thread Jeroen van der Wal
- In Explorer right click on a directory (eg your home or documents
directory)
- Select "SVN Checkout"
- Enter URL of repository: http://svn.apache.org/repos/asf/ofbiz/trunk/
- Click OK

Jeroen van der Wal
Stromboli b.v.
+31 655 874050


On Mon, Feb 1, 2010 at 1:28 PM, Brendan Vogt  wrote:

> Hi,
>
> I want to download the code by using Tortoise SVN, where must I point it
> to?  What is the difference between the different versions, trunk,
> release9.04 and release4.0?  I'm looking for the stable version.
>
> How would I use the following with Tortoise?
>
> $ svn co http://svn.apache.org/repos/asf/ofbiz/trunk ofbiz
>
> Brendan
>


Re: Windows Vista Setup Instructions

2010-02-01 Thread Brendan Vogt
I don't use opensource software, I am a .NET developer.  What sodtware do I
need installed to be able to download the code and to get it running.

I don't know what JAVA_HOME is, what is the trunk folder.  Etc etc etc.
These are the kind of questions that I need answered.



On 1 February 2010 09:45, Brendan Vogt  wrote:

> The last time that I downloaded OFBiz I got stuck at a point.  I think back
> then there was specific instuctions for downloading to a Windows machine.
> What software I need to use etc etc etc.
>
>
>
>
> On 23 January 2010 15:51, Chris Snow  wrote:
>
>> What is your objective?
>>
>> If you just want to try out ofbiz, the following links may help:
>>
>>
>> http://cwiki.apache.org/confluence/display/OFBADMIN/Demo+and+Test+Setup+Guide#
>> or
>> http://www.kenfuse.com/rsrc/ofbiz-getting-started
>>
>> If you have any questions with the instructions, please post back to this
>> list.
>>
>>
>> Brendan Vogt wrote:
>>
>>> Hi,
>>>
>>> Where can I find Windows Vista setup instructions and a list of all the
>>> software required.
>>>
>>> Regards,
>>> Brendan
>>>
>>>
>>>
>>
>>
>