AppServWebServiceInfoProviderpublic class AppServWebServiceInfoProvider extends Object implements com.sun.enterprise.admin.wsmgmt.repository.spi.WebServiceInfoProviderThis is the mechanism to provide web service information for a given module.
A WebServiceInfoProvider implementation is a class that extends the
WebServiceInfoProvider abstract class. Some WebServiceInfoProvider can deal
with ejb and web module. Some only deal with web modules.
A WebServiceInfoProvider implemented is identified by its fully qualified
class name. The default RepositoryProvider is
com.sun.enterprise.admin.repository.spi.impl.AppServWebServiceInfoProvider |
Fields Summary |
---|
public static final String | PROVIDER_IDprovider id for the default web server info provider |
Methods Summary |
---|
public java.lang.String | getProviderID()Returns the unique identifier for this WebServiceInfoProvider object.
return PROVIDER_ID;
| private java.lang.String | getServiceURL(java.lang.String wsdlFile, java.lang.String localPart)
String endpointURL = null;
try {
DocumentBuilderFactory dFactory =
DocumentBuilderFactory.newInstance();
InputSource inputSource = new InputSource(new
BufferedInputStream(new FileInputStream(wsdlFile)));
Document wsdlDoc = dFactory.newDocumentBuilder().parse(new
BufferedInputStream(new FileInputStream(wsdlFile)));
XPathFactory xPathFactory = XPathFactory.newInstance();
XPath xPath = xPathFactory.newXPath();
NamespaceContext context = new NamespaceContextImpl(wsdlDoc);
xPath.setNamespaceContext(context);
String xpathExpression = "/:definitions/:service/:port[@name='"+
localPart+"']/soap:address/@location";
endpointURL = xPath.evaluate(xpathExpression, inputSource);
return endpointURL;
} catch (Exception e) {
return null;
}
| private java.lang.String | getUriInDomainConfig(java.lang.String appId)
ConfigContext configCtx = AdminService.getAdminService().
getAdminContext().getAdminConfigContext();
ConfigBean cb = null;
try {
cb = ApplicationHelper.findApplication(configCtx, appId);
} catch( Exception e) {
//String msg = "Could not find a deployed application/module by name "
// + appId;
//_logger.log(Level.FINE, msg);
return null;
}
if (cb instanceof WebModule) {
return ((WebModule)cb).getContextRoot();
} else {
return null;
}
| private com.sun.enterprise.tools.common.dd.webservice.WebserviceDescriptionType | getWSDT(java.lang.String webservicesXML, java.lang.String pcName)Returns the webservice-description-type for the given
port-component-name. WSDL and jaxrpc-mapping file
location are available in this object.
FileInputStream fis = null;
try {
fis = new FileInputStream(new File(webservicesXML));
Webservices ws = Webservices.createGraph(fis);
WebserviceDescriptionType[] wsdt = ws.getWebserviceDescription();
for (int i=0; i<wsdt.length; i++) {
PortComponentType[] pct = wsdt[i].getPortComponent();
for (int j=0; j<pct.length; j++) {
String name = pct[j].getPortComponentName();
if (pcName.equals(name)) {
return wsdt[i];
}
}
}
} catch (Exception e) {
} finally {
if (fis != null) {
try {
fis.close();
} catch (Exception e) { }
}
}
return null;
| public java.util.List | getWebServiceInfo(java.lang.String moduleInfo, java.util.Map propMap)Returns the List of WebServiceInfos for the provided EJB module.
String moduleType = null,appId =null, bundleName = null,
webservices = null, bundleRoot = null;
if (propMap != null) {
moduleType = (String)
propMap.get(WebServiceInfoProvider.MOD_TYPE_PROP_NAME);
appId = (String)
propMap.get(WebServiceInfoProvider.APP_ID_PROP_NAME);
bundleName = (String) propMap.get(
WebServiceInfoProvider.BUNDLE_NAME_PROP_NAME);
webservices = (String) propMap.get(
WebServiceInfoProvider.WS_XML_LOCATION_PROP_NAME);
bundleRoot = (String)
propMap.get(WebServiceInfoProvider.BUNDLE_ROOT_LOCATION_PROP_NAME);
}
// validate mandatory arguments
if ( (moduleType==null) || (appId==null)
|| (webservices==null) || (bundleRoot==null) ) {
throw new IllegalArgumentException();
}
return getWebServiceInfoInternal(moduleInfo, appId,
bundleName, webservices, bundleRoot, propMap);
| private java.util.Map | getWebServiceInfoForEjbModule(java.lang.String moduleInfo, java.lang.String appId, java.lang.String bundleName, java.lang.String webservices)Returns the List of WebServiceEndpointInfos for the provided EJB module.
// load sun-ejb-jar.xml beans
FileInputStream in = null;
try {
in = new FileInputStream(moduleInfo);
} catch(FileNotFoundException fne) {
throw new RepositoryException (fne);
}
SunEjbJar sunEjbJar = null;
try {
sunEjbJar = SunEjbJar.createGraph(in);
} catch (Schema2BeansException sce) {
throw new RepositoryException (sce);
}
// bundle name is null for stand alone module
boolean isAppStandAloneModule = (bundleName==null) ? true : false;
// all ejbs in this module
EnterpriseBeans eBeans = sunEjbJar.getEnterpriseBeans();
Ejb[] ejbs = eBeans.getEjb();
HashMap wsMap = new HashMap();
for (int ejbCnt =0; ejbCnt < ejbs.length; ejbCnt++) {
Ejb ejb = ejbs[ejbCnt];
// all web service endpoints for this ejb
WebserviceEndpoint[] webSvcEps = ejb.getWebserviceEndpoint();
for ( int wsCnt = 0; wsCnt < webSvcEps.length; wsCnt++) {
WebserviceEndpoint webSvc = webSvcEps[wsCnt];
boolean isSec = false;
String trans = webSvc.getTransportGuarantee();
if (( trans != null) && ("NONE".equals(trans) == false)) {
isSec = true;
} else if ((webSvc.getLoginConfig() != null) ||
(webSvc.getMessageSecurityBinding() != null)) {
isSec = true;
}
// uri
WebServiceDescrInfo wsdInfo = new
WebServiceDescrInfo(webSvc.getPortComponentName(),
webSvc.getEndpointAddressUri(),
webSvc.getTieClass(), isSec);
wsMap.put(wsdInfo.getName(),wsdInfo);
}
}
return wsMap;
| private java.util.Map | getWebServiceInfoForWebModule(java.lang.String moduleInfo, java.lang.String appId, java.lang.String bundleName, java.lang.String webservices)Returns the List of WebServiceEndpointInfos for the provided WEB module.
// load sun-web.xml beans
FileInputStream in = null;
try {
in = new FileInputStream(moduleInfo);
} catch(FileNotFoundException fne) {
throw new RepositoryException (fne);
}
SunWebApp sunWebApp = null;
try {
sunWebApp = SunWebApp.createGraph(in);
} catch (Schema2BeansException sce) {
throw new RepositoryException (sce);
}
// bundle name is null for stand alone module
boolean isAppStandAloneModule = (bundleName==null) ? true : false;
// all available servlets
Servlet[] sLets = sunWebApp.getServlet();
Map wsMap = new HashMap();
for (int sCnt =0; sCnt < sLets.length; sCnt++) {
Servlet sLet = sLets[sCnt];
// all end points for this servlet
WebserviceEndpoint[] webSvcEps = sLet.getWebserviceEndpoint();
for ( int wsCnt = 0; wsCnt < webSvcEps.length; wsCnt++) {
WebserviceEndpoint webSvc = webSvcEps[wsCnt];
// context root for web service endpoint
String ctxRoot = sunWebApp.getContextRoot();
String uriInConfig = getUriInDomainConfig(appId);
if (uriInConfig != null) {
ctxRoot = uriInConfig;
}
String uri;
String wsUri = webSvc.getEndpointAddressUri();
if ((wsUri != null) && (wsUri.length() > 0)
&& (wsUri.charAt(0) != '/")) {
wsUri = "/" + wsUri;
}
// FIXME: Do we need to read domain.xml stand alone module?
if (ctxRoot != null) {
uri = ctxRoot + wsUri;
} else {
uri = wsUri;
}
boolean isSec = false;
String trans = webSvc.getTransportGuarantee();
if (( trans != null) && ("NONE".equals(trans) == false)) {
isSec = true;
} else if ((webSvc.getLoginConfig() != null) ||
(webSvc.getMessageSecurityBinding() != null)) {
isSec = true;
}
// web service uri, endpoint name and servlet impl class
WebServiceDescrInfo wsdInfo =
new WebServiceDescrInfo(webSvc.getPortComponentName(),
uri, webSvc.getServletImplClass(),isSec);
wsMap.put(wsdInfo.getName(),wsdInfo);
}
}
return wsMap;
| private java.util.List | getWebServiceInfoInternal(java.lang.String moduleInfo, java.lang.String appId, java.lang.String bundleName, java.lang.String webservices, java.lang.String bundleRoot, java.util.Map propMap)Returns list of WebServiceEndpointInfo ojbects for
all available web serivce end points in this module.
// load webservices.xml beans
FileInputStream in = null;
try {
in = new FileInputStream(webservices);
} catch(FileNotFoundException fne) {
throw new RepositoryException(fne);
}
Webservices webServices = null;
webServices = Webservices.createGraph(in);
// bundle name is null for stand alone module
boolean isAppStandAloneModule = (bundleName==null) ? true : false;
// all web service endpoints
WebserviceDescriptionType[] wsdts =
webServices.getWebserviceDescription();
ArrayList aList = new ArrayList();
String uri = null, implName = null, implType = null, implClass = null;
Map wsWebMap = null, wsEjbMap = null;
// get all web services in this module
for (int wsCnt =0; wsCnt < wsdts.length; wsCnt++) {
WebserviceDescriptionType wsdt = wsdts[wsCnt];
String wsdl = null;
String wsdlFile = null;
String mappingFileName = null;
String mapping = null;
if (wsdt != null) {
wsdl = bundleRoot + File.separator + wsdt.getWsdlFile();
String mapFile = wsdt.getJaxrpcMappingFile();
if (mapFile == null) {
mappingFileName = null;
} else {
mappingFileName = bundleRoot + File.separator + mapFile;
}
}
J2EEModule j2eeModule = new J2EEModule();
try {
if (mappingFileName != null) {
mapping = j2eeModule.getStringForDDxml(mappingFileName);
}
} catch (Exception e ) {
//_logger.log(Level.FINE,"Error reading dd file contents", e);
}
try {
if(wsdl != null) {
wsdlFile = j2eeModule.getStringForDDxml(wsdl);
}
} catch (Exception e ) {
//_logger.log(Level.FINE,"Error reading dd file contents", e);
}
// get all ports inside this web service.
PortComponentType pts[] = wsdt.getPortComponent();
for (int portCnt =0; portCnt < pts.length; portCnt++) {
PortComponentType pt = pts[portCnt];
ServiceImplBeanType beanType = pt.getServiceImplBean();
WebServiceDescrInfo wsDescrInfo = null;
implName = beanType.getServletLink();
if ( implName != null) {
implType = "SERVLET";
// cache uri and sevlet impl class for all endpoints
if (wsWebMap == null) {
wsWebMap = getWebServiceInfoForWebModule(moduleInfo,
appId, bundleName, webservices);
}
// uri, servlet impl class from cache
if (wsWebMap != null) {
wsDescrInfo = (WebServiceDescrInfo) wsWebMap.get(
(String)pt.getPortComponentName());
}
} else {
implName = beanType.getEjbLink();
if ( implName != null) {
implType = "EJB";
// cache uri
if (wsEjbMap == null) {
wsEjbMap = getWebServiceInfoForEjbModule(
moduleInfo, appId, bundleName, webservices);
}
// uri
if ( wsEjbMap != null) {
wsDescrInfo = (WebServiceDescrInfo)wsEjbMap.get(
(String)pt.getPortComponentName());
}
} else {
// throw warning, unknown type set
}
}
if (wsDescrInfo != null) {
uri = wsDescrInfo.getUri();
implClass = wsDescrInfo.getImplClass();
}
final String wsFile = (String) propMap.get(
WebServiceInfoProvider.WS_XML_PROP_NAME);
// port contains name-space:port-name
// get the second part of this string (after the ":")
String port = null;
StringTokenizer st = new StringTokenizer(
pt.getWsdlPort().getLocalPart(),
":");
while(st.hasMoreTokens()) {
port = st.nextToken();
}
final String serviceUrl =
getServiceURL(wsdl,port) ;
// populate web service endpoint info object
WebServiceEndpointInfoImpl wsInfo = new
WebServiceEndpointInfoImpl(pt.getPortComponentName(),
uri, appId, bundleName, isAppStandAloneModule,
wsdlFile, mapping, wsFile,implType,implName,
implClass, serviceUrl, wsDescrInfo.isSecure());
wsInfo.putField(
WebServiceEndpointInfo.SUN_WEB_XML_KEY, (Serializable)propMap.get(
WebServiceInfoProvider.SUN_WEB_XML_PROP_NAME));
wsInfo.putField(
WebServiceEndpointInfo.WEB_XML_KEY, (Serializable)propMap.get(
WebServiceInfoProvider.WEB_XML_PROP_NAME));
wsInfo.putField(
WebServiceEndpointInfo.SUN_EJB_XML_KEY, (Serializable)propMap.get(
WebServiceInfoProvider.SUN_EJB_JAR_XML_PROP_NAME));
wsInfo.putField(
WebServiceEndpointInfo.EJB_XML_KEY, (Serializable)propMap.get(
WebServiceInfoProvider.EJB_JAR_XML_PROP_NAME));
wsInfo.putField(
WebServiceEndpointInfo.APPLICATION_XML_KEY, (Serializable)propMap.get(
WebServiceInfoProvider.APPLICATION_XML_PROP_NAME));
wsInfo.putField(
WebServiceEndpointInfo.MAPPING_FILE_LOCATION_KEY,
(Serializable)mappingFileName);
wsInfo.putField(
WebServiceEndpointInfo.WSDL_FILE_LOCATION_KEY,
(Serializable)wsdl);
// add to the list
aList.add(wsInfo);
}
}
return aList;
|
|