Re: xenical user : spam

2008-11-13 Thread Scott Gray
Done

Regards
Scott

2008/11/14 Jacques Le Roux <[EMAIL PROTECTED]>:
> Could we suppress http://docs.ofbiz.org/display/~xenical please ?
>
> Thanks
>
> Jacques


xenical user : spam

2008-11-13 Thread Jacques Le Roux
Could we suppress http://docs.ofbiz.org/display/~xenical please ?

Thanks

Jacques

Re: Return To Vendor

2008-11-13 Thread BJ Freeman
LOL, I thought that was the definition for a vendor, you gave a while ago.
thanks for the correction.


David E Jones sent the following on 11/13/2008 8:12 PM:
> 
> Um... usually in OFBiz "Vendor" refers to anyone that sells anything,
> including the company running OFBiz and all of its suppliers.
> 
> A "Supplier" is someone you buy from, that's correct.
> 
> A "Customer" is someone that buys from you.
> 
> -David
> 
> On Nov 13, 2008, at 9:57 PM, BJ Freeman wrote:
> 
>> clarification:
>> Vendor is someone that buys from you
>> supplier is someone you buy from
>>
>>
>> masionas sent the following on 11/13/2008 1:19 PM:
>>> Hi Guys,
>>>
>>> I have an error when I try to create Return to Vendor. It says:
>>> The Following Errors Occurred:
>>>
>>> Error: a return must be to a party in the role of internal organization
>>>
>>> WHy is that? It looks logical to be that way if we have Return From
>>> Customer, then we return it to our company which is internal
>>> organization.
>>> But why vendor would be internal organization?
>>>
>>> Thank you for any clarifications.
> 
> 
> 


Re: Return To Vendor

2008-11-13 Thread David E Jones


Um... usually in OFBiz "Vendor" refers to anyone that sells anything,  
including the company running OFBiz and all of its suppliers.


A "Supplier" is someone you buy from, that's correct.

A "Customer" is someone that buys from you.

-David

On Nov 13, 2008, at 9:57 PM, BJ Freeman wrote:


clarification:
Vendor is someone that buys from you
supplier is someone you buy from


masionas sent the following on 11/13/2008 1:19 PM:

Hi Guys,

I have an error when I try to create Return to Vendor. It says:
The Following Errors Occurred:

Error: a return must be to a party in the role of internal  
organization


WHy is that? It looks logical to be that way if we have Return From
Customer, then we return it to our company which is internal  
organization.

But why vendor would be internal organization?

Thank you for any clarifications.




Re: Return To Vendor

2008-11-13 Thread BJ Freeman
clarification:
Vendor is someone that buys from you
supplier is someone you buy from


masionas sent the following on 11/13/2008 1:19 PM:
> Hi Guys,
> 
> I have an error when I try to create Return to Vendor. It says:
> The Following Errors Occurred:
> 
> Error: a return must be to a party in the role of internal organization
> 
> WHy is that? It looks logical to be that way if we have Return From
> Customer, then we return it to our company which is internal organization.
> But why vendor would be internal organization?
> 
> Thank you for any clarifications.


Re: Return To Vendor

2008-11-13 Thread BJ Freeman
the code was written to return items to the company.
you have to write new code to ask a supplier for an RMA
and returns to them
it gets more tricky if you use a dropshipper.

masionas sent the following on 11/13/2008 1:19 PM:
> Hi Guys,
> 
> I have an error when I try to create Return to Vendor. It says:
> The Following Errors Occurred:
> 
> Error: a return must be to a party in the role of internal organization
> 
> WHy is that? It looks logical to be that way if we have Return From
> Customer, then we return it to our company which is internal organization.
> But why vendor would be internal organization?
> 
> Thank you for any clarifications.


Return To Vendor

2008-11-13 Thread masionas

Hi Guys,

I have an error when I try to create Return to Vendor. It says:
The Following Errors Occurred:

Error: a return must be to a party in the role of internal organization

WHy is that? It looks logical to be that way if we have Return From
Customer, then we return it to our company which is internal organization.
But why vendor would be internal organization?

Thank you for any clarifications.
-- 
View this message in context: 
http://www.nabble.com/Return-To-Vendor-tp20489766p20489766.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: Override global variables

2008-11-13 Thread Jacek Wagner

It works with to-scope.

Thank you.

Jacek  

to-scope="screen" />


Jacek Wagner wrote:

Adrian,

The following is a part of the main-decorator and screen widget 
implementation



   
   
   
  map-name="uiLabelMap" global="true"/>  
   from-field="uiLabelMap.RegistrationCompanyName" global="true"/>

  ...
   default-value="0"/>

  ..
   global="true"/>

. 

screen-widget where productId gets its final value
   
 
   
   
   auto-field-map="parameters"/> 

   
   location="component://registration/widget/CommonScreens.xml">
   name="body">   
  
   location="component://party/webapp/partymgr/party/findparty.ftl"/>

   

   
   
   
   

comments: screen widget applies parameters.productId to productId as 
local not global. I do not know where to go from here.


Jacek

Adrian Crum wrote:
There is a workaround - instead of trying to initialize the default 
value in the main decorator, try using the default-value attribute in 
the main decorator's  action:




-Adrian

Jacek Wagner wrote:

Adrian Crum wrote:
You can't - because decorator actions are run after the decorated 
widget's actions.


-Adrian

Jacek Wagner wrote:

All,

I set up a global variable productId in the main decorator with a 
default value of 0.


In the course of various screen widgets and forms I have 
established a final productId which I want to keep.


How can I override the default productId variable?

Jacek

So how can I keep my final productId  without passing it thru 
countless screen widgets, screen forms and freemarker forms?


Jacek







Re: Override global variables

2008-11-13 Thread Jacek Wagner

Adrian,

The following is a part of the main-decorator and screen widget 
implementation



   
   
   
  map-name="uiLabelMap" global="true"/>  
   from-field="uiLabelMap.RegistrationCompanyName" global="true"/>

  ...
   default-value="0"/>

  ..
   global="true"/>
