Sending emails to Contact List

2009-04-09 Thread Shweta Singhai
Hi All,

I have created a Contact List and also  associated parties with this
list. Now I want to send an email  to the member of contact list. I
searched on mailing list archive and find  the solution in this link:
http://apache.markmail.org/search/?q=contactList#query:contactList%20list%3Aorg.apache.ofbiz.user%20type%3Ausers+page:1+mid:ziaa6kot4d2fqsm5+state:results

I performed the action according to the above description , but when I
create a new CommEvent with a status Entered and after it when I
update it then there is no option for status In-Progress.

So  emails are not triggered  to all the subscribed members of the ContactList.

Does any other  functionality exist in Ofbiz for this?  Please share it with me.




Thanks,

Shweta


Converting translation from properties to XML

2009-04-09 Thread Ján Valkovič
Hi all,
how to convert language files from old properties format to new xml
format? I don't found any FAQ for this
Thanks in advance

ya




Re: Secure URLs end for link, hyperlink and sub-hyperlink

2009-04-09 Thread Angelo Matarazzo

Hi Jacques, 
I understood the problem.
I have looked at RequestHandler.java line 184.
At line 179 there is   if (!request.isSecure()  requestMap.securityHttps).
Now with http://localhost:8080;  request.isSecure() is false but
requestMap.securityHttps depends on ConfigXMLReader.java at line 384
'this.securityHttps = true.equals(securityElement.getAttribute(https));'
In your opinion is it good idea change ConfigXMLReader.java in this way?


-  if (securityElement != null) {
-   this.securityHttps =
true.equals(securityElement.getAttribute(https));

 

+boolean useHttpsDefault =
UtilProperties.propertyValueEqualsIgnoreCase(url.properties,
port.https.enabled, Y);


+if (securityElement != null) {
+ if (useHttpsDefault))
  this.securityHttps =
true.equals(securityElement.getAttribute(https));
+ 
+ else {
+  this.securityHttps = false;
+ } 

Thanks,
Angelo



jacques.le.roux wrote:
 
 After the changes recently introduced. The campaign to secure URLs for
 link, hyperlink and sub-hyperlink is now finished.
 Please report any related errors you may cross
 
 Thanks
 
 Jacques
 
 

-- 
View this message in context: 
http://www.nabble.com/Secure-URLs-end-for-link%2C-hyperlink-and-sub-hyperlink-tp22894715p22966638.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: Converting translation from properties to XML

2009-04-09 Thread Jacques Le Roux

Unfortunately this work has been done by students (working with Hans) and the 
script is not available anymore

Jacques

From: Ján Valkovic yan...@samsonzv.sk

Hi all,
how to convert language files from old properties format to new xml
format? I don't found any FAQ for this
Thanks in advance

ya







Re: workflow engine

2009-04-09 Thread Jacques Le Roux
Actually not, OFBiz gave up on workflow engines. Shark was implemented last but never really used in OFBiz. Instead of using a 
workflow engine, OFBiz use an Event Driven Architecture (EDA) and ECAs (SECA, EECA, MECA) are used in OFBiz to drive the workflow. I 
will create a FAQ for that as this question come over and over


Jacques

From: Michael Xu (xudong) dong...@wizitsoft.com

As I know, ofbiz uses its own workflow engine. You can get more information
here: http://ofbiz.apache.org/docs/workflow.html

--
Regards,
Michael Xu (xudong)
www.wizitsoft.com | Office: (8610) 6267 0615 ext 806 | Mobile: (86) 135 0135
9807 | Fax: (8610) 62670096


On Thu, Apr 9, 2009 at 11:40 AM, Jack Liu jack@aicent.com wrote:


Hi, all
What's the recommended workflow engine in OFBiz?
Is it Shark?


Best Regards,

Jack Liu









RE: workflow engine

2009-04-09 Thread Jack Liu
Thank you.
I hope this FAQ will come out as soon as possible.

-Original Message-
From: Jacques Le Roux [mailto:jacques.le.r...@les7arts.com] 
Sent: 2009年4月9日 18:05
To: user@ofbiz.apache.org
Subject: Re: workflow engine

Actually not, OFBiz gave up on workflow engines. Shark was implemented last but 
never really used in OFBiz. Instead of using a 
workflow engine, OFBiz use an Event Driven Architecture (EDA) and ECAs (SECA, 
EECA, MECA) are used in OFBiz to drive the workflow. I 
will create a FAQ for that as this question come over and over

Jacques

From: Michael Xu (xudong) dong...@wizitsoft.com
 As I know, ofbiz uses its own workflow engine. You can get more information
 here: http://ofbiz.apache.org/docs/workflow.html

 --
 Regards,
 Michael Xu (xudong)
 www.wizitsoft.com | Office: (8610) 6267 0615 ext 806 | Mobile: (86) 135 0135
 9807 | Fax: (8610) 62670096


 On Thu, Apr 9, 2009 at 11:40 AM, Jack Liu jack@aicent.com wrote:

 Hi, all
 What's the recommended workflow engine in OFBiz?
 Is it Shark?


 Best Regards,

 Jack Liu


 




Re: Converting translation from properties to XML

2009-04-09 Thread Jeroen van der Wal
We've created a tool to import .po (gettext) files into the Ofbiz XML
label files. It shouldn't be hard to use this for property files as
well.

See this issue for details and source code:
https://issues.apache.org/jira/browse/OFBIZ-2008

-Jeroen



2009/4/9 Ján Valkovič yan...@samsonzv.sk:
 Hi all,
 how to convert language files from old properties format to new xml
 format? I don't found any FAQ for this
 Thanks in advance

 ya





Re: excel sheet implementation

2009-04-09 Thread Ashish Vijaywargiya

Hello Harish,

Following commit notification will be your friend.
r663581  r663627.

The how to steps are attached in the document available at jira issue 
OFBIZ-1810. (https://issues.apache.org/jira/browse/OFBIZ-1810)


--
Ashish

harish84 wrote:

i am reading excel sheet using poi.i am getting all the values in console but
when i use create method it gets stores in only one column.it should get
store in corresponding columns.

  


smime.p7s
Description: S/MIME Cryptographic Signature


Re: excel sheet implementation

2009-04-09 Thread Ashish Vijaywargiya

Direct link to see the commits :

r663581
http://www.nabble.com/svn-commit%3A-r663581---in--ofbiz-trunk-specialpurpose-assetmaint%3A-build.xml-data-ScheduleUploadJob.xml-servicedef-services.xml-src-org-ofbiz-poi--src-org-ofbiz-poi-FileImportHelper.java-src-org-ofbiz-poi-FileImportService.java-td17668684.html#a17668684

r663627
http://www.nabble.com/svn-commit%3A-r663627---in--ofbiz-trunk%3A-applications-product-data--applications-product-servicedef--applications-product-src-org-ofbiz-product-spreadsheetimport--specialpurpose-assetmaint--specialpurpose-assetmaint-data--specialpurpose-assetmaint-servic...-td17671151.html#a17671151

--
Ashish


harish84 wrote:

i am reading excel sheet using poi.i am getting all the values in console but
when i use create method it gets stores in only one column.it should get
store in corresponding columns.

  


smime.p7s
Description: S/MIME Cryptographic Signature


Re: Sending emails to Contact List

2009-04-09 Thread Vikas Mayur

This might help you.
http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo#FAQ-Tips-Tricks-Cookbook-HowTo-SendingMailsToContactLists

Vikas

On Apr 9, 2009, at 11:32 AM, Shweta Singhai wrote:


Hi All,

I have created a Contact List and also  associated parties with this
list. Now I want to send an email  to the member of contact list. I
searched on mailing list archive and find  the solution in this link:
http://apache.markmail.org/search/?q=contactList#query:contactList 
%20list%3Aorg.apache.ofbiz.user%20type%3Ausers+page:1+mid:ziaa6kot4d2fqsm5+state:results


I performed the action according to the above description , but when I
create a new CommEvent with a status Entered and after it when I
update it then there is no option for status In-Progress.

So  emails are not triggered  to all the subscribed members of the  
ContactList.


Does any other  functionality exist in Ofbiz for this?  Please share  
it with me.





Thanks,

Shweta




smime.p7s
Description: S/MIME cryptographic signature


Re: excel sheet implementation

2009-04-09 Thread harish84

i am reading excel sheet using poi.i am getting all the values in console but
when i use create method it gets stores in only one column.it should get
store in corresponding columns.

-- 
View this message in context: 
http://www.nabble.com/excel-sheet-implementation-tp22956266p22968125.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: Converting translation from properties to XML

2009-04-09 Thread Ján Valkovič
Properties format works in new ofbiz-jaunty too, but what about create
build-in ant script, which automatically converts lang files do xml
format? Not now, sometimes :-)

Dňa Št, 2009-04-09 o 11:49 +0200, Jacques Le Roux napísal:
 Unfortunately this work has been done by students (working with Hans) and the 
 script is not available anymore
 
 Jacques
 
 From: Ján Valkovic yan...@samsonzv.sk
  Hi all,
  how to convert language files from old properties format to new xml
  format? I don't found any FAQ for this
  Thanks in advance
 
  ya
 
  
 
 




Re: excel sheet implementation

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

you can create map for the data that fits a service to do CRUD services.
This allows you to also update already existing data.
this also will use the associated EDA service realted to the services
you run
http://docs.ofbiz.org/display/OFBIZ/Using+excel+to+build+vars+and+map+methods+for+a+class+from+services+page.

harish84 sent the following on 4/9/2009 3:19 AM:
 i am reading excel sheet using poi.i am getting all the values in console but
 when i use create method it gets stores in only one column.it should get
 store in corresponding columns.
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJ3dQZrP3NbaWWqE4RAhnMAJ9tGQ1G75HtqwHB4HmXCUuEBf4KrACgt5X3
iWb10xr1BDbycKPwZr1IbMo=
=b6u3
-END PGP SIGNATURE-


Re: workflow engine

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Not sure you will find a layout for workflow in the FAQ's
more how to use EDA to make you own workflow.
while your waiting you can go to
http://docs.ofbiz.org/dashboard.action
and Type in
SECA and see the links you get
each will give part of the puzzle

Jack Liu sent the following on 4/9/2009 3:10 AM:
 Thank you.
 I hope this FAQ will come out as soon as possible.
 
 -Original Message-
 From: Jacques Le Roux [mailto:jacques.le.r...@les7arts.com] 
 Sent: 2009年4月9日 18:05
 To: user@ofbiz.apache.org
 Subject: Re: workflow engine
 
 Actually not, OFBiz gave up on workflow engines. Shark was implemented last 
 but never really used in OFBiz. Instead of using a 
 workflow engine, OFBiz use an Event Driven Architecture (EDA) and ECAs (SECA, 
 EECA, MECA) are used in OFBiz to drive the workflow. I 
 will create a FAQ for that as this question come over and over
 
 Jacques
 
 From: Michael Xu (xudong) dong...@wizitsoft.com
 As I know, ofbiz uses its own workflow engine. You can get more information
 here: http://ofbiz.apache.org/docs/workflow.html

 --
 Regards,
 Michael Xu (xudong)
 www.wizitsoft.com | Office: (8610) 6267 0615 ext 806 | Mobile: (86) 135 0135
 9807 | Fax: (8610) 62670096


 On Thu, Apr 9, 2009 at 11:40 AM, Jack Liu jack@aicent.com wrote:

 Hi, all
 What's the recommended workflow engine in OFBiz?
 Is it Shark?


 Best Regards,

 Jack Liu


 
 
 
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJ3dgQrP3NbaWWqE4RApJKAKCu++CaqC1Zz6IpwnbR+2WnF+GTWwCgt36O
L2UJ5r4SrZmbVYk3iXKwIUg=
=qcKa
-END PGP SIGNATURE-


URL of a new module

2009-04-09 Thread lahmar

Hi All,

I would like to add a new module in Ofbiz. In which folder, i must add it
and after what's the url i must put in the navigator to show the interface
of the new module. I have built the folder that i will add it.

Thks  Best regards.

-- 
View this message in context: 
http://www.nabble.com/URL-of-a-new-module-tp22969714p22969714.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: URL of a new module

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

for your own installation you can use the hotdeploy.
or you can put in the application or specialpurose and add it to the
appropriate files.


lahmar sent the following on 4/9/2009 5:16 AM:
 Hi All,
 
 I would like to add a new module in Ofbiz. In which folder, i must add it
 and after what's the url i must put in the navigator to show the interface
 of the new module. I have built the folder that i will add it.
 
 Thks  Best regards.
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJ3ej7rP3NbaWWqE4RAgUQAKCicWx8PlJZOAkf8HI4QFKHcJMN1ACgtw0x
4PlqiCtfZchJK67vW7xbPoc=
=meBa
-END PGP SIGNATURE-


Re: workflow engine

2009-04-09 Thread Michael Xu (xudong)
As I know, ofbiz uses its own workflow engine. You can get more information
here: http://ofbiz.apache.org/docs/workflow.html

--
Regards,
Michael Xu (xudong)
www.wizitsoft.com | Office: (8610) 6267 0615 ext 806 | Mobile: (86) 135 0135
9807 | Fax: (8610) 62670096


On Thu, Apr 9, 2009 at 11:40 AM, Jack Liu jack@aicent.com wrote:

 Hi, all
 What's the recommended workflow engine in OFBiz?
 Is it Shark?


 Best Regards,

 Jack Liu




Re: excel sheet implementation

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

here some other options
http://docs.ofbiz.org/display/OFBIZ/Handling+of+External+data

harish84 sent the following on 4/9/2009 3:19 AM:
 i am reading excel sheet using poi.i am getting all the values in console but
 when i use create method it gets stores in only one column.it should get
 store in corresponding columns.
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJ3dR4rP3NbaWWqE4RAtIzAKCE4EVEKLQjyyqOT1B2v0Vdv98e0gCdET7y
6wXFGX8f3sjA2zx4DBL5tQs=
=k+4P
-END PGP SIGNATURE-


erro Could not load VFS configuration

2009-04-09 Thread jjmbconquista

I downloaded OFBiz trunk version.
But when I am starting OFBiz, below errors occur:

2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ] Can't
find home, jk2.properties not loaded
2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ] SSLImpl
loaded; using custom ServerSocketFactory
2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
[Startup] Starting containers...
2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ] Using
C:\Temp\vfs_cache as temporary files store.
org.ofbiz.base.start.StartupException: Cannot start()
org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))
at 
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
org.ofbiz.base.container.ContainerException: Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
at 
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
... 5 more
Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
registered for URL scheme ofbiz-home.
at
org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195)
... 10 more
org.ofbiz.base.container.ContainerException: Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
at 
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
... 5 more
Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
registered for URL scheme ofbiz-home.
at
org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
at

