Rajshekar,
You will need to add your application in the component loader.
The file
component-load.xml is located under ofbiz/framework/base/config folder.
You will need to add this line
<load-component component-location="${ofbiz.home}/../myApp"/>.
myApp - is the parent folder name of your application.
Incase, if you have more than one application under that
folder, then you
will need to add this line instead -
<load-components parent-directory="${ofbiz.home}/../myApp"/>
<component-loader xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://www.ofbiz.org/dtds/component-l
oader.xsd">
<load-components parent-directory="${ofbiz.home}/framework"/>
<load-components parent-directory="${ofbiz.home}/applications"/>
<load-components parent-directory="${ofbiz.home}/specialized"/>
<load-components parent-directory="${ofbiz.home}/hot-deploy"/>
<load-component component-location="${ofbiz.home}/../myApp"/>
</component-loader>
These are the files that need to configured for your
application inside
your application.
1.> ofbiz-component.xml or component-load.xml depending if you
have one or
more than one applications to load.
2.> web.xml - in WEB-INF folder
3.> controller.xml - in WEB-INF folder
4.> entitydefs - Make sure to include all your entity
definitions in
ofbiz-component.xml
5.> servicedefs - Make sure to include all your service
definitions in
ofbiz-component.xml
OFBiz side configuration required -
1.> component-load.xml - To include your application in OFBiz.
2.> entityengine.xml - To configure your database.
Hope this helps.
Amit Shinde
-----Original Message-----
From: rajshekhar [mailto:[EMAIL PROTECTED]
Sent: Friday, September 22, 2006 11:52 AM
To: [email protected]
Subject: how to configure an application which is outside ofbiz
hi,
I want to configure an application which is outside ofbiz folder. even
images and css folder are differnent for that application
How can i configure that application with ofbiz?. The
structure of that application is same as that of applications in ofbiz.
regards
G.Rajshekhar
--
View this message in context:
http://www.nabble.com/how-to-configure-an-application-which-is-outside-ofbiz
-tf2316079.html#a6441706
Sent from the OFBiz - User mailing list archive at Nabble.com.