.  
   


screen-widget where productId gets its final value
   
  
   

   
   
   auto-field-map="parameters"/>  
   

   
   location="component://registration/widget/CommonScreens.xml">
  
  
   location="component://party/webapp/partymgr/party/findparty.ftl"/>

   

   
   
   
   

comments: screen widget applies parameters.productId to productId as 
local not global. I do not know where to go from here.


Jacek

Adrian Crum wrote:
There is a workaround - instead of trying to initialize the default 
value in the main decorator, try using the default-value attribute in 
the main decorator's  action:




-Adrian

Jacek Wagner wrote:

Adrian Crum wrote:
You can't - because decorator actions are run after the decorated 
widget's actions.


-Adrian

Jacek Wagner wrote:

All,

I set up a global variable productId in the main decorator with a 
default value of 0.


In the course of various screen widgets and forms I have 
established a final productId which I want to keep.


How can I override the default productId variable?

Jacek

So how can I keep my final productId  without passing it thru 
countless screen widgets, screen forms and freemarker forms?


Jacek





Re: Horizontal menu

2008-11-13 Thread Adrian Crum

Use the Example component as a guide.

-Adrian

adithi agarwal wrote:

thankyou..
Iam not using CSS for my application as of now..can you please tell me how do i 
apply the existing CSS in my application..

--- On Fri, 11/14/08, Adrian Crum <[EMAIL PROTECTED]> wrote:
From: Adrian Crum <[EMAIL PROTECTED]>
Subject: Re: Horizontal menu
To: user@ofbiz.apache.org
Date: Friday, November 14, 2008, 1:04 AM

Oops, I should have said the orientation attribute isn't used any more.

A number of the menu widget attributes have been deprecated or replaced. Some
time ago, the decision was made to put menu styling - like vertical versus
horizontal - under the control of style sheets or other rendering engines.

-Adrian

Adrian Crum wrote:

The horizontal attribute is not used any more. Use one of the horizontal

menu CSS styles.

-Adrian

adithi agarwal wrote:

Hi Iam trying to create a menu bar. refering to Examplemenus.xml. I am

able to display vertical menu but not horizontal..though I have used the
attribute orientation="horizontal"

Can anyone please  tell me if there is any other way of displaying

hori menu.

Thanks



  




  


Re: Horizontal menu

2008-11-13 Thread adithi agarwal
thankyou..
Iam not using CSS for my application as of now..can you please tell me how do i 
apply the existing CSS in my application..

--- On Fri, 11/14/08, Adrian Crum <[EMAIL PROTECTED]> wrote:
From: Adrian Crum <[EMAIL PROTECTED]>
Subject: Re: Horizontal menu
To: user@ofbiz.apache.org
Date: Friday, November 14, 2008, 1:04 AM

Oops, I should have said the orientation attribute isn't used any more.

A number of the menu widget attributes have been deprecated or replaced. Some
time ago, the decision was made to put menu styling - like vertical versus
horizontal - under the control of style sheets or other rendering engines.

-Adrian

Adrian Crum wrote:
> The horizontal attribute is not used any more. Use one of the horizontal
menu CSS styles.
> 
> -Adrian
> 
> adithi agarwal wrote:
>> Hi Iam trying to create a menu bar. refering to Examplemenus.xml. I am
able to display vertical menu but not horizontal..though I have used the
attribute orientation="horizontal"
>> Can anyone please  tell me if there is any other way of displaying
hori menu.
>> 
>> Thanks
>> 
>> 
>> 
>>   
> 



  

Re: Override global variables

2008-11-13 Thread Adrian Crum
There is a workaround - instead of trying to initialize the default 
value in the main decorator, try using the default-value attribute in 
the main decorator's  action:




-Adrian

Jacek Wagner wrote:

Adrian Crum wrote:
You can't - because decorator actions are run after the decorated 
widget's actions.


-Adrian

Jacek Wagner wrote:

All,

I set up a global variable productId in the main decorator with a 
default value of 0.


In the course of various screen widgets and forms I have established 
a final productId which I want to keep.


How can I override the default productId variable?

Jacek

So how can I keep my final productId  without passing it thru countless 
screen widgets, screen forms and freemarker forms?


Jacek



Re: Override global variables

2008-11-13 Thread BJ Freeman
_NA_ is the default already set up. this is equivalent to 0
so how are you accessing ofbiz?
what what are you trying to accomplish.


Jacek Wagner sent the following on 11/13/2008 11:45 AM:
> All,
> 
> I set up a global variable productId in the main decorator with a
> default value of 0.
> 
> In the course of various screen widgets and forms I have established a
> final productId which I want to keep.
> 
> How can I override the default productId variable?
> 
> Jacek
> 
> 


Re: Override global variables

2008-11-13 Thread Jacek Wagner

Adrian Crum wrote:
You can't - because decorator actions are run after the decorated 
widget's actions.


-Adrian

Jacek Wagner wrote:

All,

I set up a global variable productId in the main decorator with a 
default value of 0.


In the course of various screen widgets and forms I have established 
a final productId which I want to keep.


How can I override the default productId variable?

Jacek

So how can I keep my final productId  without passing it thru countless 
screen widgets, screen forms and freemarker forms?


Jacek


Re: Override global variables

2008-11-13 Thread Adrian Crum
You can't - because decorator actions are run after the decorated 
widget's actions.


-Adrian

Jacek Wagner wrote:

All,

I set up a global variable productId in the main decorator with a 
default value of 0.


In the course of various screen widgets and forms I have established a 
final productId which I want to keep.


How can I override the default productId variable?

Jacek



Override global variables

2008-11-13 Thread Jacek Wagner

All,

I set up a global variable productId in the main decorator with a 
default value of 0.


In the course of various screen widgets and forms I have established a 
final productId which I want to keep.


How can I override the default productId variable?

Jacek


Re: Horizontal menu

2008-11-13 Thread Adrian Crum

http://docs.ofbiz.org/display/OFBIZ/Back+Office+Applications+UI+Refactor

-Adrian

adithi agarwal wrote:

Cant we do it without CSS
--- On Fri, 11/14/08, Adrian Crum <[EMAIL PROTECTED]> wrote:
From: Adrian Crum <[EMAIL PROTECTED]>
Subject: Re: Horizontal menu
To: user@ofbiz.apache.org
Date: Friday, November 14, 2008, 12:48 AM

The horizontal attribute is not used any more. Use one of the horizontal menu
CSS styles.

-Adrian

adithi agarwal wrote:

Hi Iam trying to create a menu bar. refering to Examplemenus.xml. I am

able to display vertical menu but not horizontal..though I have used the
attribute orientation="horizontal"

Can anyone please  tell me if there is any other way of displaying hori

menu.

Thanks



  



  


Re: Horizontal menu

2008-11-13 Thread Adrian Crum

Oops, I should have said the orientation attribute isn't used any more.

A number of the menu widget attributes have been deprecated or replaced. 
Some time ago, the decision was made to put menu styling - like vertical 
versus horizontal - under the control of style sheets or other rendering 
engines.


-Adrian

Adrian Crum wrote:
The horizontal attribute is not used any more. Use one of the horizontal 
menu CSS styles.


-Adrian

adithi agarwal wrote:
Hi Iam trying to create a menu bar. refering to Examplemenus.xml. I am 
able to display vertical menu but not horizontal..though I have used 
the attribute orientation="horizontal"
Can anyone please  tell me if there is any other way of displaying 
hori menu.


Thanks



  




Re: Horizontal menu

2008-11-13 Thread adithi agarwal

Cant we do it without CSS
--- On Fri, 11/14/08, Adrian Crum <[EMAIL PROTECTED]> wrote:
From: Adrian Crum <[EMAIL PROTECTED]>
Subject: Re: Horizontal menu
To: user@ofbiz.apache.org
Date: Friday, November 14, 2008, 12:48 AM

The horizontal attribute is not used any more. Use one of the horizontal menu
CSS styles.

-Adrian

adithi agarwal wrote:
> Hi Iam trying to create a menu bar. refering to Examplemenus.xml. I am
able to display vertical menu but not horizontal..though I have used the
attribute orientation="horizontal"
> Can anyone please  tell me if there is any other way of displaying hori
menu.
> 
> Thanks
> 
> 
> 
>   


  

Re: Horizontal menu

2008-11-13 Thread Adrian Crum
The horizontal attribute is not used any more. Use one of the horizontal 
menu CSS styles.


-Adrian

adithi agarwal wrote:
Hi 
Iam trying to create a menu bar. refering to Examplemenus.xml. I am able to display vertical menu but not horizontal..though I have used the attribute orientation="horizontal"

Can anyone please  tell me if there is any other way of displaying hori menu.

Thanks



  


Horizontal menu

2008-11-13 Thread adithi agarwal
Hi 
Iam trying to create a menu bar. refering to Examplemenus.xml. I am able to 
display vertical menu but not horizontal..though I have used the attribute 
orientation="horizontal"
Can anyone please  tell me if there is any other way of displaying hori menu.

Thanks



  

Re: auto-field-service

2008-11-13 Thread adithi agarwal
Thankyou very much for the reply

--- On Thu, 11/13/08, Surya Kusumakar <[EMAIL PROTECTED]> wrote:
From: Surya Kusumakar <[EMAIL PROTECTED]>
Subject: Re: auto-field-service
To: user@ofbiz.apache.org
Date: Thursday, November 13, 2008, 9:23 AM

Hello Adithi ,

 automatically declare fields according to a service
defination.If we specify a map-name then it will use map-name for each of the
fields that it created . So, this is basically a alternate to explicitly
declaring each field.So, in  it will take all of the
incoming service attributes to fill up the form.And based on the field type it
will create a field for those either for editing them,for finding them,for
displaying them or they can all be hidden fields. 

--
Regards
Surya Kusumakar
Hotwax Media Pvt. Ltd
www.hotwaxmedia.com


- Original Message -
From: "ian tabangay" <[EMAIL PROTECTED]>
To: user@ofbiz.apache.org, [EMAIL PROTECTED]
Sent: Thursday, November 13, 2008 8:36:24 AM GMT +05:30 Chennai, Kolkata,
Mumbai, New Delhi
Subject: Re: auto-field-service

it fills up your form with the fields of a service as defined in the service
definition. see service-def.xml

~ ian

On Thu, Nov 13, 2008 at 2:45 AM, adithi agarwal
<[EMAIL PROTECTED]>wrote:

> Hi
>
> Can someone tell what is the functionality of auto-field-service tag in
> Example Forms.xml in EditExample form
>
>
> Thankyou



  

Re: Help for install ofbiz on Websphere.

2008-11-13 Thread Bravo Pal
Thanks Jacques for the expeditious reply. I tried it but still getting same
error.

On Thu, Nov 13, 2008 at 7:01 PM, Jacques Le Roux <
[EMAIL PROTECTED]> wrote:

