當前位置: 首頁>>代碼示例>>Java>>正文


Java ServiceException.getLinkedCause方法代碼示例

本文整理匯總了Java中javax.xml.rpc.ServiceException.getLinkedCause方法的典型用法代碼示例。如果您正苦於以下問題:Java ServiceException.getLinkedCause方法的具體用法?Java ServiceException.getLinkedCause怎麽用?Java ServiceException.getLinkedCause使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.xml.rpc.ServiceException的用法示例。


在下文中一共展示了ServiceException.getLinkedCause方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getAuthenticationService

import javax.xml.rpc.ServiceException; //導入方法依賴的package包/類
/**
 * Get the authentication service
 * 
 * @return AuthenticationServiceSoapBindingStub
 */
public static AuthenticationServiceSoapBindingStub getAuthenticationService(String endpointAddress)
{
	AuthenticationServiceSoapBindingStub authenticationService = null;
    try 
    {
        // Get the authentication service
        AuthenticationServiceLocator locator = new AuthenticationServiceLocator();
        locator.setAuthenticationServiceEndpointAddress(endpointAddress + AUTHENTICATION_SERVICE_ADDRESS);                
        authenticationService = (AuthenticationServiceSoapBindingStub)locator.getAuthenticationService();
    }
    catch (ServiceException jre) 
    {
    	if (logger.isDebugEnabled() == true)
        {
    		if (jre.getLinkedCause() != null)
            {
    			jre.getLinkedCause().printStackTrace();
            }
        }
   
        throw new WebServiceException("Error creating authentication service: " + jre.getMessage(), jre);
    }        
    
    // Time out after a minute
    authenticationService.setTimeout(timeoutMilliseconds);
    
    return authenticationService;
}
 
開發者ID:xenit-eu,項目名稱:move2alf,代碼行數:34,代碼來源:WebServiceFactory.java

示例2: getAuthoringService

import javax.xml.rpc.ServiceException; //導入方法依賴的package包/類
/**
 * Get the authoring service
 * 
 * @return AuthoringServiceSoapBindingStub
 */
public static AuthoringServiceSoapBindingStub getAuthoringService(String endpointAddress)
{
	AuthoringServiceSoapBindingStub authoringService = null;
              
    try 
    {
        // Get the authoring service
        AuthoringServiceLocator locator = new AuthoringServiceLocator(AuthenticationUtils.getEngineConfiguration());
        locator.setAuthoringServiceEndpointAddress(endpointAddress + AUTHORING_SERVICE_ADDRESS);                
        authoringService = (AuthoringServiceSoapBindingStub)locator.getAuthoringService();
        authoringService.setMaintainSession(true);
    }
    catch (ServiceException jre) 
    {
        if (logger.isDebugEnabled() == true)
        {
            if (jre.getLinkedCause() != null)
            {
                jre.getLinkedCause().printStackTrace();
            }
        }
   
        throw new WebServiceException("Error creating authoring service: " + jre.getMessage(), jre);
    }        
    
    // Time out after a minute
    authoringService.setTimeout(timeoutMilliseconds);       
    
    return authoringService;
}
 
開發者ID:xenit-eu,項目名稱:move2alf,代碼行數:36,代碼來源:WebServiceFactory.java

示例3: getClassificationService

import javax.xml.rpc.ServiceException; //導入方法依賴的package包/類
/**
 * Get the classification service
 * 
 * @return ClassificationServiceSoapBindingStub
 */
public static ClassificationServiceSoapBindingStub getClassificationService(String endpointAddress)
{
	ClassificationServiceSoapBindingStub classificationService = null;
        
    try 
    {
        // Get the classification service
        ClassificationServiceLocator locator = new ClassificationServiceLocator(AuthenticationUtils.getEngineConfiguration());
        locator.setClassificationServiceEndpointAddress(endpointAddress + CLASSIFICATION_SERVICE_ADDRESS);                
        classificationService = (ClassificationServiceSoapBindingStub)locator.getClassificationService();
        classificationService.setMaintainSession(true);
    }
    catch (ServiceException jre) 
    {
        if (logger.isDebugEnabled() == true)
        {
            if (jre.getLinkedCause() != null)
            {
                jre.getLinkedCause().printStackTrace();
            }
        }
   
        throw new WebServiceException("Error creating classification service: " + jre.getMessage(), jre);
    }        
    
    // Time out after a minute
    classificationService.setTimeout(timeoutMilliseconds);        
    
    return classificationService;
}
 
開發者ID:xenit-eu,項目名稱:move2alf,代碼行數:36,代碼來源:WebServiceFactory.java

示例4: getActionService

import javax.xml.rpc.ServiceException; //導入方法依賴的package包/類
/**
 * Get the action service
 * 
 * @return ActionServiceSoapBindingStub
 */