Re: OFBiz sites you are proud of

2009-04-09 Thread Sebastian Schirmer

Hi Tim

sorry I have missed your mail. We have made maybe some interesting large 
projects with OFBiz.


Olympus Germany http://www.olympus.de (german website of a global player) 
uses our  customized OFBiz application seamlessly integated into the whole 
consumer website, all product prices and shopping processes are managed by 
OFBiz. (2 screens attached)



Some of Olympus european subsidiaries using localized OFBiz dealer shops 
(closed user group). Currently Olympus dealers in Germany, Poland, Danmark, 
Sweden, Finland, Norway and Spain using an Ofbiz system. (France and 
Holland are coming soon)



kind regards
Sebastian





--On Montag, 6. April 2009 04:31 -0500 Tim Ruppert 
tim.rupp...@hotwaxmedia.com wrote:



Please send me privately screen shots of any OFBiz sites that you've
built that you'd like included in the top scroller on the new
ofbiz.apache.org index page.  There are room for a few, but I'd like to
have offerings from different providers represented if possible.

You can email me directly at tim.rupp...@hotwaxmedia.com with them and
I'll do my best to get them in there.

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

o:801.649.6594
f:801.649.6595





--
Sebastian Schirmer

ZYRES digital media systems GmbH
Eschersheimer Landstr. 5-7 60322 Frankfurt am Main
Phone +49 (0)69 98 55 99 - 0
Fax   +49 (0)69 98 55 99 - 11

Firmensitz: Eschersheimer Landstr. 5-7 60322 Frankfurt am Main
Registergericht: Amtsgericht Frankfurt am Main, HRB 76374
Geschäftsführer: Martin Wepper, Sebastian Schirmer

http://www.zyres.com/

-- RFC|1855|2.1.1



Re: workflow engine

2009-04-09 Thread Shi Jinghai
Perhaps you can try our OFBiz-jBPM component, it's in LGPL.

http://www.langhua.cn/download/ofbiz-jbpm.html

Good luck,

Shi Jinghai/Beijing Langhua Ltd.


在 2009-04-09四的 11:40 +0800,Jack Liu写道:
 Hi, all
 What's the recommended workflow engine in OFBiz?
 Is it Shark?
 
 
 Best Regards,
 
 Jack Liu 
 



RE: workflow engine

2009-04-09 Thread Jack Liu
JBPM is a very popular open source workflow engine.
But JBPM uses hibernate to implement its persistence, which is different from 
OFBiz.
So how do you manage transaction?

Thank you for your response!

-Original Message-
From: Shi Jinghai [mailto:sh...@langhua.cn] 
Sent: 2009年4月9日 21:24
To: user@ofbiz.apache.org
Subject: Re: workflow engine

Perhaps you can try our OFBiz-jBPM component, it's in LGPL.

http://www.langhua.cn/download/ofbiz-jbpm.html

Good luck,

Shi Jinghai/Beijing Langhua Ltd.


在 2009-04-09四的 11:40 +0800,Jack Liu写道:
 Hi, all
 What's the recommended workflow engine in OFBiz?
 Is it Shark?
 
 
 Best Regards,
 
 Jack Liu 
 



Re: erro Could not load VFS configuration

2009-04-09 Thread Jacques Le Roux

Did you try an ant clean-all (beware it also removes data in Derby if ever you use 
Derby) ? Which revision are you using ?

Jacques

From: jjmbconquista jjmbconqui...@yahoo.com.br
To: user@ofbiz.apache.org
Sent: Thursday, April 09, 2009 3:19 PM
Subject: erro Could not load VFS configuration




I downloaded OFBiz trunk version.
But when I am starting OFBiz, below errors occur:

2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ] Can't
find home, jk2.properties not loaded
2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ] SSLImpl
loaded; using custom ServerSocketFactory
2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
[Startup] Starting containers...
2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ] Using
C:\Temp\vfs_cache as temporary files store.
org.ofbiz.base.start.StartupException: Cannot start()
org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))
at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
org.ofbiz.base.container.ContainerException: Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
... 5 more
Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
registered for URL scheme ofbiz-home.
at
org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195)
... 10 more
org.ofbiz.base.container.ContainerException: Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
... 5 more
Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
registered for URL scheme ofbiz-home.
at
org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
at

Re: Converting translation from properties to XML

2009-04-09 Thread Jeroen van der Wal
We've create a tool to import .po (gettext) files into the Ofbiz XML
format. It shouldn't be hard to use this for property files as well.

See this issue for details and source code:
https://issues.apache.org/jira/browse/OFBIZ-2008

-Jeroen

On Thu, Apr 9, 2009 at 11:49 AM, Jacques Le Roux
jacques.le.r...@les7arts.com wrote:
 Unfortunately this work has been done by students (working with Hans) and
 the script is not available anymore

 Jacques

 From: Ján Valkovic yan...@samsonzv.sk

 Hi all,
 how to convert language files from old properties format to new xml
 format? I don't found any FAQ for this
 Thanks in advance

 ya







Re: erro Could not load VFS configuration

2009-04-09 Thread jose junior malheiros barros
I downloaded OFBiz trunk today

--- Em qui, 9/4/09, Jacques Le Roux jacques.le.r...@les7arts.com escreveu:
De: Jacques Le Roux jacques.le.r...@les7arts.com
Assunto: Re: erro Could not load VFS configuration
Para: user@ofbiz.apache.org
Data: Quinta-feira, 9 de Abril de 2009, 11:15

Did you try an ant clean-all (beware it also removes data in Derby if ever
you use Derby) ? Which revision are you using ?

Jacques

From: jjmbconquista jjmbconqui...@yahoo.com.br
To: user@ofbiz.apache.org
Sent: Thursday, April 09, 2009 3:19 PM
Subject: erro Could not load VFS configuration


 
 I downloaded OFBiz trunk version.
 But when I am starting OFBiz, below errors occur:
 
 2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ]
Can't
 find home, jk2.properties not loaded
 2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
 2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ]
SSLImpl
 loaded; using custom ServerSocketFactory
 2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
 2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
 [Startup] Starting containers...
 2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ] Using
 C:\Temp\vfs_cache as temporary files store.
 org.ofbiz.base.start.StartupException: Cannot start()
 org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
 StandardFileSystemManager (Could not load VFS configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))
 at
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103)
 at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
 at org.ofbiz.base.start.Start.startServer(Start.java:312)
 at org.ofbiz.base.start.Start.start(Start.java:316)
 at org.ofbiz.base.start.Start.main(Start.java:399)
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
 at

org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
 at
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
 at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
 at org.ofbiz.base.start.Start.startServer(Start.java:312)
 at org.ofbiz.base.start.Start.start(Start.java:316)
 at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
 configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
 at

org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
 at

org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
 at

org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
 ... 5 more
 Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
 registered for URL scheme ofbiz-home.
 at

org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362)
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262)
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195)
 ... 10 more
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
 at

org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
 at
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
 at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
 at org.ofbiz.base.start.Start.startServer(Start.java:312)
 at org.ofbiz.base.start.Start.start(Start.java:316)
 at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
 configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
 at

org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
 at

org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
 at


Re: erro Could not load VFS configuration

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ofbiz does not use the bin folder
Nor does it use C:\Temp\
This looks like some custom work.
if so please disable it to run ofbiz to check out the trunk version you
have works.
if not please explain what you are doing to got to this point

jjmbconquista sent the following on 4/9/2009 6:19 AM:
 I downloaded OFBiz trunk version.
 But when I am starting OFBiz, below errors occur:
 
 2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ] Can't
 find home, jk2.properties not loaded
 2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
 2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ] SSLImpl
 loaded; using custom ServerSocketFactory
 2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
 2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
 [Startup] Starting containers...
 2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ] Using
 C:\Temp\vfs_cache as temporary files store.
 org.ofbiz.base.start.StartupException: Cannot start()
 org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))
   at 
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103)
   at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
   at org.ofbiz.base.start.Start.startServer(Start.java:312)
   at org.ofbiz.base.start.Start.start(Start.java:316)
   at org.ofbiz.base.start.Start.main(Start.java:399)
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
   at
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
   at 
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
   at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
   at org.ofbiz.base.start.Start.startServer(Start.java:312)
   at org.ofbiz.base.start.Start.start(Start.java:316)
   at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
 configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
   at
 org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
   at
 org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
   at
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
   ... 5 more
 Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
 registered for URL scheme ofbiz-home.
   at
 org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362)
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262)
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195)
   ... 10 more
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
   at
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
   at 
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
   at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
   at org.ofbiz.base.start.Start.startServer(Start.java:312)
   at org.ofbiz.base.start.Start.start(Start.java:316)
   at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
 configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
   at
 org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
   at
 org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
   at
 

Re: erro Could not load VFS configuration

2009-04-09 Thread Jacques Le Roux

BJ,

I already saw that on WIndows OFBiz is actually using this. For instance my 
last run has
2009-04-09 18:25:29,468 (main) [ VfsLog.java:122:INFO ] Using C:\DOCUME~1\JACQUE~1\LOCALS~1\Temp\vfs_cache as 
temporary files store.