> At 1st glance : beware of too long path on Windows I'd recommend using
>   c:\wasce
> in place of
>   C:\Program Files (x86)\IBM\WebSphere\AppServerCommunityEdition
> Jacques
>
> From: "Bravo Pal" <[EMAIL PROTECTED]>
>
>  Hi everyone,
>> I am newbie for ofbiz, I am trying to install ofbiz on Websphere by
>> reading
>> instructions form  here
>> http://docs.ofbiz.org/pages/viewpage.action?pageId=4098
>>
>> I am getting following error whenever I am going to run java -jar
>> ofbiz.jar
>> -setup wasce2
>>
>> 2008-11-13 18:26:39,562 (main) [ GenerateContainer.java:456:INFO ] Parsing
>> template :
>> C:\dev\ofbizapps\new_ofbiz\framework\appserver\templates\wasce2\README
>> Currently undeploying ofbiz, using : <> manager undeploy ofbiz>>, please wait ... Using GERONIMO_BASE: C:\Program
>> Files (x86)\IBM\WebSphere\AppServerCommunityEdition Using GERONIMO_HOME:
>> C:\Program Files (x86)\IBM\WebSphere\AppServerCommunityEdition Using
>> GERONIMO_TMPDIR: var\temp Using JRE_HOME: C:\Program Files
>> (x86)\Java\jre1.5.0_16 Error: Unable to connect to server at
>> deployer:geronimo:jmx -- Failed to retrieve RMIServer stub:
>> javax.naming.ServiceUnavailableException [Root exception is
>> java.rmi.ConnectException: Connection refused to host: localhost; nested
>> exception is: java.net.ConnectException: Connection refused: connect]
>> javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException:
>> Failed to retrieve RMIServer stub:
>> javax.naming.ServiceUnavailableException
>> [Root exception is java.rmi.ConnectException: Connection refused to host:
>> localhost; nested exception is: java.net.ConnectException: Connection
>> refused: connect] at
>>
>> org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.newRemoteDeploymentManager(BaseDeploymentFactory.java:190)
>> at
>>
>> org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.getDeploymentManager(BaseDeploymentFactory.java:140)
>> at
>>
>> javax.enterprise.deploy.shared.factories.DeploymentFactoryManager.getDeploymentManager(DeploymentFactoryManager.java:111)
>> at
>>
>> org.apache.geronimo.deployment.cli.ServerConnection.tryToConnect(ServerConnection.java:199)
>> at
>>
>> org.apache.geronimo.deployment.cli.ServerConnection.(ServerConnection.java:95)
>> at
>> org.apache.geronimo.deployment.cli.DeployTool.execute(DeployTool.java:161)
>> at
>>
>> org.apache.geronimo.kernel.util.MainConfigurationBootstrapper.main(MainConfigurationBootstrapper.java:45)
>> at org.apache.geronimo.cli.AbstractCLI.executeMain(AbstractCLI.java:67) at
>> org.apache.geronimo.cli.deployer.DeployerCLI.main(DeployerCLI.java:31)
>> Caused by: java.io.IOException: Failed to retrieve RMIServer stub:
>> javax.naming.ServiceUnavailableException [Root exception is
>> java.rmi.ConnectException: Connection refu sed to host: localhost; nested
>> exception is: java.net.ConnectException: Connection refused: connect] at
>> javax.management.remote.rmi.RMIConnector.connect(Unknown Source) at
>> javax.management.remote.JMXConnectorFactory.connect(Unknown Source) at
>>
>> org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.newRemoteDeploymentManager(BaseDeploymentFactory.java:182)
>> ... 8 more Caused by: javax.naming.ServiceUnavailableException [Root
>> exception is java.rmi.ConnectException: Connection refused to host:
>> localhost; nested exception is: java.net.ConnectException: Connection
>> refused: connect] at
>> com.sun.jndi.rmi.registry.RegistryContext.lookup(Unknown Source) at
>> com.sun.jndi.toolkit.url.GenericURLContext.lookup(Unknown Source) at
>> javax.naming.InitialContext.lookup(Unknown Source) at
>> javax.management.remote.rmi.RMIConnector.findRMIServerJNDI(Unknown Source)
>> at javax.management.remote.rmi.RMIConnector.findRMIServer(Unknown Source)
>> ... 11 more Caused by: java.rmi.ConnectException: Connection refused to
>> host: localhost; nested exception is: java.net.ConnectException:
>> Connection
>> refused: connect at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown
>> Source) at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown
>> Source)
>> at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source) at
>> sun.rmi.server.UnicastRef.newCall(Unknown Source) at
>> sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source) ... 16 more
>> Caused
>> by: java.net.ConnectException: Connection refused: connect at
>> java.net.PlainSocketImpl.socketConnect(Native Method) at
>> java.net.PlainSocketImpl.doConnect(Unknown Source) at
>> java.net.PlainSocketImpl.connectToAddress(Unknown Source) at
>> java.net.PlainSocketImpl.connect(Unknown Source) at
>> java.net.SocksSocketImpl.connect(Unknown Source) at
>> java.net.Socket.connect(Unknown Source) at java.net.Socket.connect(Unknown
>> Source) at java.net.Socket.(Unknown Source) at
>> java.net.Socket.(Unknown Source) a

Re: Help for install ofbiz on Websphere.

2008-11-13 Thread Jacques Le Roux

At 1st glance : beware of too long path on Windows I'd recommend using
   c:\wasce
in place of
   C:\Program Files (x86)\IBM\WebSphere\AppServerCommunityEdition 


Jacques

From: "Bravo Pal" <[EMAIL PROTECTED]>

Hi everyone,
I am newbie for ofbiz, I am trying to install ofbiz on Websphere by reading
instructions form  here
http://docs.ofbiz.org/pages/viewpage.action?pageId=4098

I am getting following error whenever I am going to run java -jar ofbiz.jar
-setup wasce2

