Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Running Birt in Linux for Domino designer (Running Birt in Linux for Domino designer )
Running Birt in Linux for Domino designer [message #640716] Mon, 22 November 2010 21:52 Go to next message
srikanth Mising name is currently offline srikanth Mising nameFriend
Messages: 38
Registered: July 2010
Member
Hello Everyone,

I am trying to deploy Birt on the Domino Designer in linux machine.
Below are the details of the set up

Dominno designer version : 8.5.2
Birt runtime version : 2.6.0
Birt engine path on linux machine : /opt/birt/ReportEngine/

I am trying to invoke the BIRT engine from a java class referred inside an Xpage with the following code..

EngineConfig config = new EngineConfig( );
config.setEngineHome("/opt/birt/ReportEngine" );
config.setLogConfig(null, Level.FINE);

Platform.startup( config );
IReportEngineFactory factory = (IReportEngineFactory) Platform.createFactoryObject( IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTORY );
engine = factory.createReportEngine( config );//engine = BIRTEngineFactory.getReportEngine(birtHomePath);//
engine.changeLogLevel( Level.WARNING );[/I]



It gives me the following exception

org.eclipse.birt.core.exception.BirtException: Can not startup the OSGI framework
11/22/2010 04:10:01 PM HTTP JVM: at org.eclipse.birt.core.framework.Platform.startup(Platform.ja va:91)
11/22/2010 04:10:01 PM HTTP JVM: at src.beans.BIRTEngineFactory.createEngineInstance(BIRTEngineF actory.java:33)
11/22/2010 04:10:01 PM HTTP JVM: at src.beans.BIRTEngineFactory.getReportEngine(BIRTEngineFactor y.java:19)
11/22/2010 04:10:01 PM HTTP JVM: at src.beans.ReportBuilder.run(ReportBuilder.java:148)
11/22/2010 04:10:01 PM HTTP JVM: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
11/22/2010 04:10:01 PM HTTP JVM: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:48)
11/22/2010 04:10:01 PM HTTP JVM: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl.java:37)
11/22/2010 04:10:01 PM HTTP JVM: at java.lang.reflect.Method.invoke(Method.java:600)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.types.JavaAccessObject.call(JavaAccessObject .java:321)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.types.FBSObject.call(FBSObject.java:161)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.ASTTree.ASTCall.interpret(ASTCall.java:175)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.ASTTree.ASTProgram.interpret(ASTProgram.java :119)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.ASTTree.ASTProgram.interpretEx(ASTProgram.ja va:139)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.JSExpression._interpretExpression(JSExpressi on.java:435)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.JSExpression.access$1(JSExpression.java:424)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.JSExpression$2.run(JSExpression.java:414)
11/22/2010 04:10:01 PM HTTP JVM: at java.security.AccessController.doPrivileged(AccessController .java:284)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.JSExpression.interpretExpression(JSExpressio n.java:410)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.JSExpression.evaluateValue(JSExpression.java :251)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.jscript.JSExpression.evaluateValue(JSExpression.java :234)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.javascript.JavaScriptInterpreter.interpret(JavaS criptInterpreter.java:220)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.javascript.JavaScriptInterpreter.interpret(JavaS criptInterpreter.java:192)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.binding.javascript.JavaScriptValueBinding.getVal ue(JavaScriptValueBinding.java:78)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.component.xp.XspOutputLabel.getValue(XspOutputLa bel.java:532)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.util.FacesUtil.convertValue(FacesUtil.java:1073)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.renderkit.html_basic.LabelRendererEx.encodeBegin (LabelRendererEx.java:86)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.renderkit.ReadOnlyAdapterRenderer.encodeBegin(Re adOnlyAdapterRenderer.java:119)
11/22/2010 04:10:01 PM HTTP JVM: at javax.faces.component.UIComponentBase.encodeBegin(UIComponen tBase.java:956)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.util.FacesUtil.renderComponent(FacesUtil.java:79 3)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.util.FacesUtil.renderComponent(FacesUtil.java:80 4)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.util.FacesUtil.renderComponent(FacesUtil.java:80 4)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.util.FacesUtil.renderComponent(FacesUtil.java:80 4)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.component.UIViewRootEx._renderView(UIViewRootEx. java:1272)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.component.UIViewRootEx.renderView(UIViewRootEx.j ava:1210)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.application.ViewHandlerExImpl.doRender(ViewHandl erExImpl.java:635)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.application.ViewHandlerExImpl._renderView(ViewHa ndlerExImpl.java:320)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.application.ViewHandlerExImpl.renderView(ViewHan dlerExImpl.java:355)
11/22/2010 04:10:01 PM HTTP JVM: at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderRe sponsePhase.java:103)
11/22/2010 04:10:01 PM HTTP JVM: at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.ja va:210)
11/22/2010 04:10:01 PM HTTP JVM: at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.j ava:120)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.controller.FacesControllerImpl.render(FacesContr ollerImpl.java:264)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.webapp.FacesServlet.serviceView(FacesServlet.jav a:219)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.webapp.FacesServletEx.serviceView(FacesServletEx .java:193)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.webapp.FacesServlet.service(FacesServlet.java:15 4)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.webapp.FacesServletEx.service(FacesServletEx.jav a:137)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.xsp.webapp.DesignerFacesServlet.service(DesignerFace sServlet.java:86)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.designer.runtime.domino.adapter.ComponentModule.invo keServlet(ComponentModule.java:538)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.domino.xsp.module.nsf.NSFComponentModule.invokeServl et(NSFComponentModule.java:1140)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.designer.runtime.domino.adapter.ComponentModule$Adap terInvoker.invokeServlet(ComponentModule.java:803)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.designer.runtime.domino.adapter.ComponentModule$Serv letInvoker.doService(ComponentModule.java:758)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.designer.runtime.domino.adapter.ComponentModule.doSe rvice(ComponentModule.java:527)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.domino.xsp.module.nsf.NSFComponentModule.doService(N SFComponentModule.java:1124)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.domino.xsp.module.nsf.NSFService.doServiceInternal(N SFService.java:513)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.domino.xsp.module.nsf.NSFService.doService(NSFServic e.java:342)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.designer.runtime.domino.adapter.LCDEnvironment.doSer vice(LCDEnvironment.java:304)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.designer.runtime.domino.adapter.LCDEnvironment.servi ce(LCDEnvironment.java:261)
11/22/2010 04:10:01 PM HTTP JVM: at com.ibm.domino.xsp.bridge.http.engine.XspCmdManager.service( XspCmdManager.java:291)
11/22/2010 04:10:01 PM HTTP JVM: Caused by:
11/22/2010 04:10:01 PM HTTP JVM: org.eclipse.birt.core.exception.CoreException: Access denied (java.lang.RuntimePermission getClassLoader)
11/22/2010 04:10:01 PM HTTP JVM: at org.eclipse.birt.core.framework.osgi.OSGILauncher.startup(OS GILauncher.java:90)
11/22/2010 04:10:01 PM HTTP JVM: at org.eclipse.birt.core.framework.Platform.startup(Platform.ja va:79)



