In case anyone finds this post via Google, the answer is to configure the maven-war-plugin to explicitly set the manifest location:
<plugin>
<groupId>org.apache.felix</groupId>
...
Type: Posts; User: pegli; Keyword(s):
In case anyone finds this post via Google, the answer is to configure the maven-war-plugin to explicitly set the manifest location:
<plugin>
<groupId>org.apache.felix</groupId>
...
I ran into a similar problem using JavaMailSenderImpl in a Spring-DM OSGi bundle. In my case, the username and password were being provided as empty strings, not nulls, so I was getting an...
I've successfully deployed Spring-DM modules on Apache Slide, which is based on Felix 1.4. The required dependencies for spring-osgi-extender are:
org.springframework.beans-2.5.6.A.jar
...
Same as above, but uses the BeanNameUrlHandlerMapping class and an Ant wildcard path so you don't need to explicitly map all of your static pages:
<!-- VIEWS -->
<bean...
Note that PortletOpenSessionInViewInterceptor was removed in 2.0-rc3 in favor of a common interceptor class for both web and portlet requests (see the changelog for details). When I updated to rc3,...