2008-11-13 18:26:39,562 (main) [ GenerateContainer.java:456:INFO ] Parsing
template :
C:\dev\ofbizapps\new_ofbiz\framework\appserver\templates\wasce2\README
Currently undeploying ofbiz, using : <>, please wait ... Using GERONIMO_BASE: C:\Program
Files (x86)\IBM\WebSphere\AppServerCommunityEdition Using GERONIMO_HOME:
C:\Program Files (x86)\IBM\WebSphere\AppServerCommunityEdition Using
GERONIMO_TMPDIR: var\temp Using JRE_HOME: C:\Program Files
(x86)\Java\jre1.5.0_16 Error: Unable to connect to server at
deployer:geronimo:jmx -- Failed to retrieve RMIServer stub:
javax.naming.ServiceUnavailableException [Root exception is
java.rmi.ConnectException: Connection refused to host: localhost; nested
exception is: java.net.ConnectException: Connection refused: connect]
javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException:
Failed to retrieve RMIServer stub: javax.naming.ServiceUnavailableException
[Root exception is java.rmi.ConnectException: Connection refused to host:
localhost; nested exception is: java.net.ConnectException: Connection
refused: connect] at
org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.newRemoteDeploymentManager(BaseDeploymentFactory.java:190)
at
org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.getDeploymentManager(BaseDeploymentFactory.java:140)
at
javax.enterprise.deploy.shared.factories.DeploymentFactoryManager.getDeploymentManager(DeploymentFactoryManager.java:111)
at
org.apache.geronimo.deployment.cli.ServerConnection.tryToConnect(ServerConnection.java:199)
at
org.apache.geronimo.deployment.cli.ServerConnection.(ServerConnection.java:95)
at
org.apache.geronimo.deployment.cli.DeployTool.execute(DeployTool.java:161)
at
org.apache.geronimo.kernel.util.MainConfigurationBootstrapper.main(MainConfigurationBootstrapper.java:45)
at org.apache.geronimo.cli.AbstractCLI.executeMain(AbstractCLI.java:67) at
org.apache.geronimo.cli.deployer.DeployerCLI.main(DeployerCLI.java:31)
Caused by: java.io.IOException: Failed to retrieve RMIServer stub:
javax.naming.ServiceUnavailableException [Root exception is
java.rmi.ConnectException: Connection refu sed to host: localhost; nested
exception is: java.net.ConnectException: Connection refused: connect] at
javax.management.remote.rmi.RMIConnector.connect(Unknown Source) at
javax.management.remote.JMXConnectorFactory.connect(Unknown Source) at
org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.newRemoteDeploymentManager(BaseDeploymentFactory.java:182)
... 8 more Caused by: javax.naming.ServiceUnavailableException [Root
exception is java.rmi.ConnectException: Connection refused to host:
localhost; nested exception is: java.net.ConnectException: Connection
refused: connect] at
com.sun.jndi.rmi.registry.RegistryContext.lookup(Unknown Source) at
com.sun.jndi.toolkit.url.GenericURLContext.lookup(Unknown Source) at
javax.naming.InitialContext.lookup(Unknown Source) at
javax.management.remote.rmi.RMIConnector.findRMIServerJNDI(Unknown Source)
at javax.management.remote.rmi.RMIConnector.findRMIServer(Unknown Source)
... 11 more Caused by: java.rmi.ConnectException: Connection refused to
host: localhost; nested exception is: java.net.ConnectException: Connection
refused: connect at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown
Source) at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source) at
sun.rmi.server.UnicastRef.newCall(Unknown Source) at
sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source) ... 16 more Caused
by: java.net.ConnectException: Connection refused: connect at
java.net.PlainSocketImpl.socketConnect(Native Method) at
java.net.PlainSocketImpl.doConnect(Unknown Source) at
java.net.PlainSocketImpl.connectToAddress(Unknown Source) at
java.net.PlainSocketImpl.connect(Unknown Source) at
java.net.SocksSocketImpl.connect(Unknown Source) at
java.net.Socket.connect(Unknown Source) at java.net.Socket.connect(Unknown
Source) at java.net.Socket.(Unknown Source) at
java.net.Socket.(Unknown Source) at
sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown Source)
at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown
Source) ... 21 more Currently deploying ofbiz, using : <>,
please wait ... 2008-11-13 18:26:43,406 (main) [
GenerateContainer.java:294:INFO ] ofbiz undeployment ended Using
GERONIMO_BASE: C:\Program Files
(x86)\IBM\WebSphere\AppServerCommunityEdition Using GERONIMO_HOME:
C:\Program Files (x86)\IBM\

Help for install ofbiz on Websphere.

2008-11-13 Thread Bravo Pal
Hi everyone,
I am newbie for ofbiz, I am trying to install ofbiz on Websphere by reading
instructions form  here
http://docs.ofbiz.org/pages/viewpage.action?pageId=4098

I am getting following error whenever I am going to run java -jar ofbiz.jar
-setup wasce2