public static ActionServiceSoapBindingStub getActionService(String endpointAddress)
{
	ActionServiceSoapBindingStub actionService = null;
        
    try 
    {
        // Get the action service
        ActionServiceLocator locator = new ActionServiceLocator(AuthenticationUtils.getEngineConfiguration());
        locator.setActionServiceEndpointAddress(endpointAddress + ACTION_SERVICE_ADDRESS);                
        actionService = (ActionServiceSoapBindingStub)locator.getActionService();
        actionService.setMaintainSession(true);
    }
    catch (ServiceException jre) 
    {
        if (logger.isDebugEnabled() == true)
        {
            if (jre.getLinkedCause() != null)
            {
                jre.getLinkedCause().printStackTrace();
            }
        }
   
        throw new WebServiceException("Error creating action service: " + jre.getMessage(), jre);
    }        
        
    // Time out after a minute
    actionService.setTimeout(timeoutMilliseconds);      
    
    return actionService;
}
 
開發者ID:xenit-eu,項目名稱:move2alf,代碼行數:36,代碼來源:WebServiceFactory.java

示例5: getAccessControlService

import javax.xml.rpc.ServiceException; //導入方法依賴的package包/類
/**
 * Get the access control service
 * 
 * @return  the access control service
 */
public static AccessControlServiceSoapBindingStub getAccessControlService(String enpointAddress)
{
	AccessControlServiceSoapBindingStub accessControlService = null;           
    try 
    {
        // Get the access control service
        AccessControlServiceLocator locator = new AccessControlServiceLocator(AuthenticationUtils.getEngineConfiguration());
        locator.setAccessControlServiceEndpointAddress(enpointAddress + ACCESS_CONTROL_ADDRESS);                
        accessControlService = (AccessControlServiceSoapBindingStub)locator.getAccessControlService();
        accessControlService.setMaintainSession(true);
    }
    catch (ServiceException jre) 
    {
        if (logger.isDebugEnabled() == true)
        {
            if (jre.getLinkedCause() != null)
            {
                jre.getLinkedCause().printStackTrace();
            }
        }
   
        throw new WebServiceException("Error creating access control service: " + jre.getMessage(), jre);
    }        
        
    // Time out after a minute
    accessControlService.setTimeout(timeoutMilliseconds);
    
    return accessControlService;
}
 
開發者ID:xenit-eu,項目名稱:move2alf,代碼行數:35,代碼來源:WebServiceFactory.java

示例6: getAdministrationService

import javax.xml.rpc.ServiceException; //導入方法依賴的package包/類
/**
 * Get the administration service
 * 
 * @return  the administration service
 */
public static AdministrationServiceSoapBindingStub getAdministrationService(String endpointAddress)
{
	AdministrationServiceSoapBindingStub administrationService = null;
        
    try 
    {
        // Get the adminstration service
        AdministrationServiceLocator locator = new AdministrationServiceLocator(AuthenticationUtils.getEngineConfiguration());
        locator.setAdministrationServiceEndpointAddress(endpointAddress + ADMINISTRATION_ADDRESS);                
        administrationService = (AdministrationServiceSoapBindingStub)locator.getAdministrationService();
        administrationService.setMaintainSession(true);
    }
    catch (ServiceException jre) 
    {
        if (logger.isDebugEnabled() == true)
        {
            if (jre.getLinkedCause() != null)
            {
                jre.getLinkedCause().printStackTrace();
            }
        }
   
        throw new WebServiceException("Error creating administration service: " + jre.getMessage(), jre);
    }        
    
    // Time out after a minute
    administrationService.setTimeout(timeoutMilliseconds);       
    
    return administrationService;
}
 
開發者ID:xenit-eu,項目名稱:move2alf,代碼行數:36,代碼來源:WebServiceFactory.java

示例7: getDictionaryService

import javax.xml.rpc.ServiceException; //導入方法依賴的package包/類
/**
 * Get the dictionary service
 * 
 * @return  the dictionary service
 */
public static DictionaryServiceSoapBindingStub getDictionaryService(String endpointAddress)
{
	DictionaryServiceSoapBindingStub dictionaryService = null;
       
    try 
    {
        // Get the dictionary service
        DictionaryServiceLocator locator = new DictionaryServiceLocator(AuthenticationUtils.getEngineConfiguration());
        locator.setDictionaryServiceEndpointAddress(endpointAddress + DICTIONARY_SERVICE_ADDRESS);                
        dictionaryService = (DictionaryServiceSoapBindingStub)locator.getDictionaryService();
        dictionaryService.setMaintainSession(true);
    }
    catch (ServiceException jre) 
    {
        if (logger.isDebugEnabled() == true)
        {
            if (jre.getLinkedCause() != null)
            {
                jre.getLinkedCause().printStackTrace();
            }
        }
   
        throw new WebServiceException("Error creating dictionary service: " + jre.getMessage(), jre);
    }        
    
    // Time out after a minute
    dictionaryService.setTimeout(timeoutMilliseconds);

    return dictionaryService;
}
 
開發者ID:xenit-eu,項目名稱:move2alf,代碼行數:36,代碼來源:WebServiceFactory.java


注:本文中的javax.xml.rpc.ServiceException.getLinkedCause方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。