You are not logged in.
Pages: 1
Helo
I'm trying to install reportserver to Wildfly 10.0.Final and reportserver is latest (I've downloaded RS3.0.1-5834-2016-03-24-23-46-15-reportserver-ce.zip)
My log indicates success, but to have access error Forbidden
Has anyone ever experienced this?
2016-04-29 14:29:16,991 FINE [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 71) No FacesServlet found in deployment descriptor - bypassing configuration
2016-04-29 14:29:16,991 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 71) WFLYUT0021: Registered web context: /reportserver
2016-04-29 14:29:17,105 INFO [org.jboss.as.server] (management task-10) WFLYSRV0010: Deployed "reportserver.war" (runtime-name : "reportserver.war")
2016-04-29 14:29:17,105 DEBUG [org.jboss.as.server.deployment.scanner] (ServerService Thread Pool -- 71) Updating status after deployment notification for reportserver.war
2016-04-29 14:29:17,105 INFO [org.jboss.as.controller] (management task-10) WFLYCTL0183: Service status report
WFLYCTL0185: Newly corrected services:
Offline
Hi and welcome to the ReportServer forum.
Installing ReportServer on JBoss can be a bit tricky because JBoss comes with a large number of libraries preinstalled that are however conflicting ReportServer's libraries. In order to run ReportServer one thus needs to tell Wildfly to not load its versions of the libraries. Have a look at https://reportserver.net/en/guides/conf … s-Wildfly/ which describes the necessary deployment descriptor.
Edit: As a colleague just informed me: Wildfly 9 and 10 have invented some new strategies to make deploying ReportServer difficult. I am sorry to say, but it seems we have to investigate.
Cheers
Arno
Last edited by Arno Mittelbach (2016-04-29 21:03:54)
Offline
Hi,
as Arno already said ReportServer will currently not run on Wildfly 10. We will probably make the necessary changes in the 3.0.2 release.
Wildfly 9 however works fine with the correct deployment descriptor (we will update the documentation accordingly):
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure>
<deployment>
<exclusions>
<module name="org.hibernate" />
<module name="org.antlr" />
</exclusions>
<exclude-subsystems>
<subsystem name="weld" />
<subsystem name="org.hibernate" />
<subsystem name="org.hibernate.validator" />
<subsystem name="org.antlr" />
<subsystem name="jpa" />
</exclude-subsystems>
<dependencies>
<module name="org.bouncycastle" />
</dependencies>
</deployment>
</jboss-deployment-structure>
Cheers,
Thorsten
Hi,
Thanks for the answer.
I'll try to disable some libs like jsf to see the result
Offline
Pages: 1