2008-11-13 18:26:39,562 (main) [ GenerateContainer.java:456:INFO ] Parsing
template :
C:\dev\ofbizapps\new_ofbiz\framework\appserver\templates\wasce2\README
Currently undeploying ofbiz, using : <>, please wait ... Using GERONIMO_BASE: C:\Program
Files (x86)\IBM\WebSphere\AppServerCommunityEdition Using GERONIMO_HOME:
C:\Program Files (x86)\IBM\WebSphere\AppServerCommunityEdition Using
GERONIMO_TMPDIR: var\temp Using JRE_HOME: C:\Program Files
(x86)\Java\jre1.5.0_16 Error: Unable to connect to server at
deployer:geronimo:jmx -- Failed to retrieve RMIServer stub:
javax.naming.ServiceUnavailableException [Root exception is
java.rmi.ConnectException: Connection refused to host: localhost; nested
exception is: java.net.ConnectException: Connection refused: connect]
javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException:
Failed to retrieve RMIServer stub: javax.naming.ServiceUnavailableException
[Root exception is java.rmi.ConnectException: Connection refused to host:
localhost; nested exception is: java.net.ConnectException: Connection
refused: connect] at
org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.newRemoteDeploymentManager(BaseDeploymentFactory.java:190)
at
org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.getDeploymentManager(BaseDeploymentFactory.java:140)
at
javax.enterprise.deploy.shared.factories.DeploymentFactoryManager.getDeploymentManager(DeploymentFactoryManager.java:111)
at
org.apache.geronimo.deployment.cli.ServerConnection.tryToConnect(ServerConnection.java:199)
at
org.apache.geronimo.deployment.cli.ServerConnection.(ServerConnection.java:95)
at
org.apache.geronimo.deployment.cli.DeployTool.execute(DeployTool.java:161)
at
org.apache.geronimo.kernel.util.MainConfigurationBootstrapper.main(MainConfigurationBootstrapper.java:45)
at org.apache.geronimo.cli.AbstractCLI.executeMain(AbstractCLI.java:67) at
org.apache.geronimo.cli.deployer.DeployerCLI.main(DeployerCLI.java:31)
Caused by: java.io.IOException: Failed to retrieve RMIServer stub:
javax.naming.ServiceUnavailableException [Root exception is
java.rmi.ConnectException: Connection refu sed to host: localhost; nested
exception is: java.net.ConnectException: Connection refused: connect] at
javax.management.remote.rmi.RMIConnector.connect(Unknown Source) at
javax.management.remote.JMXConnectorFactory.connect(Unknown Source) at
org.apache.geronimo.deployment.plugin.factories.BaseDeploymentFactory.newRemoteDeploymentManager(BaseDeploymentFactory.java:182)
... 8 more Caused by: javax.naming.ServiceUnavailableException [Root
exception is java.rmi.ConnectException: Connection refused to host:
localhost; nested exception is: java.net.ConnectException: Connection
refused: connect] at
com.sun.jndi.rmi.registry.RegistryContext.lookup(Unknown Source) at
com.sun.jndi.toolkit.url.GenericURLContext.lookup(Unknown Source) at
javax.naming.InitialContext.lookup(Unknown Source) at
javax.management.remote.rmi.RMIConnector.findRMIServerJNDI(Unknown Source)
at javax.management.remote.rmi.RMIConnector.findRMIServer(Unknown Source)
... 11 more Caused by: java.rmi.ConnectException: Connection refused to
host: localhost; nested exception is: java.net.ConnectException: Connection
refused: connect at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown
Source) at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source) at
sun.rmi.server.UnicastRef.newCall(Unknown Source) at
sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source) ... 16 more Caused
by: java.net.ConnectException: Connection refused: connect at
java.net.PlainSocketImpl.socketConnect(Native Method) at
java.net.PlainSocketImpl.doConnect(Unknown Source) at
java.net.PlainSocketImpl.connectToAddress(Unknown Source) at
java.net.PlainSocketImpl.connect(Unknown Source) at
java.net.SocksSocketImpl.connect(Unknown Source) at
java.net.Socket.connect(Unknown Source) at java.net.Socket.connect(Unknown
Source) at java.net.Socket.(Unknown Source) at
java.net.Socket.(Unknown Source) at
sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown Source)
at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown
Source) ... 21 more Currently deploying ofbiz, using : <>,
please wait ... 2008-11-13 18:26:43,406 (main) [
GenerateContainer.java:294:INFO ] ofbiz undeployment ended Using
GERONIMO_BASE: C:\Program Files
(x86)\IBM\WebSphere\AppServerCommunityEdition Using GERONIMO_HOME:
C:\Program Files (x86)\IBM\WebSphere\AppServerCommunityEdition Using
GERONIMO_TMPDIR: var\temp Using JRE_HOME: C:\Program Files
(x86)\Java\jre1.5.0_16 Error: Unable to connect to server at
deployer:geronimo:jmx -- Failed to retrieve RMIServ

Re: One page checkout

2008-11-13 Thread Pranay Pandey
Abhishek if you really want to do that then first you will have to find those 
gaps which may be there in the existing one page checkout of ofbiz and yours 
one. As this checkout follows the standards of business processes and we have 
to think about all the scenarios while writing a checkout process. 

This checkout process is having maximum possible options available in it, and 
can be reused as per the custom need. If you find few gaps then opening a Jira 
issue will be a good thing to do then onwards by discussing them your patch can 
be committed by one of the committers, but it should not be affecting other 
places. 

You will have to keep in mind all the scenarios while doing so. 




Thanks & Regards 
-- 
Pranay Pandey 

- Original Message - 
From: "Abhishake Agarwal" <[EMAIL PROTECTED]> 
To: user@ofbiz.apache.org 
Sent: Thursday, November 13, 2008 3:26:46 AM GMT -08:00 US/Canada Pacific 
Subject: Re: One page checkout 

Thanks, I will try to put more functionality in it and will soon put the 
patch in jira 


On Thu, Nov 13, 2008 at 4:23 PM, Pranay Pandey < 
[EMAIL PROTECTED]> wrote: 

> Hello Abhishek, 
> 
> I also went through this. This really seems cool. But definitely there are 
> few things which are better than the one we already have in OFBiz, Like I 
> can tell is the validations at the time when a required field left 
> blank.(User friendly validation). 
> Definitely there may be few things which you can patch up the existing one 
> page checkout which is already there. 
> 
> 
> Thanks & Regards 
> -- 
> Pranay Pandey 
> 
> 
> On Nov 12, 2008, at 6:45 PM, Abhishake Agarwal wrote: 
> 
> Hi, 
>> 
>> I have implemented one page checkout which has less number clicks than 
>> implemented in ofbiz. 
>> Please let me know if this can be included in obfiz. 
>> 
>> Please look at the implementation at 
>> https://www.battech.co.uk/shop/control/checkout. 
>> 
>> Regards, 
>> Abhishake 
>> 
> 
> 


Re: One page checkout

2008-11-13 Thread Abhishake Agarwal
Thanks, I will try to put more functionality in it and will soon put the
patch in jira


On Thu, Nov 13, 2008 at 4:23 PM, Pranay Pandey <
[EMAIL PROTECTED]> wrote:

