Skip to content
Snippets Groups Projects
Commit 2796056b authored by Mrs Gema Ibañez's avatar Mrs Gema Ibañez
Browse files

It seems to be somehow working, at least greetings are shown with this setup,...

It seems to be somehow working, at least greetings are shown with this setup, but the WebUI does not react to the http://localhost:8080/ucc
We think it is a problem with Jetty + CXF 
parent fd8d9d0b
No related branches found
No related tags found
No related merge requests found
......@@ -38,16 +38,32 @@
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version>
<Import-Package>org.universAAL.middleware.container, org.universAAL.middleware.container.osgi, org.universAAL.middleware.container.utils, javax.xml.bind, javax.xml.bind.annotation,
javax.xml.bind.annotation.adapters, javax.xml.namespace,
org.osgi.framework;version="[1,2)",org.osgi.util.tracker;version="[1,2)",org.slf4j;version="[1,2)"</Import-Package>
<Export-Package>org.universAAL.ucc.configuration.model,
org.universAAL.ucc.configuration.model.configurationinstances,
org.universAAL.ucc.configuration.model.configurationdefinition,
org.universAAL.ucc.configuration.model.servicetracker,
org.universAAL.ucc.configuration.model.validators,
org.universAAL.ucc.configuration.model.exceptions,
org.universAAL.ucc.configuration.model.interfaces</Export-Package>
<!-- Private-Package>
javax.xml.bind.annotation,
javax.xml.bind.annotation.adapters
</Private-Package -->
<Import-Package>
javax.xml.*,
org.w3c.dom,
org.universAAL.middleware.container,
org.universAAL.middleware.container.osgi,
org.universAAL.middleware.container.utils,
javax.xml.bind,
<!-- javax.xml.bind.annotation, -->
<!-- javax.xml.bind.annotation.adapters, -->
javax.xml.namespace,
org.osgi.framework;version="[1,2)",
org.osgi.util.tracker;version="[1,2)", org.slf4j;version="[1,2)"</Import-Package>
<Export-Package>
org.universAAL.ucc.configuration.model.*
<!-- org.universAAL.ucc.configuration.model, -->
<!-- org.universAAL.ucc.configuration.model.configurationinstances, -->
<!-- org.universAAL.ucc.configuration.model.configurationdefinition, -->
<!-- org.universAAL.ucc.configuration.model.servicetracker, -->
<!-- org.universAAL.ucc.configuration.model.validators, -->
<!-- org.universAAL.ucc.configuration.model.exceptions, -->
<!-- org.universAAL.ucc.configuration.model.interfaces -->
</Export-Package>
</instructions>
</configuration>
</plugin>
......
......@@ -21,13 +21,13 @@
<properties>
<cxf.version>2.3.1</cxf.version>
</properties>
<dependencies>
<!-- <dependency> -->
<!-- <groupId>org.apache.geronimo.specs</groupId> -->
<!-- <artifactId>geronimo-ws-metadata_2.0_spec</artifactId> -->
<!-- </dependency> -->
<dependency>
<!-- <dependency> -->
<!-- <groupId>org.apache.geronimo.specs</groupId> -->
<!-- <artifactId>geronimo-ws-metadata_2.0_spec</artifactId> -->
<!-- </dependency> -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
</dependency>
......@@ -58,16 +58,16 @@
<artifactId>ucc.configuration.configurator</artifactId>
</dependency>
<!-- Jetty is needed if you're are not using the CXFServlet -->
<!-- <dependency> -->
<!-- <groupId>org.apache.cxf</groupId> -->
<!-- <artifactId>cxf-rt-frontend-jaxws</artifactId> -->
<!-- <version>${cxf.version}</version> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>org.apache.cxf</groupId> -->
<!-- <artifactId>cxf-rt-transports-http</artifactId> -->
<!-- <version>${cxf.version}</version> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>org.apache.cxf</groupId> -->
<!-- <artifactId>cxf-rt-frontend-jaxws</artifactId> -->
<!-- <version>${cxf.version}</version> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>org.apache.cxf</groupId> -->
<!-- <artifactId>cxf-rt-transports-http</artifactId> -->
<!-- <version>${cxf.version}</version> -->
<!-- </dependency> -->
<!-- Jetty is needed if you're are not using the CXFServlet -->
<!-- <dependency> -->
<!-- <groupId>org.apache.cxf</groupId> -->
......@@ -105,15 +105,16 @@
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Activator>org.universAAL.ucc.service.manager.Activator</Bundle-Activator>
<Bundle-Vendor>FZI Karlsruhe</Bundle-Vendor>
<Private-Package>javax.xml.bind.annotation</Private-Package>
<Import-Package>
javax.xml.bind, javax.xml.bind.annotation,
org.xml.sax.helpers,com.vaadin,
<!-- com.vaadin.data, -->
<!-- com.vaadin.data.util, -->
<!-- com.vaadin.data.validator, -->
<!-- com.vaadin.terminal, com.vaadin.ui, -->
javax.xml.bind,
org.xml.sax.helpers,com.vaadin,
<!-- com.vaadin.data, -->
<!-- com.vaadin.data.util, -->
<!-- com.vaadin.data.validator, -->
<!-- com.vaadin.terminal, com.vaadin.ui, -->
com.vaadin.*,
javax.activation,
javax.activation,
javax.xml.datatype,
javax.xml.namespace, javax.xml.parsers,
javax.xml.stream,
......@@ -128,7 +129,7 @@
org.universAAL.middleware.interfaces,
org.universAAL.middleware.managers.api,
org.universAAL.middleware.owl, org.universAAL.middleware.rdf,
org.universAAL.middleware.service,
org.universAAL.middleware.service,
org.universAAL.ucc.configuration.configdefinitionregistry.interfaces,
org.universAAL.ucc.configuration.model.configurationdefinition,
org.universAAL.ucc.configuration.view,
......@@ -140,7 +141,8 @@
org.universAAL.ucc.startup.api.impl, org.universAAL.ucc.api,
org.universAAL.ucc.startup.model, org.w3c.dom, org.xml.sax,
org.xml.sax.ext,javax.jws,
org.osgi.framework;version="[1,2)"</Import-Package>
org.osgi.framework;version="[1,2)"
</Import-Package>
<Export-Package>org.universAAL.ucc.client.util,
org.universAAL.ucc.controller.desktop,
org.universAAL.ucc.controller.install,
......
......@@ -18,11 +18,13 @@
<bundle start-level="80">mvn:org.universAAL.tools.ucc/ucc.profile.agent/2.0.1-SNAPSHOT</bundle>
<feature>http</feature>
<bundle start-level="91">mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.3.1</bundle>
<bundle start-level="81">mvn:org.universAAL.tools.ucc/ucc.controller/2.0.1-SNAPSHOT</bundle>
<bundle start-level="81">wrap:mvn:org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec/1.1.3</bundle>
<bundle start-level="81">mvn:com.vaadin/vaadin/6.8.9</bundle>
<bundle start-level="81">mvn:org.vaadin.osgi/org.vaadin.osgi.staticres/1.0.1</bundle>
<bundle start-level="81">mvn:org.vaadin.osgi/org.vaadin.osgi/1.0.1</bundle>
<bundle start-level="81">mvn:org.universAAL.tools.ucc/ucc.model/2.0.1-SNAPSHOT</bundle>
<bundle start-level="82">mvn:org.universAAL.tools.ucc/ucc.configuration.model/2.0.1-SNAPSHOT</bundle>
<bundle start-level="83">mvn:org.universAAL.tools.ucc/ucc.database/2.0.1-SNAPSHOT</bundle>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment