Description
The MANIFEST.MF file for the axiom-api-1.2.8.jar is missing an Import-Package entry for:
org.apache.axiom.soap.impl.llom.soap11
This causes an exception of the following kind when using the axiom-api-1.2.8.jar under OSGi:
org.apache.axiom.om.OMException: java.lang.ClassNotFoundException: org.apache.axiom.soap.impl.llom.soap11.SOAP11Factory
at org.apache.axiom.om.OMAbstractFactory.getSOAP11Factory(OMAbstractFactory.java:147)
...
Adding an Import-Package entry as follows overcomes this problem:
org.apache.axiom.soap.impl.llom.soap11;resolution:=optional,
...I note that this matches the Import-Package entry for the equivalent soap12 package, which is already present.