> Hello Abhishek,
>
> I also went through this. This really seems cool. But definitely there are
> few things which are better than the one we already have in OFBiz, Like I
> can tell is the validations at the time when a required field left
> blank.(User friendly validation).
> Definitely there may be few things which you can patch up the existing one
> page checkout which is already there.
>
>
> Thanks & Regards
> --
> Pranay Pandey
>
>
> On Nov 12, 2008, at 6:45 PM, Abhishake Agarwal wrote:
>
>  Hi,
>>
>> I have implemented one page checkout which has less number clicks than
>> implemented in ofbiz.
>> Please let me know if this can be included in obfiz.
>>
>> Please look at the implementation at
>> https://www.battech.co.uk/shop/control/checkout.
>>
>> Regards,
>> Abhishake
>>
>
>


Re: One page checkout

2008-11-13 Thread Pranay Pandey

Hello Abhishek,

I also went through this. This really seems cool. But definitely there  
are few things which are better than the one we already have in OFBiz,  
Like I can tell is the validations at the time when a required field  
left blank.(User friendly validation).
Definitely there may be few things which you can patch up the existing  
one page checkout which is already there.



Thanks & Regards
--
Pranay Pandey


On Nov 12, 2008, at 6:45 PM, Abhishake Agarwal wrote:


Hi,

I have implemented one page checkout which has less number clicks than
implemented in ofbiz.
Please let me know if this can be included in obfiz.

Please look at the implementation at
https://www.battech.co.uk/shop/control/checkout.

Regards,
Abhishake




Re: Address match map is used for?

2008-11-13 Thread BJ Freeman
at this point is shows how to import and search. More of a code model.
beyond that it has no functionality.
if I ever get the postal stuff done, I plan to expand it to search on
the postal_address.
http://docs.ofbiz.org/display/OFBIZ/Address+Schema+Change+Proposal

Vu Hong Thuan sent the following on 11/13/2008 12:16 AM:
> Hi all,
> I'm newbie to ofbiz. In the party application, feature "address match map"
> is used ? I really don't know how to use this function. Anyone can give me
> some document or something like this.
> Thanks a lot.
> 


Re: One page checkout

2008-11-13 Thread BJ Freeman
The basis of ofbiz is to provide as much functionality ,so developers
like me an you can pick and choose what we want to use.
if you think you implementation is something you like to share then open
a jira and put in a patch. Then it will be there if someone want to use
your version. Maybe someday we will have a contribution section for
things like this. However we need a lot more man power before that happens.
It will probably not be put in the trunk, unless it adds functionality,
to the already existing one.


Abhishake Agarwal sent the following on 11/12/2008 10:31 PM:
> Hi,
> 
> Yes the implementation is according to client requirement, but as per my
> experience most of the client needs only this much functionality and no
> option to add credit card.
> 
> I think this may be suitable for such kind of user.
> 
> Regards,
> Abhishake
> 
> 
> On Thu, Nov 13, 2008 at 11:31 AM, Chirag Manocha <
> [EMAIL PROTECTED]> wrote:
> 
>> Abhishake,
>> I saw your implementation. Its good one that less clicks are required as
>> per your implementation.
>> But we cant put it in OFBiz because OFBiz is a open source project and
>> there should be standard implementation so that anyone can reuse it and as
>> per the customize requirements, developer can make customize code short.
>> With this there should be each and every standard functionality, which can
>> be required in development, implemented in OFBiz.
>>
>> Regards
>> ---
>> Chirag Manocha
>> HotWax Media Pvt. Ltd.
>> www.hotwaxmedia.com
>> email :- [EMAIL PROTECTED]
>> contact :- +91.982.631.9099
>>
> 


Re: FreemarkerWorker Expression definition

2008-11-13 Thread madppiper

Yup, that was it. I updated to the latest trunk and everything is in place
for a serious reconfiguration ;)

I tried to do as planned and use the applicationTransforms.properties file.
However, the Magnolia-cms  doesn't seem to be using
Freemarker-Transform-Classes at all. But a mix of context filters and
freemarker interpretation classes (yes, using the freemarker intepreter
class only resolves in blank spaces - I think it it must be because no
context is specified)

If I still want to integrate Magnolia properly as part of the ofbiz system,
would there be another approach for letting the magnolia system handle parts
of the Freemarker definitions and OFBiz the other? 



BJ Freeman wrote:
> 
> you look like your still in ver 4.0 code.
> I suggest you check out he newest in a separate folders then migrate any
> custom code. there are a lot of changes since 4.0.
> the first being running java jdk 1.5 or higher.
> 
> madppiper sent the following on 11/6/2008 8:48 AM:
>> hmm,
>> 
>> the file doesn't exist in my trunkversion (13595), do i need to upgrade
>> for
>> that file?
>> 
>> 
>> 
>> Adrian Crum-2 wrote:
>>> If the CMS classes are in the OFBiz classpath, then you can add
>>> transforms
>>> to the framework/webapp/config/applicationTransforms.properties file and
>>> OFBiz will load them automatically.
>>>
>>> -Adrian
>>>
>>>
>>> --- On Thu, 11/6/08, madppiper <[EMAIL PROTECTED]> wrote:
>>>
 From: madppiper <[EMAIL PROTECTED]>
 Subject: FreemarkerWorker Expression definition
 To: user@ofbiz.apache.org
 Date: Thursday, November 6, 2008, 3:55 AM
 I am trying to integrate a different cms to ofbiz, which
 also runs on
 freemarker files. The basic idea is to share the different
 ftls (at least
 the ones generated by the cms). I could setup the cms
 (magnolia) just fine
 and I could easily access the magnolia ftl files just fine
 from within
 ofbiz. However, of course, Ofbiz does not read the
 freemarker expressions as
 i hoped it would (up to that point i did not realize that
 freemarker
 expressions need to be defined within java classes prior
 usage) and I ended
 up receiving errors in return.

 So much for the background... now: I was thinking that
 since I do have
 access to the cms and I could easily access the included
 java files,
 wouldn't it be possible to initiate the java classes
 from within the
 FreemarkerWorker.java file and add the needed expressions
 to the very same?




 If I do understand the matter correctly, expressions are
 added by the
 following statement from within FreemarkerWorker:

   ftlTransforms.put("ofbizUrl",
 loader.loadClass("org.ofbiz.webapp.ftl.OfbizUrlTransform").newInstance());
  
 -- 
 View this message in context:
 http://www.nabble.com/FreemarkerWorker-Expression-definition-tp20359714p20359714.html
 Sent from the OFBiz - User mailing list archive at
 Nabble.com.