But it runs :o) (I'm looking at the new theme :D)

Jacques

From: BJ Freeman bjf...@free-man.net

Ofbiz does not use the bin folder
Nor does it use C:\Temp\
This looks like some custom work.
if so please disable it to run ofbiz to check out the trunk version you
have works.
if not please explain what you are doing to got to this point

jjmbconquista sent the following on 4/9/2009 6:19 AM:

I downloaded OFBiz trunk version.
But when I am starting OFBiz, below errors occur:

2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ] Can't
find home, jk2.properties not loaded
2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ] SSLImpl
loaded; using custom ServerSocketFactory
2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
[Startup] Starting containers...
2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ] Using
C:\Temp\vfs_cache as temporary files store.
org.ofbiz.base.start.StartupException: Cannot start()
org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))
at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
org.ofbiz.base.container.ContainerException: Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
... 5 more
Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
registered for URL scheme ofbiz-home.
at
org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195)
... 10 more
org.ofbiz.base.container.ContainerException: Initializing
StandardFileSystemManager (Could not load VFS configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
at
org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
configuration from
file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
at
org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
at
org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
at

Re: erro Could not load VFS configuration

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

thanks for correcting me.
Guess I better go look at my Svn copy closer.

Jacques Le Roux sent the following on 4/9/2009 11:08 AM:
 BJ,
 
 I already saw that on WIndows OFBiz is actually using this. For instance
 my last run has
 2009-04-09 18:25:29,468 (main) [ VfsLog.java:122:INFO ]
 Using C:\DOCUME~1\JACQUE~1\LOCALS~1\Temp\vfs_cache as temporary files
 store.
 
 But it runs :o) (I'm looking at the new theme :D)
 
 Jacques
 
 From: BJ Freeman bjf...@free-man.net
 Ofbiz does not use the bin folder
 Nor does it use C:\Temp\
 This looks like some custom work.
 if so please disable it to run ofbiz to check out the trunk version you
 have works.
 if not please explain what you are doing to got to this point

 jjmbconquista sent the following on 4/9/2009 6:19 AM:
 I downloaded OFBiz trunk version.
 But when I am starting OFBiz, below errors occur:

 2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ]
 Can't
 find home, jk2.properties not loaded
 2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
 2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ]
 SSLImpl
 loaded; using custom ServerSocketFactory
 2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
 2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
 [Startup] Starting containers...
 2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ]
 Using
 C:\Temp\vfs_cache as temporary files store.
 org.ofbiz.base.start.StartupException: Cannot start()
 org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))
 at
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103)
 at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
 at org.ofbiz.base.start.Start.startServer(Start.java:312)
 at org.ofbiz.base.start.Start.start(Start.java:316)
 at org.ofbiz.base.start.Start.main(Start.java:399)
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
 at
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)

 at
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
 at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
 at org.ofbiz.base.start.Start.startServer(Start.java:312)
 at org.ofbiz.base.start.Start.start(Start.java:316)
 at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load
 VFS
 configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
 at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)

 at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)

 at
 org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)

 at
 org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)

 at
 org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)

 at
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)

 ... 5 more
 Caused by: org.apache.commons.vfs.FileSystemException: Multiple
 providers
 registered for URL scheme ofbiz-home.
 at
 org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)

 at
 org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362)

 at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262)

 at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195)

 ... 10 more
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
 at
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)

 at
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
 at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
 at org.ofbiz.base.start.Start.startServer(Start.java:312)
 at org.ofbiz.base.start.Start.start(Start.java:316)
 at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load
 VFS
 configuration from
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
 at
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)

 at
 

wiki location for possilble additions to ofbiz

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

i think we have a place on the wiki for additions to ofbiz.
I come across stuff that someone might want to pick up as a project.
like the UPS rates based on LTL (Less than a truck load).

if we don't what would be a good top level place to start a page?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJ3kN+rP3NbaWWqE4RAo/AAJ0batF/iXV4WEVRSVeQ/vckJ5HegwCgydUm
9Msvi2IkD/hpuI03q9YOVKg=
=73Zb
-END PGP SIGNATURE-


Re: erro Could not load VFS configuration

2009-04-09 Thread jose junior malheiros barros
i just follow the tutorial: 
http://www.opensourcestrategies.com/ofbiz/ofbiz_eclipse.php

--- Em qui, 9/4/09, BJ Freeman bjf...@free-man.net escreveu:
De: BJ Freeman bjf...@free-man.net
Assunto: Re: erro Could not load VFS configuration
Para: user@ofbiz.apache.org
Data: Quinta-feira, 9 de Abril de 2009, 14:34

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ofbiz does not use the bin folder
Nor does it use C:\Temp\
This looks like some custom work.
if so please disable it to run ofbiz to check out the trunk version you
have works.
if not please explain what you are doing to got to this point

jjmbconquista sent the following on 4/9/2009 6:19 AM:
 I downloaded OFBiz trunk version.
 But when I am starting OFBiz, below errors occur:
 
 2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ]
Can't
 find home, jk2.properties not loaded
 2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
 2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ]
SSLImpl
 loaded; using custom ServerSocketFactory
 2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
 2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
 [Startup] Starting containers...
 2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ] Using
 C:\Temp\vfs_cache as temporary files store.
 org.ofbiz.base.start.StartupException: Cannot start()
 org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
 StandardFileSystemManager (Could not load VFS configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))
   at
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103)
   at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
   at org.ofbiz.base.start.Start.startServer(Start.java:312)
   at org.ofbiz.base.start.Start.start(Start.java:316)
   at org.ofbiz.base.start.Start.main(Start.java:399)
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
   at

org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
   at
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
   at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
   at org.ofbiz.base.start.Start.startServer(Start.java:312)
   at org.ofbiz.base.start.Start.start(Start.java:316)
   at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
 configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
   at

org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
   at

org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
   at

org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
   at

org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
   at

org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
   at

org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
   ... 5 more
 Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
 registered for URL scheme ofbiz-home.
   at

org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
   at

org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362)
   at

org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262)
   at

org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195)
   ... 10 more
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
   at

org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
   at
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
   at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
   at org.ofbiz.base.start.Start.startServer(Start.java:312)
   at org.ofbiz.base.start.Start.start(Start.java:316)
   at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
 configuration from

file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
   at

org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
   at


Re: erro Could not load VFS configuration

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

here is the one for ofbiz
http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
do a find in your browser for Eclipse.

Ok that explains the bin folder.

jose junior malheiros barros sent the following on 4/9/2009 12:04 PM:
 i just follow the tutorial: 
 http://www.opensourcestrategies.com/ofbiz/ofbiz_eclipse.php
 
 --- Em qui, 9/4/09, BJ Freeman bjf...@free-man.net escreveu:
 De: BJ Freeman bjf...@free-man.net
 Assunto: Re: erro Could not load VFS configuration
 Para: user@ofbiz.apache.org
 Data: Quinta-feira, 9 de Abril de 2009, 14:34
 
 Ofbiz does not use the bin folder
 Nor does it use C:\Temp\
 This looks like some custom work.
 if so please disable it to run ofbiz to check out the trunk version you
 have works.
 if not please explain what you are doing to got to this point
 
 jjmbconquista sent the following on 4/9/2009 6:19 AM:
 I downloaded OFBiz trunk version.
 But when I am starting OFBiz, below errors occur:
 
 2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ]
 Can't
 find home, jk2.properties not loaded
 2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
 2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ]
 SSLImpl
 loaded; using custom ServerSocketFactory
 2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
 Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
 2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
 [Startup] Starting containers...
 2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ] Using
 C:\Temp\vfs_cache as temporary files store.
 org.ofbiz.base.start.StartupException: Cannot start()
 org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))
  at
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103)
  at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
  at org.ofbiz.base.start.Start.startServer(Start.java:312)
  at org.ofbiz.base.start.Start.start(Start.java:316)
  at org.ofbiz.base.start.Start.main(Start.java:399)
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
  at
 
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
  at
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
  at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
  at org.ofbiz.base.start.Start.startServer(Start.java:312)
  at org.ofbiz.base.start.Start.start(Start.java:316)
  at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
 configuration from
 
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.
  at
 
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199)
  at
 
 org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156)
  at
 
 org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129)
  at
 
 org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)
  at
 
 org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)
  at
 
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)
  ... 5 more
 Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers
 registered for URL scheme ofbiz-home.
  at
 
 org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174)
  at
 
 org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362)
  at
 
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262)
  at
 
 org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195)
  ... 10 more
 org.ofbiz.base.container.ContainerException: Initializing
 StandardFileSystemManager (Could not load VFS configuration from
 
 file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)
  at
 
 org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)
  at
 org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101)
  at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
  at org.ofbiz.base.start.Start.startServer(Start.java:312)
  at org.ofbiz.base.start.Start.start(Start.java:316)
  at org.ofbiz.base.start.Start.main(Start.java:399)
 Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS
 configuration from
 
 

Re: workflow engine

2009-04-09 Thread David E Jones


It is pretty easy to mix Service/Entity Engine and Hibernate code and  
have them participate in the same transaction as they both use JTA...  
just make sure they are both referring to the same UserTransaction and  
TransactionManager objects.


-David


On Apr 9, 2009, at 7:44 AM, Jack Liu wrote:


JBPM is a very popular open source workflow engine.
But JBPM uses hibernate to implement its persistence, which is  
different from OFBiz.

So how do you manage transaction?

Thank you for your response!

-Original Message-
From: Shi Jinghai [mailto:sh...@langhua.cn]
Sent: 2009年4月9日 21:24
To: user@ofbiz.apache.org
Subject: Re: workflow engine

Perhaps you can try our OFBiz-jBPM component, it's in LGPL.

http://www.langhua.cn/download/ofbiz-jbpm.html

Good luck,

Shi Jinghai/Beijing Langhua Ltd.


在 2009-04-09四的 11:40 +0800,Jack Liu写道:

Hi, all
What's the recommended workflow engine in OFBiz?
Is it Shark?


Best Regards,

Jack Liu







Re: Difference between OFBiz developement version and binary release of ofbiz

2009-04-09 Thread sun_arb

Dear sir,
Thank You for suggesting me with proper information.Now I want to know how
to create the PDF file from .fo.ftl file...
I tried this but I am getting the following error... 


The Following Errors Occurred:

Unable to transform FO file: javax.xml.transform.TransformerException:
org.xml.sax.SAXParseException: The processing instruction target matching
[xX][mM][lL] is not allowed.


please suggest me

sun_arb wrote:
 
 Dear members,
 I am new to the OFBiz.I am learning OFBiz through docs of OFBiz.In that I
 didn't get the following things.
 1.Difference between OFBiz developement version and binary release of
 ofbiz
 2.What is SVN clint.what is the use of it.How to install it.
 3. http://www.nabble.com/file/p22877092/OFBiz%2Bdataflow.jpg  
 I am not able to understand the above diagram properly
 Please help me 
 

-- 
View this message in context: 
http://www.nabble.com/Difference-between-OFBiz-developement-version-and-binary-release-of-ofbiz-tp22877092p22978881.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: erro Could not load VFS configuration

2009-04-09 Thread David E Jones


The resources on that site are more about opentaps than about OFBiz,  
and even though opentaps is based on a version of OFBiz from about 2  
years ago they have made a lot of changes and it seems like they are  
moving mostly away from OFBiz anyway.


I'd recommend you stick to the resources on docs.ofbiz.org, and there  
are pages there about running OFBiz in eclipse, and some tutorials  
about OFBiz framework concepts and doing some basic things with it.


-David


On Apr 9, 2009, at 1:04 PM, jose junior malheiros barros wrote:


i just follow the tutorial: 
http://www.opensourcestrategies.com/ofbiz/ofbiz_eclipse.php

--- Em qui, 9/4/09, BJ Freeman bjf...@free-man.net escreveu:
De: BJ Freeman bjf...@free-man.net
Assunto: Re: erro Could not load VFS configuration
Para: user@ofbiz.apache.org
Data: Quinta-feira, 9 de Abril de 2009, 14:34

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ofbiz does not use the bin folder
Nor does it use C:\Temp\
This looks like some custom work.
if so please disable it to run ofbiz to check out the trunk version  
you

have works.
if not please explain what you are doing to got to this point

jjmbconquista sent the following on 4/9/2009 6:19 AM:

I downloaded OFBiz trunk version.
But when I am starting OFBiz, below errors occur:

2009-04-09 10:01:23,562 (main) [ JkMain.java:251:INFO ]

Can't

find home, jk2.properties not loaded
2009-04-09 10:01:23,562 (main) [ Http11Protocol.java:182:INFO ]
Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
2009-04-09 10:01:23,796 (main) [SSLImpl.java:49 :INFO ]

SSLImpl

