I'm trying to use the org.springframework.ldap-1.3.0.RELEASE.jar provided by the EBR (I also tried the 1.2.1 JAR). In its MANIFEST, it includes an import reference (the first one in the Import-Package):
Import-Package: com.sun.jndi.ldap;version="0",
When I do try to use it, I get the error below.
com.sun.jndi.ldap seems to be a system provided package... it's available on the classpath in my Java 6 environment (and according to the Sun website is provided as part of the JRE at least as far back Java 5, http://java.sun.com/products/jndi/).
So, is this a bnd/bundlor error in generating the manifest? If so, the 1.2.1 has the same issue. Or, am I supposed to do something to make the com.sun.jndi.ldap package available to this bundle?
Thanks in advance.
-J.C.
Code:Caused by: com.springsource.kernel.osgi.framework.UnableToSatisfyBundleDependenciesException: Unable to satisfy dependencies of bundle 'com.plateau.common.security' at version '1.13.0': Cannot resolve: com.plateau.common.security Resolver report: An Import-Package could not be resolved. Caused missing constraint <Import-Package: org.springframework.ldap; version="0.0.0"> in bundle <com.plateau.common.security_1.13.0> An Import-Package could not be resolved. Caused missing constraint <Import-Package: com.sun.jndi.ldap; version="0.0.0"> in bundle <org.springframework.ldap_1.3.0.RELEASE> at com.springsource.kernel.install.pipeline.stage.resolve.internal.QuasiResolveStage.process(QuasiResolveStage.java:54) at com.springsource.kernel.install.pipeline.internal.StandardPipeline.doProcessTree(StandardPipeline.java:71) at com.springsource.kernel.install.pipeline.internal.CompensatingPipeline.doProcessTree(CompensatingPipeline.java:81) at com.springsource.kernel.install.pipeline.stage.AbstractPipelineStage.process(AbstractPipelineStage.java:50) at com.springsource.kernel.install.pipeline.internal.StandardPipeline.doProcessTree(StandardPipeline.java:71) at com.springsource.kernel.install.pipeline.stage.AbstractPipelineStage.process(AbstractPipelineStage.java:50) at com.springsource.kernel.deployer.core.internal.PipelinedApplicationDeployer.driveInstallPipeline(PipelinedApplicationDeployer.java:261) ... 35 common frames omitted