>>>
>>>   
>>>
>>>
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/FreemarkerWorker-Expression-definition-tp20359714p20477122.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: Address match map is used for?

2008-11-13 Thread Vu Hong Thuan
There is no information in
http://docs.ofbiz.org/display/OFBIZ/Address+Match+Map

2008/11/13 Vu Hong Thuan <[EMAIL PROTECTED]>

> :D, sorry, someone.
> "address match map", what is that?
>
> 2008/11/13 Jacques Le Roux <[EMAIL PROTECTED]>
>
> Good question, anybody an answer ?
>>
>> Jacques
>>
>> From: "Vu Hong Thuan" <[EMAIL PROTECTED]>
>>
>>  Hi all,
>>> I'm newbie to ofbiz. In the party application, feature "address match
>>> map"
>>> is used ? I really don't know how to use this function. Anyone can give
>>> me
>>> some document or something like this.
>>> Thanks a lot.
>>>
>>> --
>>> Vũ Hồng Thuận
>>> Công ty Phần mềm và Truyền thông Việt Nam, NAMMEDIA, INC.
>>> Email: [EMAIL PROTECTED]
>>> Web: http://www.nammedia.com
>>> ĐT: (84)-04-5680964 - Fax: (84)-04-5681083
>>> DĐ: 0984328513
>>>
>>
>>
>
>
> --
> Vũ Hồng Thuận
> Công ty Phần mềm và Truyền thông Việt Nam, NAMMEDIA, INC.
> Email: [EMAIL PROTECTED]
> Web: http://www.nammedia.com
> ĐT: (84)-04-5680964 - Fax: (84)-04-5681083
> DĐ: 0984328513
>
> Vu Hong Thuan
> Vietnam Software and Communication Company. NAMMEDIA. INC
> Email: [EMAIL PROTECTED]
> Web: http://www.nammedia.com
> Phone: (84)-04-5680964 - Fax: (84)-04-5681083
> Mobile: (84)-984328513
>



-- 
Vũ Hồng Thuận
Công ty Phần mềm và Truyền thông Việt Nam, NAMMEDIA, INC.
Email: [EMAIL PROTECTED]
Web: http://www.nammedia.com
ĐT: (84)-04-5680964 - Fax: (84)-04-5681083
DĐ: 0984328513

Vu Hong Thuan
Vietnam Software and Communication Company. NAMMEDIA. INC
Email: [EMAIL PROTECTED]
Web: http://www.nammedia.com
Phone: (84)-04-5680964 - Fax: (84)-04-5681083
Mobile: (84)-984328513


Re: Address match map is used for?

2008-11-13 Thread Vu Hong Thuan
:D, sorry, someone.
"address match map", what is that?

2008/11/13 Jacques Le Roux <[EMAIL PROTECTED]>

> Good question, anybody an answer ?
>
> Jacques
>
> From: "Vu Hong Thuan" <[EMAIL PROTECTED]>
>
>  Hi all,
>> I'm newbie to ofbiz. In the party application, feature "address match map"
>> is used ? I really don't know how to use this function. Anyone can give me
>> some document or something like this.
>> Thanks a lot.
>>
>> --
>> Vũ Hồng Thuận
>> Công ty Phần mềm và Truyền thông Việt Nam, NAMMEDIA, INC.
>> Email: [EMAIL PROTECTED]
>> Web: http://www.nammedia.com
>> ĐT: (84)-04-5680964 - Fax: (84)-04-5681083
>> DĐ: 0984328513
>>
>
>


-- 
Vũ Hồng Thuận
Công ty Phần mềm và Truyền thông Việt Nam, NAMMEDIA, INC.
Email: [EMAIL PROTECTED]
Web: http://www.nammedia.com
ĐT: (84)-04-5680964 - Fax: (84)-04-5681083
DĐ: 0984328513

Vu Hong Thuan
Vietnam Software and Communication Company. NAMMEDIA. INC
Email: [EMAIL PROTECTED]
Web: http://www.nammedia.com
Phone: (84)-04-5680964 - Fax: (84)-04-5681083
Mobile: (84)-984328513


Re: Address match map is used for?

2008-11-13 Thread Jacques Le Roux

Good question, anybody an answer ?

Jacques

From: "Vu Hong Thuan" <[EMAIL PROTECTED]>

Hi all,
I'm newbie to ofbiz. In the party application, feature "address match map"
is used ? I really don't know how to use this function. Anyone can give me
some document or something like this.
Thanks a lot.

--
Vũ Hồng Thuận
Công ty Phần mềm và Truyền thông Việt Nam, NAMMEDIA, INC.
Email: [EMAIL PROTECTED]
Web: http://www.nammedia.com
ĐT: (84)-04-5680964 - Fax: (84)-04-5681083
DĐ: 0984328513




Address match map is used for?

2008-11-13 Thread Vu Hong Thuan
Hi all,
I'm newbie to ofbiz. In the party application, feature "address match map"
is used ? I really don't know how to use this function. Anyone can give me
some document or something like this.
Thanks a lot.

-- 
Vũ Hồng Thuận
Công ty Phần mềm và Truyền thông Việt Nam, NAMMEDIA, INC.
Email: [EMAIL PROTECTED]
Web: http://www.nammedia.com
ĐT: (84)-04-5680964 - Fax: (84)-04-5681083
DĐ: 0984328513

Vu Hong Thuan
Vietnam Software and Communication Company. NAMMEDIA. INC
Email: [EMAIL PROTECTED]
Web: http://www.nammedia.com
Phone: (84)-04-5680964 - Fax: (84)-04-5681083
Mobile: (84)-984328513