loaded; using custom ServerSocketFactory
2009-04-09 10:01:24,265 (main) [ Http11Protocol.java:182:INFO ]
Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443
2009-04-09 10:01:24,296 (main) [ContainerLoader.java:96 :INFO ]
[Startup] Starting containers...
2009-04-09 10:01:24,406 (main) [ VfsLog.java:122:INFO ]  
Using

C:\Temp\vfs_cache as temporary files store.
org.ofbiz.base.start.StartupException: Cannot start()
org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing
StandardFileSystemManager (Could not load VFS configuration from


file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.))

at
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java: 
103)

at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
org.ofbiz.base.container.ContainerException: Initializing
StandardFileSystemManager (Could not load VFS configuration from


file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)

at

org 
.ofbiz 
.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)

at
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java: 
101)

at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263)
at org.ofbiz.base.start.Start.startServer(Start.java:312)
at org.ofbiz.base.start.Start.start(Start.java:316)
at org.ofbiz.base.start.Start.main(Start.java:399)
Caused by: org.apache.commons.vfs.FileSystemException: Could not  
load VFS

configuration from


file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.

at

org 
.apache 
.commons 
.vfs 
.impl 
.StandardFileSystemManager.configure(StandardFileSystemManager.java: 
199)

at

org 
.apache 
.commons 
.vfs 
.impl 
.StandardFileSystemManager 
.configurePlugins(StandardFileSystemManager.java:156)

at

org 
.apache 
.commons 
.vfs 
.impl.StandardFileSystemManager.init(StandardFileSystemManager.java: 
129)

at

org 
.webslinger 
.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351)

at

org 
.webslinger 
.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345)

at

org 
.ofbiz 
.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43)

... 5 more
Caused by: org.apache.commons.vfs.FileSystemException: Multiple  
providers

registered for URL scheme ofbiz-home.
at

org 
.apache 
.commons 
.vfs 
.impl 
.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java: 
174)

at

org 
.apache 
.commons 
.vfs 
.impl 
.StandardFileSystemManager 
.addProvider(StandardFileSystemManager.java:362)

at

org 
.apache 
.commons 
.vfs 
.impl 
.StandardFileSystemManager.configure(StandardFileSystemManager.java: 
262)

at

org 
.apache 
.commons 
.vfs 
.impl 
.StandardFileSystemManager.configure(StandardFileSystemManager.java: 
195)

... 10 more
org.ofbiz.base.container.ContainerException: Initializing
StandardFileSystemManager (Could not load VFS configuration from


file:/D:/worspaceofbiz/ofbiz-trunk/bin/META-INF/vfs-providers.xml.)

at

org 
.ofbiz 
.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48)

at

Re: Difference between OFBiz developement version and binary release of ofbiz

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Need to know what steps you took to arrive at this problem.
also the revision number of SVN checkout, or the binary release you are
using.

sun_arb sent the following on 4/9/2009 1:43 PM:
 Dear sir,
 Thank You for suggesting me with proper information.Now I want to know how
 to create the PDF file from .fo.ftl file...
 I tried this but I am getting the following error... 
 
 
 The Following Errors Occurred:
 
 Unable to transform FO file: javax.xml.transform.TransformerException:
 org.xml.sax.SAXParseException: The processing instruction target matching
 [xX][mM][lL] is not allowed.
 
 
 please suggest me
 
 sun_arb wrote:
 Dear members,
 I am new to the OFBiz.I am learning OFBiz through docs of OFBiz.In that I
 didn't get the following things.
 1.Difference between OFBiz developement version and binary release of
 ofbiz
 2.What is SVN clint.what is the use of it.How to install it.
 3. http://www.nabble.com/file/p22877092/OFBiz%2Bdataflow.jpg  
 I am not able to understand the above diagram properly
 Please help me 

 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJ3mkPrP3NbaWWqE4RAgqQAJ9m4rjiZREIwi/GzEWaXdm6cJVyLwCdHGFl
slWK+IScq2KpkqnaPcYz2vg=
=jDP4
-END PGP SIGNATURE-


Re: New Look and Feel

2009-04-09 Thread Jeroen van der Wal
Kudos to all who made it happen! Phrases like Small step and Giant
leap pop into my mind ;-)

-Jeroen

On Wed, Apr 8, 2009 at 7:26 PM, David E Jones
david.jo...@hotwaxmedia.com wrote:

 The new home page is also in place on:

 http://ofbiz.apache.org

 I'll be looking at the back-end applications theme (OFBIZ-2263) later this
 evening (unless someone beats me to it! ;) ).

 -David


 On Apr 8, 2009, at 10:30 AM, Tim Ruppert wrote:

 All, many thanks to those that have contributed to the new look and feel
 going into place.  We have it installed on:

 1. docs.ofbiz.org
 2. build.ofbiz.org
 3. log.ofbiz.org

 and are only waiting on content review on ofbiz.apache.org and the backend
 theme before those are committed.  Special thanks goes out to Erik
 Schuessler of Brainfood who's amazing design has pushed OFBiz into the next
 stage of professionalism.  Also, thanks to the design team at HotWax Media
 for putting in the time to make all of these different things come together
 - it was no small feat.

 I would love to get everyone's feedback and thoughts on how they like it
 (I'm not biased am I?) - we plan on continuing to push the content
 reorganization in the not too distant future.

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

 o:801.649.6594
 f:801.649.6595





myportal- main error

2009-04-09 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Love the layout of smoothfeather.

not sure if this is the layout of just code


Method public java.lang.String
org.ofbiz.widget.screen.ScreenRenderer.render(java.lang.String,java.lang.String)
throws
org.ofbiz.base.util.GeneralException,java.io.IOException,org.xml.sax.SAXException,javax.xml.parsers.ParserConfigurationException
threw an exception when invoked on
org.ofbiz.widget.screen.screenrende...@6770f2 with arguments of types
[java.lang.String,java.lang.String,] The problematic instruction:
- -- == ${screens.render(portlet.screenLocation,
portlet.screenName)} [on line 33, column 13 in
component://common/webcommon/portal/showPortalPage.ftl] -- Java
backtrace for programmers: --
freemarker.template.TemplateModelException: Method public
java.lang.String
org.ofbiz.widget.screen.ScreenRenderer.render(java.lang.String,java.lang.String)
throws
org.ofbiz.base.util.GeneralException,java.io.IOException,org.xml.sax.SAXException,javax.xml.parsers.ParserConfigurationException
threw an exception when invoked on
org.ofbiz.widget.screen.screenrende...@6770f2 with arguments of types
[java.lang.String,java.lang.String,] at
freemarker.ext.beans.OverloadedMethodModel.exec(OverloadedMethodModel.java:134)
at
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJ3nSArP3NbaWWqE4RAg4yAJ4iIcmR1zUol/Nsr5MyjVRmtagQdgCcDSr9
t8P3jauYx5eVJhex7TL07Xc=
=i2lq
-END PGP SIGNATURE-


Re: Difference between OFBiz developement version and binary release of ofbiz

2009-04-09 Thread sun_arb

It's  a binary release..and in party manager component I want to generate the
pdf for the party profile
to achieve this I created one partyprof.fo.ftl inside the
webapp/partymgr/party and I used this file as part of a my own screen
defined in partyscreens.xml like bellow...

widgets
  platform-specific
xsl-fohtml-template
location=component://party/webapp/partymgr/party/partypdf.fo.ftl/xsl-fo
  /platform-specific
/widgets


and the code of the partyprof.fo.ftl is as follows...

fo:table border-spacing=3pt
   fo:table-body
   fo:table-row
   fo:table-cell
   fo:block
   God is Great   
   /fo:block
   /fo:table-cell
   /fo:table-row
   /fo:table-body
 /fo:table

the error for the above code is :

Unable to transform FO file: javax.xml.transform.TransformerException:
org.xml.sax.SAXParseException: The prefix fo for element fo:table is not
bound

If I use the XML processing instruction like :?xml version=1.0
encoding=utf-8? on the top of the 
fo.ftl I am getting the error as

Unable to transform FO file: javax.xml.transform.TransformerException:
org.xml.sax.SAXParseException: The processing instruction target matching
[xX][mM][lL] is not allowed.


This is actual task...please help me.



BJ Freeman wrote:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Need to know what steps you took to arrive at this problem.
 also the revision number of SVN checkout, or the binary release you are
 using.
 
 sun_arb sent the following on 4/9/2009 1:43 PM:
 Dear sir,
 Thank You for suggesting me with proper information.Now I want to know
 how
 to create the PDF file from .fo.ftl file...
 I tried this but I am getting the following error... 
 
 
 The Following Errors Occurred:
 
 Unable to transform FO file: javax.xml.transform.TransformerException:
 org.xml.sax.SAXParseException: The processing instruction target matching
 [xX][mM][lL] is not allowed.
 
 
 please suggest me
 
 sun_arb wrote:
 Dear members,
 I am new to the OFBiz.I am learning OFBiz through docs of OFBiz.In that
 I
 didn't get the following things.
 1.Difference between OFBiz developement version and binary release of
 ofbiz
 2.What is SVN clint.what is the use of it.How to install it.
 3. http://www.nabble.com/file/p22877092/OFBiz%2Bdataflow.jpg  
 I am not able to understand the above diagram properly
 Please help me 

 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.6 (MingW32)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
 iD8DBQFJ3mkPrP3NbaWWqE4RAgqQAJ9m4rjiZREIwi/GzEWaXdm6cJVyLwCdHGFl
 slWK+IScq2KpkqnaPcYz2vg=
 =jDP4
 -END PGP SIGNATURE-
 
 

-- 
View this message in context: 
http://www.nabble.com/Difference-between-OFBiz-developement-version-and-binary-release-of-ofbiz-tp22877092p22980817.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: Secure URLs end for link, hyperlink and sub-hyperlink

2009-04-09 Thread David E Jones


Angelo,

This issue should be addressed in SVN rev 763855. Please read the  
commit log as deploying in this way is not recommended as it opens a  
security hole.


Also, as a general recommendation for future reference so that your  
feedback and requests are better received: if you find an issue report  
it in as much detail as possible (including steps to reproduce, what  
you expected to happen, and what actually happened including EXACT  
error message quotes, along with whatever you find about it), and do  
so by creating an issue in Jira. That way you won't have to send the  
same complaint over and over, and we won't have to guess about what  
you're seeing and what is happening.


Anyway, thanks for reporting this and I hope your experience is  
overall good with OFBiz!


-David


On Apr 9, 2009, at 2:33 AM, Angelo Matarazzo wrote:



Hi Jacques,
I understood the problem.
I have looked at RequestHandler.java line 184.
At line 179 there is   if (!request.isSecure()   
requestMap.securityHttps).

Now with http://localhost:8080;  request.isSecure() is false but
requestMap.securityHttps depends on ConfigXMLReader.java at line 384
'this.securityHttps =  
true.equals(securityElement.getAttribute(https));'
In your opinion is it good idea change ConfigXMLReader.java in this  
way?



-  if (securityElement != null) {
-   this.securityHttps =
true.equals(securityElement.getAttribute(https));



+boolean useHttpsDefault =
UtilProperties.propertyValueEqualsIgnoreCase(url.properties,
port.https.enabled, Y);


+if (securityElement != null) {
+ if (useHttpsDefault))
 this.securityHttps =
true.equals(securityElement.getAttribute(https));
+
+ else {
+  this.securityHttps = false;
+ }

Thanks,
Angelo



jacques.le.roux wrote:


After the changes recently introduced. The campaign to secure URLs  
for

link, hyperlink and sub-hyperlink is now finished.
Please report any related errors you may cross

Thanks

Jacques




--
View this message in context: 
http://www.nabble.com/Secure-URLs-end-for-link%2C-hyperlink-and-sub-hyperlink-tp22894715p22966638.html
Sent from the OFBiz - User mailing list archive at Nabble.com.





POS Setup

2009-04-09 Thread Don Lunder

Hello,

I am following the steps outlined in 
http://docs.ofbiz.org/display/OFBIZ/Sync+Setup+Notes+and+Example

I am unsure where to find the following actions in the webtools

		• Load EntitySync record for PULL on MCS instance (the OFBiz  
instance which runs the MCS)

• Load XML on POS instance to trigger PULL sync
• Load EntitySync PUSH on POS instance(s).
• When pull is finished, load XML to trigger PUSH

Any guidance would be appreciated.

Thanks

Don