In java.policy We have added all the permission for the birt home.

Any suggestions will be really helpfull
Re: Running Birt in Linux for Domino designer [message #640743 is a reply to message #640716] Mon, 22 November 2010 23:43 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

What is the content of this directory?
/opt/birt/ReportEngine/

do you have a plugins and configuration directory? You should have a
config.ini in the configuration directory and to begin with it should
have nothing else.

Jason

On 11/22/2010 4:52 PM, srikanth wrote:
> Hello Everyone,
>
> I am trying to deploy Birt on the Domino Designer in linux machine.
> Below are the details of the set up
>
> Dominno designer version : 8.5.2
> Birt runtime version : 2.6.0
> Birt engine path on linux machine : /opt/birt/ReportEngine/
>
> I am trying to invoke the BIRT engine from a java class referred inside
> an Xpage with the following code..
>
> EngineConfig config = new EngineConfig( );
> config.setEngineHome("/opt/birt/ReportEngine" );
> config.setLogConfig(null, Level.FINE);
>
> Platform.startup( config );
> IReportEngineFactory factory = (IReportEngineFactory)
> Platform.createFactoryObject(
> IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTORY );
> engine = factory.createReportEngine( config );//engine =
> BIRTEngineFactory.getReportEngine(birtHomePath);//
> engine.changeLogLevel( Level.WARNING );[/I]
>
>
>
> It gives me the following exception
>
> org.eclipse.birt.core.exception.BirtException: Can not startup the OSGI
> framework
> 11/22/2010 04:10:01 PM HTTP JVM: at
> org.eclipse.birt.core.framework.Platform.startup(Platform.ja va:91)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> src.beans.BIRTEngineFactory.createEngineInstance(BIRTEngineF
> actory.java:33)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> src.beans.BIRTEngineFactory.getReportEngine(BIRTEngineFactor y.java:19)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> src.beans.ReportBuilder.run(ReportBuilder.java:148)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce
> ssorImpl.java:48)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe
> thodAccessorImpl.java:37)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> java.lang.reflect.Method.invoke(Method.java:600)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.types.JavaAccessObject.call(JavaAccessObject .java:321)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.types.FBSObject.call(FBSObject.java:161)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.ASTTree.ASTCall.interpret(ASTCall.java:175)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.ASTTree.ASTProgram.interpret(ASTProgram.java :119)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.ASTTree.ASTProgram.interpretEx(ASTProgram.ja va:139)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.JSExpression._interpretExpression(JSExpressi on.java:435)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.JSExpression.access$1(JSExpression.java:424)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.JSExpression$2.run(JSExpression.java:414)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> java.security.AccessController.doPrivileged(AccessController .java:284)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.JSExpression.interpretExpression(JSExpressio n.java:410)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.JSExpression.evaluateValue(JSExpression.java :251)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.jscript.JSExpression.evaluateValue(JSExpression.java :234)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.javascript.JavaScriptInterpreter.interpret(JavaS
> criptInterpreter.java:220)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.javascript.JavaScriptInterpreter.interpret(JavaS
> criptInterpreter.java:192)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.binding.javascript.JavaScriptValueBinding.getVal
> ue(JavaScriptValueBinding.java:78)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.component.xp.XspOutputLabel.getValue(XspOutputLa bel.java:532)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.util.FacesUtil.convertValue(FacesUtil.java:1073)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.renderkit.html_basic.LabelRendererEx.encodeBegin
> (LabelRendererEx.java:86)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.renderkit.ReadOnlyAdapterRenderer.encodeBegin(Re
> adOnlyAdapterRenderer.java:119)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> javax.faces.component.UIComponentBase.encodeBegin(UIComponen
> tBase.java:956)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.util.FacesUtil.renderComponent(FacesUtil.java:79 3)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.util.FacesUtil.renderComponent(FacesUtil.java:80 4)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.util.FacesUtil.renderComponent(FacesUtil.java:80 4)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.util.FacesUtil.renderComponent(FacesUtil.java:80 4)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.component.UIViewRootEx._renderView(UIViewRootEx. java:1272)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.component.UIViewRootEx.renderView(UIViewRootEx.j ava:1210)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.application.ViewHandlerExImpl.doRender(ViewHandl
> erExImpl.java:635)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.application.ViewHandlerExImpl._renderView(ViewHa
> ndlerExImpl.java:320)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.application.ViewHandlerExImpl.renderView(ViewHan
> dlerExImpl.java:355)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderRe
> sponsePhase.java:103)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.ja va:210)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.j ava:120)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.controller.FacesControllerImpl.render(FacesContr
> ollerImpl.java:264)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.webapp.FacesServlet.serviceView(FacesServlet.jav a:219)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.webapp.FacesServletEx.serviceView(FacesServletEx .java:193)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.webapp.FacesServlet.service(FacesServlet.java:15 4)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.webapp.FacesServletEx.service(FacesServletEx.jav a:137)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.xsp.webapp.DesignerFacesServlet.service(DesignerFace
> sServlet.java:86)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.designer.runtime.domino.adapter.ComponentModule.invo
> keServlet(ComponentModule.java:538)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.domino.xsp.module.nsf.NSFComponentModule.invokeServl
> et(NSFComponentModule.java:1140)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.designer.runtime.domino.adapter.ComponentModule$Adap
> terInvoker.invokeServlet(ComponentModule.java:803)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.designer.runtime.domino.adapter.ComponentModule$Serv
> letInvoker.doService(ComponentModule.java:758)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.designer.runtime.domino.adapter.ComponentModule.doSe
> rvice(ComponentModule.java:527)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.domino.xsp.module.nsf.NSFComponentModule.doService(N
> SFComponentModule.java:1124)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.domino.xsp.module.nsf.NSFService.doServiceInternal(N
> SFService.java:513)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.domino.xsp.module.nsf.NSFService.doService(NSFServic e.java:342)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.designer.runtime.domino.adapter.LCDEnvironment.doSer
> vice(LCDEnvironment.java:304)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.designer.runtime.domino.adapter.LCDEnvironment.servi
> ce(LCDEnvironment.java:261)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> com.ibm.domino.xsp.bridge.http.engine.XspCmdManager.service(
> XspCmdManager.java:291)
> 11/22/2010 04:10:01 PM HTTP JVM: Caused by: 11/22/2010 04:10:01 PM HTTP
> JVM: org.eclipse.birt.core.exception.CoreException: Access denied
> (java.lang.RuntimePermission getClassLoader)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> org.eclipse.birt.core.framework.osgi.OSGILauncher.startup(OS
> GILauncher.java:90)
> 11/22/2010 04:10:01 PM HTTP JVM: at
> org.eclipse.birt.core.framework.Platform.startup(Platform.ja va:79)
>
>
>
> In java.policy We have added all the permission for the birt home.
>
> Any suggestions will be really helpfull
Re: Running Birt in Linux for Domino designer [message #640817 is a reply to message #640743] Tue, 23 November 2010 09:57 Go to previous messageGo to next message
srikanth Mising name is currently offline srikanth Mising nameFriend
Messages: 38
Registered: July 2010
Member
Hi Jason,


Yes the folder which you mentioned are there. Apart from them the /opt/birt/ReportEngine/ directory contains the following folders

1).DS_Store
2)genReport.bat
3)samples
4)genReport.sh
5)lib

Regards,
Srikanth
Re: Running Birt in Linux for Domino designer [message #640972 is a reply to message #640817] Tue, 23 November 2010 17:32 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Can you open a bug for this with the stack trace?

BTW I assume the process has write permission to the configuration
directory?

Jason

On 11/23/2010 4:57 AM, srikanth wrote:
> Hi Jason,
>
>
> Yes the folder which you mentioned are there. Apart from them the
> /opt/birt/ReportEngine/ directory contains the following folders
>
> 1).DS_Store
> 2)genReport.bat
> 3)samples
> 4)genReport.sh
> 5)lib
>
> Regards,
> Srikanth
Re: Running Birt in Linux for Domino designer [message #641201 is a reply to message #640972] Wed, 24 November 2010 14:38 Go to previous messageGo to next message
srikanth Mising name is currently offline srikanth Mising nameFriend
Messages: 38
Registered: July 2010
Member
Hi Jason

There is Write permission to the configuration
directory.

I have made the following line entry in conf.ini file..

osgi.configuration.area=/opt/birt/ReportEngine/Configuration /osgi

regards,
Srikanth

[Updated on: Wed, 24 November 2010 14:38]

Report message to a moderator

Re: Running Birt in Linux for Domino designer [message #641206 is a reply to message #641201] Wed, 24 November 2010 14:45 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

When you try to startup do you get any log in the configuration folder?

Jason

On 11/24/2010 9:38 AM, srikanth wrote:
> Hi Jason
>
> There is Write permission to theconfiguration
> directory.
>
> I have made the following line entry in conf.ini file..
>
> osgi.configuration.area=/opt/birt/ReportEngine/Configuration /osgi
>
> regards,
> Srikanth
Re: Running Birt in Linux for Domino designer [message #642398 is a reply to message #641206] Wed, 01 December 2010 08:11 Go to previous messageGo to next message
srikanth Mising name is currently offline srikanth Mising nameFriend
Messages: 38
Registered: July 2010
Member
Hi Jason


I don not get any logs..

Regards,
Srikanth
Re: Running Birt in Linux for Domino designer [message #642570 is a reply to message #642398] Wed, 01 December 2010 19:23 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Why did you add this line:
osgi.configuration.area=/opt/birt/ReportEngine/Configuration /osgi

If you added this there should be a
/opt/birt/ReportEngine/Configuration/osgi directory created (i assume
the space is a typo).

The error you are getting indicates either the plugins can not be found
or the configuration directory is not writable.


Jason

On 12/1/2010 3:11 AM, srikanth wrote:
> Hi Jason
>
>
> I don not get any logs..
>
> Regards,
> Srikanth
Previous Topic:Disabling viewer options for birt reports J2EE (Eclispe)
Next Topic:Spacing in multi series pie chart
Goto Forum:
  


Current Time: Thu Apr 25 22:54:20 GMT 2024

Powered by FUDForum. Page generated in 0.03240 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top