tangyong / GLASSFISH-16651

Since we support of wrapping of WARs with webbundle: URL scheme, we should explore the option of using it to wrap plain vanilla WARs when such WARs are deployed using --type=osgi property. This will allow OSGi Web Container to be available to a wider audience.
2 stars 0 forks source link

decoupling between osgi-container and osgi-web-container #7

Open tangyong opened 12 years ago

tangyong commented 12 years ago

decoupling between osgi-container and osgi-web-container:

Replace the following with a new way .

for (ServiceReference r : urlhandlers) { urlhandler = (URLStreamHandlerService) osgicontext.getService(r); if (urlhandler instanceof WebBundleURLStreamHandlerService) { break; } }

tangyong commented 12 years ago

waiting for sahoo's reviewing