for (Iterator i1 = pEle.elementIterator("taglib"); i1.hasNext();) {
Element pEle1 = (Element) i1.next();
String uri = pEle.elementText("taglib-uri");
String location = pEle.elementText("taglib-location");
if (uri != null && location != null) {
TaglibInfo info = new TaglibInfo();
info.uri = uri;
// Add web bundle prefix.
info.location = "/" + this.getServiceNSPrefix()
+ (location.startsWith("/") ? "" : "/") + location;
getBundleServletContext().getTaglibs().add(info);