public void removingEntries(Bundle bundle, List<Bundle> entries) {
if (bundle.getState() == Bundle.INSTALLED) {
ComActivator activator = FwkRuntime.getInstance()
.getBundleActivator(bundle.getBundleId());
if (activator instanceof WebComActivator) {
IOSGiWebContainer webContainer = fwkRuntime
.getWebContainer();
WebComActivator webActivator = (WebComActivator) activator;
webContainer.unregServletContext(webActivator
.getBundleServletContext());
try {
webContainer.refresh();
FwkActivator.getInstance().log(
"Removed web bundle service: "
+ webActivator.getBundleSymbleName(),
0, false);
} catch (Exception e) {