Another observation. The web.xml of the client application (or WAR1) was
defined as below.
    <servlet>
        <servlet-name>CXFServlet</servlet-name>
       
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
                <init-param>
                        <param-name>config-location</param-name>
                        <param-value>../cxf-beans.xml</param-value>
                </init-param>
    </servlet>

    <servlet-mapping>
        <servlet-name>CXFServlet</servlet-name>
        <url-pattern>/soap/*</url-pattern>
    </servlet-mapping>

When I removed the '<load-on-startup>1</load-on-startup>' element, no
exceptions are thrown.

However, the exceptions return when one of the web service operations
provided in WAR1 is invoked. For example: if I use the browser and navigate
to one of the provided web services of WAR1, then set of exceptions is
generated again.



A Rhuberg wrote
> Summary:
> Web service client is throwing a large number of exceptions (but operates
> successfully). This is observed when executing a performance test of our
> application. In a peak hour test, we are seeing more than 100,000
> exceptions from this issue. On an average, each set of these exceptions
> consume 15-17 ms.
> 
> Can you help determine why these exceptions are occurring and how to avoid
> them? Not sure if this is a configuration error or a client implementation
> error.
> 
> Runtime environment:
> Java 1.8.0_66
> Tomcat 7
>     'org.apache.tomcat:tomcat-catalina:7.0.55',
>     'org.apache.tomcat:tomcat-annotations-api:7.0.55',
>     'org.apache.tomcat:tomcat-juli:7.0.55',
>     'org.apache.tomcat:tomcat-servlet-api:7.0.55'
> WAR 1 (client of web services deployed in WAR 2; also deploys its own web
> services)
> Apache CXF 3.0.8
>     'org.apache.cxf:cxf-rt-frontend-jaxws:3.0.8',
>     'org.apache.cxf:cxf-rt-frontend-jaxrs:3.0.8',
>     'org.apache.cxf:cxf-rt-transports-http:3.0.8',
>     'org.apache.cxf:cxf-rt-databinding-jaxb:3.0.8',
>     'org.apache.cxf:cxf-rt-ws-policy:3.0.8',
>     'org.apache.cxf:cxf-rt-ws-security:3.0.8',
>     'org.apache.wss4j:wss4j-ws-security-dom:2.0.6',
>     'org.apache.wss4j:wss4j-bindings-wssc:2.0.0-rc1',
>     'org.apache.wss4j:wss4j-bindings-wsu10:2.0.0-rc1',
>     'org.apache.wss4j:wss4j-bindings-wss11:2.0.0-rc1'
> WAR 2
> Apache CXF 3.0.0-milestone2
> 
> Details:
> As stated above we are observing a set of exceptions when invoking a web
> service client operation. The application operates correctly, but a
> performance profiler detected a large number of exceptions when running a
> load test. The exceptions where not otherwise visible (other than from the
> profiler) until we configured the log4j log level to DEBUG.
> 
> These are the exceptions; they repeat for every client operation.
> 2016-08-01 08:12:34,698    LogUtils    admin    Userid1   
> 1470053553514-1964655738    DEBUG    127.0.0.1    SERVER1   
> cxf.configuration.spring.ConfigurerImpl    Could not determine bean name
> for instance of class org.apache.cxf.jaxws.JaxWsProxyFactoryBean.
> 2016-08-01 08:12:34,699    LogUtils    admin    Userid1   
> 1470053553514-1964655738    DEBUG    127.0.0.1    SERVER1   
> cxf.configuration.spring.ConfigurerImpl    Could not determine bean name
> for instance of class org.apache.cxf.jaxws.JaxWsClientFactoryBean.
> 2016-08-01 08:12:34,700    ConfigurerImpl    admin    Userid1   
> 1470053553514-1964655738    DEBUG    127.0.0.1    SERVER1   
> cxf.configuration.spring.ConfigurerImpl    Could not find a definition for
> bean with id
> {http://co.com/appname/Infrastructure/MyService_v3_0MyServiceSvcPort.jaxws-client.proxyFactory
> - no injection will be performed.
> 
> These exceptions only occur once.
> 2016-08-01 08:12:34,977    LogUtils    admin    Userid1   
> 1470053553514-1964655738    DEBUG    127.0.0.1    SERVER1   
> cxf.configuration.spring.ConfigurerImpl    Could not determine bean name
> for instance of class
> org.apache.cxf.ws.policy.AssertionBuilderRegistryImpl.
> 2016-08-01 08:12:34,978    LogUtils    admin    Userid1   
> 1470053553514-1964655738    DEBUG    127.0.0.1    SERVER1   
> cxf.configuration.spring.ConfigurerImpl    Could not determine bean name
> for instance of class org.apache.cxf.ws.policy.PolicyBuilderImpl.
> 2016-08-01 08:12:34,979    LogUtils    admin    Userid1   
> 1470053553514-1964655738    DEBUG    127.0.0.1    SERVER1   
> cxf.configuration.spring.ConfigurerImpl    Could not determine bean name
> for instance of class
> org.apache.cxf.ws.policy.attachment.ServiceModelPolicyProvider.
> 2016-08-01 08:12:34,984    LogUtils    admin    Userid1   
> 1470053553514-1964655738    DEBUG    127.0.0.1    SERVER1   
> cxf.configuration.spring.ConfigurerImpl    Could not determine bean name
> for instance of class
> org.apache.cxf.ws.policy.attachment.wsdl11.Wsdl11AttachmentPolicyProvider.
> 2016-08-01 08:12:34,992    LogUtils    admin    Userid1   
> 1470053553514-1964655738    DEBUG    127.0.0.1    SERVER1   
> cxf.configuration.spring.ConfigurerImpl    Could not determine bean name
> for instance of class
> org.apache.cxf.ws.policy.PolicyInterceptorProviderRegistryImpl.
> 
> 
> The applications are deployed into 2 WARs. WAR 1 contains the client and
> its own web services. WAR2 contains the web service implementation being
> called from WAR1. 
> 
> This is the cxf-beans.xml for WAR1...
> <?xml version="1.0" encoding="UTF-8"?>
> <beans     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>         xmlns="http://www.springframework.org/schema/beans";
>         xmlns:jaxws="http://cxf.apache.org/jaxws";
>         xmlns:sec="http://cxf.apache.org/configuration/security";
>         xmlns:context="http://www.springframework.org/schema/context";
>         xmlns:util="http://www.springframework.org/schema/util";
>        
> xmlns:http-conf="http://cxf.apache.org/transports/http/configuration";
>         xmlns:cxf="http://cxf.apache.org/core";
>         xsi:schemaLocation="http://www.springframework.org/schema/beans
> http://www.springframework.org/schema/beans/spring-beans.xsd
>                                http://cxf.apache.org/core
> http://cxf.apache.org/schemas/core.xsd
>                                http://cxf.apache.org/jaxws
> http://cxf.apache.org/schemas/jaxws.xsd
>                               
> http://www.springframework.org/schema/context
> http://www.springframework.org/schema/context/spring-context.xsd
>                                http://www.springframework.org/schema/util
> http://www.springframework.org/schema/util/spring-util.xsd
>                               
> http://cxf.apache.org/transports/http/configuration
> http://cxf.apache.org/schemas/configuration/http-conf.xsd
>                               
> http://cxf.apache.org/configuration/security
> http://cxf.apache.org/schemas/configuration/security.xsd";>
>     
> <import resource="classpath:META-INF/cxf/cxf.xml"/>
>     
> <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
>    
>     
> <bean id="abstractLoggingInterceptor" abstract="true">
>         
> <property name="prettyLogging" value="true"/>
>         
> <property name="limit" value="-1"/>
>     
> </bean>
>    
>     

>     
> <bean id="loggingInInterceptor"
> class="org.apache.cxf.interceptor.LoggingInInterceptor"
> parent="abstractLoggingInterceptor"/>
>     
> <bean id="loggingOutInterceptor"
> class="org.apache.cxf.interceptor.LoggingOutInterceptor"
> parent="abstractLoggingInterceptor"/>
>    
>     

>     
> <cxf:bus>
>         
> <cxf:inInterceptors>
>             
> <ref bean="loggingInInterceptor"/>
>         
> </cxf:inInterceptors>
>         
> <cxf:outInterceptors>
>             
> <ref bean="loggingOutInterceptor"/>
>         
> </cxf:outInterceptors>
>         
> <cxf:outFaultInterceptors>
>             
> <ref bean="loggingOutInterceptor"/>
>         
> </cxf:outFaultInterceptors>
>         
> <cxf:inFaultInterceptors>
>             
> <ref bean="loggingInInterceptor"/>
>         
> </cxf:inFaultInterceptors>
>     
> </cxf:bus>
>    
>     
> <http-conf:conduit
> name="{http://cxf.apache.org}TransportURIResolver.http-conduit";>
>         
> <http-conf:client AutoRedirect="true"/>
>     
> </http-conf:conduit>
>     
> <bean id="usernameTokenValidator"
> class="com.siemens.cto.security.webservice.UsernameTokenValidator"/>
>    
>     
> <bean id="wss4jInInterceptor"
> class="org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor">
>         
> <constructor-arg>
>             
> <map>
>                 
> <entry key="action" value="UsernameToken"/>
>                 
> <entry key="passwordType" value="PasswordText"/>
>             
> </map>
>         
> </constructor-arg>
>     
> </bean>
>    
>     
> <jaxws:endpoint id="GetDocumentMedicationListServiceServiceEndPoint"
> implementor="com.company.applicationname.sc.mrc.document.service.v2.GetDocumentMedicationListServiceV2BD"
> address="/GetDocumentMedicationListV2Service">
>         
> <jaxws:properties>
>             
> <entry key="schema-validation-enabled" value="true"/>
>             
> <entry key="ws-security.ut.validator" value-ref="usernameTokenValidator"/>
>         
> </jaxws:properties>
>         
> <jaxws:inInterceptors>
>             
> <ref bean="wss4jInInterceptor"/>
>         
> </jaxws:inInterceptors>
>     
> </jaxws:endpoint>
>   
> </beans>
> This is the cxf-beans.xml for WAR2 (the web service provider)...
> <?xml version="1.0" encoding="UTF-8"?>
> <beans        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
>               xmlns="http://www.springframework.org/schema/beans"; 
>               xmlns:jaxws="http://cxf.apache.org/jaxws";
>               xmlns:sec="http://cxf.apache.org/configuration/security";
>               xmlns:context="http://www.springframework.org/schema/context"; 
>               xmlns:util="http://www.springframework.org/schema/util";
>        
> xmlns:http-conf="http://cxf.apache.org/transports/http/configuration";
>               xmlns:cxf="http://cxf.apache.org/core";
>         xsi:schemaLocation="http://www.springframework.org/schema/beans
> http://www.springframework.org/schema/beans/spring-beans.xsd
>                                http://cxf.apache.org/core
> http://cxf.apache.org/schemas/core.xsd
>                                http://cxf.apache.org/jaxws
> http://cxf.apache.org/schemas/jaxws.xsd
>                               
> http://www.springframework.org/schema/context
> http://www.springframework.org/schema/context/spring-context.xsd
>                                http://www.springframework.org/schema/util
> http://www.springframework.org/schema/util/spring-util.xsd
>                                                          
> http://cxf.apache.org/transports/http/configuration
> http://cxf.apache.org/schemas/configuration/http-conf.xsd
>                                                          
> http://cxf.apache.org/configuration/security
> http://cxf.apache.org/schemas/configuration/security.xsd";>
>        
>       
> <import resource="classpath:META-INF/cxf/cxf.xml" />
>       
> <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
>       
> <bean id="abstractLoggingInterceptor" abstract="true">
>               
> <property name="prettyLogging" value="true"/>
>       
> </bean>
>       

>       
> <bean id="loggingInInterceptor"
> class="org.apache.cxf.interceptor.LoggingInInterceptor"
> parent="abstractLoggingInterceptor"/>
>       
> <bean id="loggingOutInterceptor"
> class="org.apache.cxf.interceptor.LoggingOutInterceptor"
> parent="abstractLoggingInterceptor"/>
>       
>       

>       
> <cxf:bus>
>               
> <cxf:inInterceptors>
>                       
> <ref bean="loggingInInterceptor"/>
>               
> </cxf:inInterceptors>
>               
> <cxf:outInterceptors>
>                       
> <ref bean="loggingOutInterceptor"/>
>               
> </cxf:outInterceptors>
>               
> <cxf:outFaultInterceptors>
>                       
> <ref bean="loggingOutInterceptor"/>
>               
> </cxf:outFaultInterceptors>
>               
> <cxf:inFaultInterceptors>
>                       
> <ref bean="loggingInInterceptor"/>
>               
> </cxf:inFaultInterceptors>
>       
> </cxf:bus>
>  
>       
>       
> <http-conf:conduit
> name="{http://cxf.apache.org}TransportURIResolver.http-conduit";>
>               
> <http-conf:client AutoRedirect="true" />
>       
> </http-conf:conduit>
>       
>       
> <bean id="usernameTokenValidator"
> class="com.company.cto.security.webservice.UsernameTokenValidator" />
>       
> <bean id="wss4jInInterceptor"
> class="org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor">
>         
> <constructor-arg>
>                 
> <map>
>                         
> <entry key="action" value="UsernameToken" />
>                         
> <entry key="passwordType" value="PasswordText" />
>                 
> </map>
>         
> </constructor-arg>
>       
> </bean>
>       
>       
> <jaxws:endpoint id="IdiDocumentSvcImplServiceEndPoint"
> implementor="com.company.applicationname.idi.service.document.webservices.IdiDocumentSvcImpl"
>  
>               address="/IdiDocumentSvcImplService">
>               
> <jaxws:properties>
>                       
> <entry key="schema-validation-enabled" value="true"/>
>                       
> <entry key="ws-security.ut.validator" value-ref="usernameTokenValidator"
> />
>               
> </jaxws:properties>
>               
> <jaxws:inInterceptors>
>                       
> <ref bean="wss4jInInterceptor" />
>               
> </jaxws:inInterceptors>
>       
> </jaxws:endpoint>
>    
>       
> <jaxws:endpoint id="IdiDocumentSvcImpl_v2ServiceEndPoint"
> implementor="com.company.applicationname.idi.service.document.webservices.IdiDocumentSvcImpl_v2"
>  
>               address="/IdiDocumentSvcImpl_v2Service">
>               
> <jaxws:properties>
>                       
> <entry key="schema-validation-enabled" value="true"/>
>                       
> <entry key="ws-security.ut.validator" value-ref="usernameTokenValidator"
> />
>               
> </jaxws:properties>
>               
> <jaxws:inInterceptors>
>                       
> <ref bean="wss4jInInterceptor" />
>               
> </jaxws:inInterceptors>
>       
> </jaxws:endpoint>
>       
> <jaxws:endpoint id="IdiDocumentSvcImpl_v3ServiceEndPoint"
> implementor="com.company.applicationname.idi.service.document.webservices.IdiDocumentSvcImpl_v3"
>  
>               address="/IdiDocumentSvcImpl_v3Service">
>               
> <jaxws:properties>
>                       
> <entry key="schema-validation-enabled" value="true"/>
>                       
> <entry key="ws-security.ut.validator" value-ref="usernameTokenValidator"
> />
>               
> </jaxws:properties>
>               
> <jaxws:inInterceptors>
>                       
> <ref bean="wss4jInInterceptor" />
>               
> </jaxws:inInterceptors>
>       
> </jaxws:endpoint>
>       
>       
> </beans>
> 
> 
> This is the Java operation that obtains the service endpoint for the
> client.
> 
> public T getEndPoint(WebServicBindingDO webServiceBindingDO) {
>         T port = null;
>         String serviceName = null;
>         Class<?> serviceImplementation =
> webServiceBindingDO.getServiceImplementation();
>         Class<?> serviceInterface =
> webServiceBindingDO.getServiceInterface();
>         String actualServiceName =
> webServiceBindingDO.getActualServiceName();
>         String servicePort = webServiceBindingDO.getServicePort();
>         String targetNamespace = webServiceBindingDO.getTargetNamespace();
>         String wsPropertySetName =
> webServiceBindingDO.getWsPropertySetName();
>         String actualDeployedWSName =
> webServiceBindingDO.getActualDeployedWSName();
>         Boolean setWSSecurityHeader =
> webServiceBindingDO.getWsSecurityHeader();
> 
>         try {
>             if (serviceImplementation == null) {
>                 serviceName = serviceInterface.getSimpleName() +
> "Service";
>                 String serviceEndpointInterfaceNameWithPackage =
> serviceInterface.getCanonicalName();
>                 String serviceNameWithPackage =
> serviceEndpointInterfaceNameWithPackage + "Service";
>                 serviceImplementation =
> Class.forName(serviceNameWithPackage);
> 
>             } else {
>                 serviceName = serviceImplementation.getSimpleName();
>             }
> 
>             if (actualServiceName != null) {
>                 serviceName = actualServiceName;
>             }
> 
>             if (servicePort == null) {
>                 servicePort = serviceInterface.getSimpleName() + "Port";
>             }
> 
>             Constructor<?> constructor =
> serviceImplementation.getConstructor(URL.class, QName.class);
>             Method getPortMethod =
> serviceImplementation.getMethod("getPort", QName.class, Class.class);
>             Object svc = constructor.newInstance(null, new
> QName(targetNamespace, serviceName));
> 
>             if (setWSSecurityHeader) {
>                 SOAPHandler
> <SOAPMessageContext>
>  customSoapHandler = webServiceBindingDO.getCustomSoapHandler();
>                 if (customSoapHandler != null) {
>                     setCustomSoapHandler((Service) svc,
> customSoapHandler);
>                 } else {
>                     setSoapHeaderForWebServiceSecurity((Service) svc);
>                 }
>             }
> 
>             port = (T) getPortMethod.invoke(svc, new
> QName(targetNamespace, servicePort), serviceInterface);
> 
>         } catch (Exception ex) {
>             throw
> ExceptionHelper.createFatalException(ErrorRegistry.ERROR_WS_HELPER_ERROR_CREATING_BINDING,
> ex,
>                     logger, serviceName);
>         }
> 
>         if (port == null) {
>             throw
> ExceptionHelper.createFatalException(ErrorRegistry.ERROR_WS_HELPER_SERVICE_PROXY_NOT_CREATED,
>                     logger, serviceName);
>         }
> 
>         // Set the EndPoint Address
>         ((BindingProvider)
> port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
>                 getServiceURL(wsPropertySetName, serviceName,
> actualDeployedWSName));
> 
>         // Set the Time out
>         ((BindingProvider)
> port).getRequestContext().put(WebServiceBinding.TIMEOUT,
>                 getServiceTimeout(wsPropertySetName, serviceName));
> 
>         return port;
>     }
> 
> 
> 
> 
> The following is a complete trace from a single web service operation.
> This trace repeats for every time an operation is invoked.
> # LOG INFORMATION START
> #  CXF/SOAP WEB SERVICES INFORMATION FILE
> 
> # Initiated New Log at 2016-08-01 08:57:51
> # @@EXTENDED_INFORMATION VM_VERSION:Oracle Corporation
> 25.66-b18,SERVER:W1561520,OS_VERSION:Windows 8.1 amd64 6.3
> # nextCheck: Tue Aug 02 00:00:00 EDT 2016
> # LOG INFORMATION END
> 
> 2016-08-01 08:59:40,466    ServiceImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.jaxws.ServiceImpl    creating
> port for portName
> 2016-08-01 08:59:40,466    ServiceImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.jaxws.ServiceImpl    endpoint
> reference:
> 2016-08-01 08:59:40,466    ServiceImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.jaxws.ServiceImpl    endpoint
> interface:
> 2016-08-01 08:59:40,474    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.jaxws.JaxWsProxyFactoryBean.
> 2016-08-01 08:59:40,474    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.jaxws.JaxWsClientFactoryBean.
> 2016-08-01 08:59:40,475    ConfigurerImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not find a definition for bean with id
> {http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.jaxws-client.proxyFactory
> - no injection will be performed.
> 2016-08-01 08:59:40,475    ReflectionServiceFactoryBean    admin   
> userid1    indexid    INFO    127.0.0.1    server1   
> wsdl.service.factory.ReflectionServiceFactoryBean    Creating Service
> {http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcImpl_v3Service
> from class
> com.company.applicationname.infrastructure.documentservice_v3_0.IdiDocumentSvc
> 2016-08-01 08:59:40,540    JAXBDataBinding    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.jaxb.JAXBDataBinding   
> Created JAXBContext
> "jar:file:/C:/stp/app/webapps/clinicals/WEB-INF/lib/jaxb-impl-2.1.14.jar!/com/sun/xml/bind/v2/runtime/JAXBContextImpl.class
> Build-Id: 2.1.14
> Classes known to this context:
>   [B
>   boolean
>   byte
>   char
>  
> com.company.applicationname.infrastructure.documentservice_v3.BrandGenericInd
>  
> com.company.applicationname.infrastructure.documentservice_v3.ControlledSubstanceDetailsResult
>  
> com.company.applicationname.infrastructure.documentservice_v3.DispensableDrugResult
>   com.company.applicationname.infrastructure.documentservice_v3.Drug
>  
> com.company.applicationname.infrastructure.documentservice_v3.DrugClassification
>  
> com.company.applicationname.infrastructure.documentservice_v3.DrugFormulationsByNdcResult
>  
> com.company.applicationname.infrastructure.documentservice_v3.DrugFormulationsResult
>   com.company.applicationname.infrastructure.documentservice_v3.DrugIdType
>   com.company.applicationname.infrastructure.documentservice_v3.DrugResult
>   com.company.applicationname.infrastructure.documentservice_v3.DrugType
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetAlternativePrescriberLevelFormulationsByClassificationRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetAlternativePrescriberLevelFormulationsByClassificationResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetControlledSubstanceDetailsRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetControlledSubstanceDetailsResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetHospitalFormularyAlternativeDispensableDrugsByClassificationRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetHospitalFormularyAlternativeDispensableDrugsByClassificationResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetMedInfoRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetMedInfoResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetMedsByDrugIdRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetMedsByDrugIdResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetPrescriberLevelFormulationsRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetPrescriberLevelFormulationsResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedByDrugIdRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedByDrugIdResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsInput
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsOutput
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.MedInfoResult
>  
> com.company.applicationname.infrastructure.documentservice_v3.ProductType
>  
> com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugDeaResult
>  
> com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugFormulationsDeaResult
>  
> com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugFormulationsResult
>  
> com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugResult
>  
> com.company.applicationname.infrastructure.documentservice_v3.TransformRequest
>  
> com.company.applicationname.infrastructure.documentservice_v3.TransformRequestDto
>  
> com.company.applicationname.infrastructure.documentservice_v3.TransformResponse
>  
> com.company.applicationname.infrastructure.documentservice_v3.TransformResponseDto
>  
> com.company.applicationname.infrastructure.v2.appname2conceptmanagementcommon.WebServiceException
>  
> com.company.applicationname.soa.common.v2.ArrayOfCommNillableResultMessageType
>  
> com.company.applicationname.soa.common.v2.ArrayOfCommNillableSubstitutionalParameter
>   com.company.applicationname.soa.common.v2.ResultMessageType
>   com.company.applicationname.soa.common.v2.SeverityType
>   com.company.applicationname.soa.common.v2.SubstitutionalParameter
>   com.company.applicationname.soa.common.v2.WebServiceContextType
>   com.company.applicationname.soa.v2.Application
>   com.company.applicationname.soa.v2.ArrayOfRequestors
>   com.company.applicationname.soa.v2.CompanyWebServiceContext
>   com.company.applicationname.soa.v2.Requestor
>   com.company.applicationname.soa.v2.RequestorType
>   com.sun.xml.bind.api.CompositeStructure
>   double
>   float
>   int
>   java.awt.Image
>   java.io.File
>   java.lang.Boolean
>   java.lang.Byte
>   java.lang.Character
>   java.lang.Class
>   java.lang.Double
>   java.lang.Float
>   java.lang.Integer
>   java.lang.Long
>   java.lang.Object
>   java.lang.Short
>   java.lang.String
>   java.lang.Void
>   java.math.BigDecimal
>   java.math.BigInteger
>   java.net.URI
>   java.net.URL
>   java.util.Calendar
>   java.util.Date
>   java.util.GregorianCalendar
>   java.util.UUID
>   javax.activation.DataHandler
>   javax.xml.bind.JAXBElement
>   javax.xml.datatype.Duration
>   javax.xml.datatype.XMLGregorianCalendar
>   javax.xml.namespace.QName
>   javax.xml.transform.Source
>   long
>   short
>   void
> " with classes [class
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsInput,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetMedsByDrugIdRequest,
> class com.company.applicationname.infrastructure.documentservice_v3.Drug,
> class
> com.company.applicationname.infrastructure.documentservice_v3.DrugIdType,
> class
> com.company.applicationname.infrastructure.documentservice_v3.BrandGenericInd,
> class com.company.applicationname.soa.v2.CompanyWebServiceContext, class
> com.company.applicationname.soa.v2.ArrayOfRequestors, class
> com.company.applicationname.soa.v2.Requestor, class
> com.company.applicationname.soa.v2.RequestorType, class
> com.company.applicationname.soa.v2.Application, class
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsOutput,
> class
> com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugFormulationsResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.DrugType,
> class
> com.company.applicationname.infrastructure.documentservice_v3.ProductType,
> class
> com.company.applicationname.infrastructure.documentservice_v3.DrugClassification,
> class
> com.company.applicationname.infrastructure.v2.appname2conceptmanagementcommon.WebServiceException,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetControlledSubstanceDetailsRequest,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetControlledSubstanceDetailsResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.ControlledSubstanceDetailsResult,
> class com.company.applicationname.soa.common.v2.ResultMessageType, class
> com.company.applicationname.soa.common.v2.ArrayOfCommNillableSubstitutionalParameter,
> class com.company.applicationname.soa.common.v2.SubstitutionalParameter,
> class com.company.applicationname.soa.common.v2.SeverityType, class
> com.company.applicationname.infrastructure.documentservice_v3.GetPrescriberLevelFormulationsRequest,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetPrescriberLevelFormulationsResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.DrugFormulationsByNdcResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.DrugFormulationsResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.DrugResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsRequest,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugFormulationsDeaResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugDeaResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetAlternativePrescriberLevelFormulationsByClassificationRequest,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetAlternativePrescriberLevelFormulationsByClassificationResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetHospitalFormularyAlternativeDispensableDrugsByClassificationRequest,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetHospitalFormularyAlternativeDispensableDrugsByClassificationResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.DispensableDrugResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetMedsByDrugIdResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedByDrugIdRequest,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedByDrugIdResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.TransformRequest,
> class
> com.company.applicationname.infrastructure.documentservice_v3.TransformRequestDto,
> class
> com.company.applicationname.infrastructure.documentservice_v3.TransformResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.TransformResponseDto,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetMedInfoRequest,
> class
> com.company.applicationname.infrastructure.documentservice_v3.GetMedInfoResponse,
> class
> com.company.applicationname.infrastructure.documentservice_v3.MedInfoResult,
> class
> com.company.applicationname.infrastructure.documentservice_v3.ObjectFactory,
> class com.company.applicationname.soa.common.v2.ObjectFactory, class
> com.company.applicationname.soa.v2.ObjectFactory, class
> com.company.applicationname.infrastructure.documentservice_v3_0.ObjectFactory,
> class
> com.company.applicationname.infrastructure.v2.appname2conceptmanagementcommon.ObjectFactory].
> 2016-08-01 08:59:40,577    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.bus.managers.ClientLifeCycleManagerImpl.
> 2016-08-01 08:59:40,629    ConfigurerImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not find a definition for bean with id
> {http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcImpl_v3Service
> - no injection will be performed.
> 2016-08-01 08:59:40,630    ConfigurerImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not find a definition for bean with id
> {http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.endpoint
> - no injection will be performed.
> 2016-08-01 08:59:40,631    ServiceImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.jaxws.ServiceImpl    created
> proxy
> 2016-08-01 08:59:40,635    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl    Invoke,
> operation info: [BindingOperationInfo:
> {http://company.com/applicationname/Infrastructure/DocumentService_v3_0}transform],
> params:
> [com.company.applicationname.infrastructure.documentservice_v3.TransformRequest@8f3f54b]
> 2016-08-01 08:59:40,636    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl    set
> requestContext to message
> be{org.apache.cxf.jaxws.context.WrappedMessageContext.SCOPES={org.apache.cxf.message.Message.ENDPOINT_ADDRESS=APPLICATION,
> timeout=APPLICATION},
> org.apache.cxf.message.Message.ENDPOINT_ADDRESS=http://localhost/appname2/soap/IdiDocumentSvcImpl_v3Service,
> java.lang.reflect.Method=public abstract
> com.company.applicationname.infrastructure.documentservice_v3.TransformResponse
> com.company.applicationname.infrastructure.documentservice_v3_0.IdiDocumentSvc.transform(com.company.applicationname.infrastructure.documentservice_v3.TransformRequest)
> throws
> com.company.applicationname.infrastructure.documentservice_v3_0.WebServiceExceptionFaultMessage,
> timeout=10}
> 2016-08-01 08:59:40,640    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.bus.managers.PhaseManagerImpl.
> 2016-08-01 08:59:40,640    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by bus:
> [org.apache.cxf.interceptor.LoggingOutInterceptor@42699ef8,
> org.apache.cxf.ws.policy.PolicyOutInterceptor@565c7152]
> 2016-08-01 08:59:40,641    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by client: []
> 2016-08-01 08:59:40,641    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by endpoint:
> [org.apache.cxf.interceptor.MessageSenderInterceptor@2a3c4b6,
> org.apache.cxf.jaxws.interceptors.SwAOutInterceptor@56f5b914,
> org.apache.cxf.jaxws.interceptors.WrapperClassOutInterceptor@5865636c,
> org.apache.cxf.jaxws.interceptors.HolderOutInterceptor@6d864fd3,
> org.apache.cxf.jaxws.handler.logical.LogicalHandlerOutInterceptor@711ca0a1,
> org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f]
> 2016-08-01 08:59:40,641    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by binding:
> [org.apache.cxf.interceptor.AttachmentOutInterceptor@79d7f6ab,
> org.apache.cxf.interceptor.StaxOutInterceptor@26f0d695,
> org.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@32fd7342,
> org.apache.cxf.wsdl.interceptors.BareOutInterceptor@6c2d0970,
> org.apache.cxf.binding.soap.interceptor.SoapPreProtocolOutInterceptor@2a89d8f0,
> org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor@aede74a]
> 2016-08-01 08:59:40,641    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by databinding: []
> 2016-08-01 08:59:40,647    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.LoggingOutInterceptor@42699ef8 to phase
> pre-stream
> 2016-08-01 08:59:40,647    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.ws.policy.PolicyOutInterceptor@565c7152 to phase setup
> 2016-08-01 08:59:40,648    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.MessageSenderInterceptor@2a3c4b6 to phase
> prepare-send
> 2016-08-01 08:59:40,648    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.interceptors.SwAOutInterceptor@56f5b914 to phase
> pre-logical
> 2016-08-01 08:59:40,648    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.interceptors.WrapperClassOutInterceptor@5865636c to
> phase pre-logical
> 2016-08-01 08:59:40,648    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.interceptors.HolderOutInterceptor@6d864fd3 to phase
> pre-logical
> 2016-08-01 08:59:40,649    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.handler.logical.LogicalHandlerOutInterceptor@711ca0a1
> to phase pre-marshal
> 2016-08-01 08:59:40,649    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f to phase
> pre-protocol-frontend
> 2016-08-01 08:59:40,649    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.AttachmentOutInterceptor@79d7f6ab to phase
> pre-stream
> 2016-08-01 08:59:40,649    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.StaxOutInterceptor@26f0d695 to phase pre-stream
> 2016-08-01 08:59:40,650    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@32fd7342
> to phase pre-logical
> 2016-08-01 08:59:40,650    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.wsdl.interceptors.BareOutInterceptor@6c2d0970 to phase
> marshal
> 2016-08-01 08:59:40,650    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.SoapPreProtocolOutInterceptor@2a89d8f0
> to phase post-logical
> 2016-08-01 08:59:40,650    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor@aede74a to
> phase write
> 2016-08-01 08:59:40,666    ConfigurerImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not find a definition for bean with id
> {http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.http-conduit
> - no injection will be performed.
> 2016-08-01 08:59:40,667    ConfigurerImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not find a definition for bean with id
> http://localhost/appname2/soap/IdiDocumentSvcImpl_v3Service - no injection
> will be performed.
> 2016-08-01 08:59:40,689    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.ws.policy.AssertionBuilderRegistryImpl.
> 2016-08-01 08:59:40,690    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.ws.policy.PolicyBuilderImpl.
> 2016-08-01 08:59:40,691    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.ws.policy.attachment.ServiceModelPolicyProvider.
> 2016-08-01 08:59:40,696    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.ws.policy.attachment.wsdl11.Wsdl11AttachmentPolicyProvider.
> 2016-08-01 08:59:40,699    LogUtils    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.configuration.spring.ConfigurerImpl   
> Could not determine bean name for instance of class
> org.apache.cxf.ws.policy.PolicyInterceptorProviderRegistryImpl.
> 2016-08-01 08:59:40,701    HTTPConduit    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.transport.http.HTTPConduit    Conduit
> '{http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.http-conduit'
> has been (re)configured for plain http.
> 2016-08-01 08:59:40,702    HTTPConduit    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.transport.http.HTTPConduit    No
> Trust Decider configured for Conduit
> '{http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.http-conduit'
> 2016-08-01 08:59:40,702    HTTPConduit    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.transport.http.HTTPConduit    No Auth
> Supplier configured for Conduit
> '{http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.http-conduit'
> 2016-08-01 08:59:40,702    HTTPConduit    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    cxf.transport.http.HTTPConduit    Conduit
> '{http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.http-conduit'
> has been configured for plain http.
> 2016-08-01 08:59:40,703    AbstractObservable    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1    cxf.transport.http.HTTPConduit   
> registering incoming observer: org.apache.cxf.endpoint.ClientImpl@498cb8c2
> 2016-08-01 08:59:40,704    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@15d74f7e was created. Current
> flow:
>   setup [PolicyOutInterceptor]
>   pre-logical [HolderOutInterceptor, SwAOutInterceptor,
> WrapperClassOutInterceptor, SoapHeaderOutFilterInterceptor]
>   post-logical [SoapPreProtocolOutInterceptor]
>   prepare-send [MessageSenderInterceptor]
>   pre-stream [LoggingOutInterceptor, AttachmentOutInterceptor,
> StaxOutInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor]
>   write [SoapOutInterceptor]
>   pre-marshal [LogicalHandlerOutInterceptor]
>   marshal [BareOutInterceptor]
> 
> 2016-08-01 08:59:40,704    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.ws.policy.PolicyOutInterceptor@565c7152
> 2016-08-01 08:59:40,705    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxws.interceptors.HolderOutInterceptor@6d864fd3
> 2016-08-01 08:59:40,706    HolderOutInterceptor    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.interceptors.HolderOutInterceptor    op: [OperationInfo:
> {http://company.com/applicationname/Infrastructure/DocumentService_v3_0}transform]
> 2016-08-01 08:59:40,706    HolderOutInterceptor    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.interceptors.HolderOutInterceptor    op.hasOutput(): true
> 2016-08-01 08:59:40,707    HolderOutInterceptor    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.interceptors.HolderOutInterceptor    op.getOutput().size(): 1
> 2016-08-01 08:59:40,707    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.jaxws.interceptors.SwAOutInterceptor@56f5b914
> 2016-08-01 08:59:40,708    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxws.interceptors.WrapperClassOutInterceptor@5865636c
> 2016-08-01 08:59:40,709    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@32fd7342
> 2016-08-01 08:59:40,710    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.SoapPreProtocolOutInterceptor@2a89d8f0
> 2016-08-01 08:59:40,710    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.MessageSenderInterceptor@2a3c4b6
> 2016-08-01 08:59:40,725    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor@3faa0a47
> to phase prepare-send-ending
> 2016-08-01 08:59:40,726    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@15d74f7e was modified. Current
> flow:
>   setup [PolicyOutInterceptor]
>   pre-logical [HolderOutInterceptor, SwAOutInterceptor,
> WrapperClassOutInterceptor, SoapHeaderOutFilterInterceptor]
>   post-logical [SoapPreProtocolOutInterceptor]
>   prepare-send [MessageSenderInterceptor]
>   pre-stream [LoggingOutInterceptor, AttachmentOutInterceptor,
> StaxOutInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor]
>   write [SoapOutInterceptor]
>   pre-marshal [LogicalHandlerOutInterceptor]
>   marshal [BareOutInterceptor]
>   prepare-send-ending [MessageSenderEndingInterceptor]
> 
> 2016-08-01 08:59:40,726    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.LoggingOutInterceptor@42699ef8
> 2016-08-01 08:59:40,729    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.AttachmentOutInterceptor@79d7f6ab
> 2016-08-01 08:59:40,740    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.StaxOutInterceptor@26f0d695
> 2016-08-01 08:59:40,740    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.StaxOutEndingInterceptor@b053c42 to phase
> pre-stream-ending
> 2016-08-01 08:59:40,741    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@15d74f7e was modified. Current
> flow:
>   setup [PolicyOutInterceptor]
>   pre-logical [HolderOutInterceptor, SwAOutInterceptor,
> WrapperClassOutInterceptor, SoapHeaderOutFilterInterceptor]
>   post-logical [SoapPreProtocolOutInterceptor]
>   prepare-send [MessageSenderInterceptor]
>   pre-stream [LoggingOutInterceptor, AttachmentOutInterceptor,
> StaxOutInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor]
>   write [SoapOutInterceptor]
>   pre-marshal [LogicalHandlerOutInterceptor]
>   marshal [BareOutInterceptor]
>   pre-stream-ending [StaxOutEndingInterceptor]
>   prepare-send-ending [MessageSenderEndingInterceptor]
> 
> 2016-08-01 08:59:40,741    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f
> 2016-08-01 08:59:40,743    HandlerChainInvoker    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.handler.HandlerChainInvoker    invoker for chain size: 1
> 2016-08-01 08:59:40,763    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.saaj.SAAJOutInterceptor$SAAJOutEndingInterceptor@2b7e0bb2
> to phase pre-protocol-ending
> 2016-08-01 08:59:40,764    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@15d74f7e was modified. Current
> flow:
>   setup [PolicyOutInterceptor]
>   pre-logical [HolderOutInterceptor, SwAOutInterceptor,
> WrapperClassOutInterceptor, SoapHeaderOutFilterInterceptor]
>   post-logical [SoapPreProtocolOutInterceptor]
>   prepare-send [MessageSenderInterceptor]
>   pre-stream [LoggingOutInterceptor, AttachmentOutInterceptor,
> StaxOutInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor]
>   write [SoapOutInterceptor]
>   pre-marshal [LogicalHandlerOutInterceptor]
>   marshal [BareOutInterceptor]
>   pre-protocol-ending [SAAJOutEndingInterceptor]
>   pre-stream-ending [StaxOutEndingInterceptor]
>   prepare-send-ending [MessageSenderEndingInterceptor]
> 
> 2016-08-01 08:59:40,764    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor$1@1d5a9f14 to
> phase user-protocol
> 2016-08-01 08:59:40,765    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@15d74f7e was modified. Current
> flow:
>   setup [PolicyOutInterceptor]
>   pre-logical [HolderOutInterceptor, SwAOutInterceptor,
> WrapperClassOutInterceptor, SoapHeaderOutFilterInterceptor]
>   post-logical [SoapPreProtocolOutInterceptor]
>   prepare-send [MessageSenderInterceptor]
>   pre-stream [LoggingOutInterceptor, AttachmentOutInterceptor,
> StaxOutInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor]
>   write [SoapOutInterceptor]
>   pre-marshal [LogicalHandlerOutInterceptor]
>   marshal [BareOutInterceptor]
>   user-protocol
> [org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor.ENDING]
>   pre-protocol-ending [SAAJOutEndingInterceptor]
>   pre-stream-ending [StaxOutEndingInterceptor]
>   prepare-send-ending [MessageSenderEndingInterceptor]
> 
> 2016-08-01 08:59:40,765    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor@aede74a
> 2016-08-01 08:59:40,778    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor$SoapOutEndingInterceptor@419dc5b0
> to phase write-ending
> 2016-08-01 08:59:40,780    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@15d74f7e was modified. Current
> flow:
>   setup [PolicyOutInterceptor]
>   pre-logical [HolderOutInterceptor, SwAOutInterceptor,
> WrapperClassOutInterceptor, SoapHeaderOutFilterInterceptor]
>   post-logical [SoapPreProtocolOutInterceptor]
>   prepare-send [MessageSenderInterceptor]
>   pre-stream [LoggingOutInterceptor, AttachmentOutInterceptor,
> StaxOutInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor]
>   write [SoapOutInterceptor]
>   pre-marshal [LogicalHandlerOutInterceptor]
>   marshal [BareOutInterceptor]
>   user-protocol
> [org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor.ENDING]
>   write-ending [SoapOutEndingInterceptor]
>   pre-protocol-ending [SAAJOutEndingInterceptor]
>   pre-stream-ending [StaxOutEndingInterceptor]
>   prepare-send-ending [MessageSenderEndingInterceptor]
> 
> 2016-08-01 08:59:40,780    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxws.handler.logical.LogicalHandlerOutInterceptor@711ca0a1
> 2016-08-01 08:59:40,780    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.wsdl.interceptors.BareOutInterceptor@6c2d0970
> 2016-08-01 08:59:40,812    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor$1@1d5a9f14
> 2016-08-01 08:59:40,816    HandlerChainInvoker    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.handler.HandlerChainInvoker    invoking handlers, direction:
> outbound
> 2016-08-01 08:59:40,820    HandlerChainInvoker    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.handler.HandlerChainInvoker    invoking handler of type
> com.company.applicationname.sc.scx.ws.handlers.SecuritySoapHandler
> 2016-08-01 08:59:40,831    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor$SoapOutEndingInterceptor@419dc5b0
> 2016-08-01 08:59:40,831    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.saaj.SAAJOutInterceptor$SAAJOutEndingInterceptor@2b7e0bb2
> 2016-08-01 08:59:40,835    Headers    admin    userid1    indexid    DEBUG   
> 127.0.0.1    server1    cxf.transport.http.Headers    Accept: */*
> 2016-08-01 08:59:40,835    Headers    admin    userid1    indexid    DEBUG   
> 127.0.0.1    server1    cxf.transport.http.Headers    SOAPAction:
> "transform"
> 2016-08-01 08:59:40,836    HTTPConduit$WrappedOutputStream    admin   
> userid1    indexid    DEBUG    127.0.0.1    server1   
> cxf.transport.http.HTTPConduit    No Trust Decider for Conduit
> '{http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.http-conduit'.
> An afirmative Trust Decision is assumed.
> 2016-08-01 08:59:40,842   
> URLConnectionHTTPConduit$URLConnectionWrappedOutputStream    admin   
> userid1    indexid    DEBUG    127.0.0.1    server1   
> cxf.transport.http.HTTPConduit    Sending POST Message with Headers to
> http://localhost/appname2/soap/IdiDocumentSvcImpl_v3Service Conduit
> :{http://company.com/applicationname/Infrastructure/DocumentService_v3_0}IdiDocumentSvcPort.http-conduit
> 
> 2016-08-01 08:59:40,845    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.StaxOutEndingInterceptor@b053c42
> 2016-08-01 08:59:40,845    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor@3faa0a47
> 2016-08-01 08:59:40,856    AbstractLoggingInterceptor    admin    userid1   
> indexid    INFO    127.0.0.1    server1   
> services.IdiDocumentSvcImpl_v3Service.IdiDocumentSvcPort.IdiDocumentSvc   
> Outbound Message
> ---------------------------
> ID: 1
> Address: http://localhost/appname2/soap/IdiDocumentSvcImpl_v3Service
> Encoding: UTF-8
> Http-Method: POST
> Content-Type: text/xml
> Headers: {Accept=[*/*], SOAPAction=["transform"]}
> Payload: 
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
>   ...
> </soap:Envelope>
> --------------------------------------
> 2016-08-01 08:59:44,193    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by bus:
> [org.apache.cxf.interceptor.LoggingInInterceptor@44c87a,
> org.apache.cxf.ws.policy.PolicyInInterceptor@323519d2]
> 2016-08-01 08:59:44,193    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by client: []
> 2016-08-01 08:59:44,194    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by endpoint:
> [org.apache.cxf.jaxws.interceptors.WrapperClassInInterceptor@45ebff57,
> org.apache.cxf.jaxws.interceptors.HolderInInterceptor@232d3817,
> org.apache.cxf.jaxws.interceptors.SwAInInterceptor@50c2310,
> org.apache.cxf.frontend.WSDLGetInterceptor@1f6d51ea,
> org.apache.cxf.jaxws.handler.logical.LogicalHandlerInInterceptor@5e61417,
> org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f]
> 2016-08-01 08:59:44,194    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by binding:
> [org.apache.cxf.interceptor.AttachmentInInterceptor@4f41793c,
> org.apache.cxf.interceptor.StaxInInterceptor@2b31c767,
> org.apache.cxf.binding.soap.interceptor.SoapActionInInterceptor@5e2621ea,
> org.apache.cxf.wsdl.interceptors.DocLiteralInInterceptor@6b55d095,
> org.apache.cxf.binding.soap.interceptor.SoapHeaderInterceptor@2f99dc5a,
> org.apache.cxf.binding.soap.interceptor.ReadHeadersInterceptor@a363c31,
> org.apache.cxf.binding.soap.interceptor.StartBodyInterceptor@65f065ec,
> org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor@2064d0bf,
> org.apache.cxf.binding.soap.interceptor.MustUnderstandInterceptor@417eb3e5]
> 2016-08-01 08:59:44,194    ClientImpl    admin    userid1    indexid   
> DEBUG    127.0.0.1    server1    apache.cxf.endpoint.ClientImpl   
> Interceptors contributed by databinging:
> [org.apache.cxf.jaxb.attachment.JAXBAttachmentSchemaValidationHack@7a12c84f]
> 2016-08-01 08:59:44,195    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.LoggingInInterceptor@44c87a to phase receive
> 2016-08-01 08:59:44,195    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.ws.policy.PolicyInInterceptor@323519d2 to phase receive
> 2016-08-01 08:59:44,195    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.interceptors.WrapperClassInInterceptor@45ebff57 to
> phase post-logical
> 2016-08-01 08:59:44,195    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.interceptors.HolderInInterceptor@232d3817 to phase
> pre-invoke
> 2016-08-01 08:59:44,196    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.interceptors.SwAInInterceptor@50c2310 to phase
> pre-invoke
> 2016-08-01 08:59:44,196    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.frontend.WSDLGetInterceptor@1f6d51ea to phase read
> 2016-08-01 08:59:44,197    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.handler.logical.LogicalHandlerInInterceptor@5e61417
> to phase pre-protocol-frontend
> 2016-08-01 08:59:44,197    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f to phase
> pre-protocol-frontend
> 2016-08-01 08:59:44,197    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.AttachmentInInterceptor@4f41793c to phase
> receive
> 2016-08-01 08:59:44,198    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.StaxInInterceptor@2b31c767 to phase post-stream
> 2016-08-01 08:59:44,198    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.SoapActionInInterceptor@5e2621ea
> to phase read
> 2016-08-01 08:59:44,198    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.wsdl.interceptors.DocLiteralInInterceptor@6b55d095 to phase
> unmarshal
> 2016-08-01 08:59:44,199    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.SoapHeaderInterceptor@2f99dc5a to
> phase unmarshal
> 2016-08-01 08:59:44,199    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.ReadHeadersInterceptor@a363c31 to
> phase read
> 2016-08-01 08:59:44,199    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.StartBodyInterceptor@65f065ec to
> phase read
> 2016-08-01 08:59:44,200    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor@2064d0bf to
> phase post-protocol
> 2016-08-01 08:59:44,200    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.binding.soap.interceptor.MustUnderstandInterceptor@417eb3e5
> to phase pre-protocol
> 2016-08-01 08:59:44,201    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.jaxb.attachment.JAXBAttachmentSchemaValidationHack@7a12c84f
> to phase post-protocol
> 2016-08-01 08:59:44,201    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@1cab1de4 was created. Current
> flow:
>   receive [LoggingInInterceptor, PolicyInInterceptor,
> AttachmentInInterceptor]
>   post-stream [StaxInInterceptor]
>   read [WSDLGetInterceptor, ReadHeadersInterceptor,
> SoapActionInInterceptor, StartBodyInterceptor]
>   pre-protocol [MustUnderstandInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor,
> LogicalHandlerInInterceptor]
>   post-protocol [CheckFaultInterceptor,
> JAXBAttachmentSchemaValidationHack]
>   unmarshal [DocLiteralInInterceptor, SoapHeaderInterceptor]
>   post-logical [WrapperClassInInterceptor]
>   pre-invoke [SwAInInterceptor, HolderInInterceptor]
> 
> 2016-08-01 08:59:44,201    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.LoggingInInterceptor@44c87a
> 2016-08-01 08:59:44,206    AbstractLoggingInterceptor    admin    userid1   
> indexid    INFO    127.0.0.1    server1   
> services.IdiDocumentSvcImpl_v3Service.IdiDocumentSvcPort.IdiDocumentSvc   
> Inbound Message
> ----------------------------
> ID: 1
> Response-Code: 200
> Encoding: UTF-8
> Content-Type: text/xml;charset=UTF-8
> Headers: {connection=[Keep-Alive], content-type=[text/xml;charset=UTF-8],
> Date=[Mon, 01 Aug 2016 12:59:44 GMT], Keep-Alive=[timeout=5, max=100],
> Server=[Apache-Coyote/1.1], transfer-encoding=[chunked],
> Vary=[Accept-Encoding]}
> Payload: 
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
>   
> <soap:Body>
> ...
> </soap:Body>
> </soap:Envelope>
> --------------------------------------
> 2016-08-01 08:59:44,207    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.ws.policy.PolicyInInterceptor@323519d2
> 2016-08-01 08:59:44,210    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.ws.policy.PolicyVerificationInInterceptor@5e6d7011 to phase
> pre-invoke
> 2016-08-01 08:59:44,211    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@1cab1de4 was modified. Current
> flow:
>   receive [LoggingInInterceptor, PolicyInInterceptor,
> AttachmentInInterceptor]
>   post-stream [StaxInInterceptor]
>   read [WSDLGetInterceptor, ReadHeadersInterceptor,
> SoapActionInInterceptor, StartBodyInterceptor]
>   pre-protocol [MustUnderstandInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor,
> LogicalHandlerInInterceptor]
>   post-protocol [CheckFaultInterceptor,
> JAXBAttachmentSchemaValidationHack]
>   unmarshal [DocLiteralInInterceptor, SoapHeaderInterceptor]
>   post-logical [WrapperClassInInterceptor]
>   pre-invoke [SwAInInterceptor, HolderInInterceptor,
> PolicyVerificationInInterceptor]
> 
> 2016-08-01 08:59:44,211    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.AttachmentInInterceptor@4f41793c
> 2016-08-01 08:59:44,211    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.StaxInInterceptor@2b31c767
> 2016-08-01 08:59:44,214    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Adding interceptor
> org.apache.cxf.interceptor.StaxInEndingInterceptor@22683fb1 to phase
> pre-invoke
> 2016-08-01 08:59:44,214    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Chain
> org.apache.cxf.phase.PhaseInterceptorChain@1cab1de4 was modified. Current
> flow:
>   receive [LoggingInInterceptor, PolicyInInterceptor,
> AttachmentInInterceptor]
>   post-stream [StaxInInterceptor]
>   read [WSDLGetInterceptor, ReadHeadersInterceptor,
> SoapActionInInterceptor, StartBodyInterceptor]
>   pre-protocol [MustUnderstandInterceptor]
>   pre-protocol-frontend [SOAPHandlerInterceptor,
> LogicalHandlerInInterceptor]
>   post-protocol [CheckFaultInterceptor,
> JAXBAttachmentSchemaValidationHack]
>   unmarshal [DocLiteralInInterceptor, SoapHeaderInterceptor]
>   post-logical [WrapperClassInInterceptor]
>   pre-invoke [StaxInEndingInterceptor, SwAInInterceptor,
> HolderInInterceptor, PolicyVerificationInInterceptor]
> 
> 2016-08-01 08:59:44,214    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.frontend.WSDLGetInterceptor@1f6d51ea
> 2016-08-01 08:59:44,215    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.ReadHeadersInterceptor@a363c31
> 2016-08-01 08:59:44,224    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.SoapActionInInterceptor@5e2621ea
> 2016-08-01 08:59:44,225    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.StartBodyInterceptor@65f065ec
> 2016-08-01 08:59:44,225    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.MustUnderstandInterceptor@417eb3e5
> 2016-08-01 08:59:44,225    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f
> 2016-08-01 08:59:44,228    HandlerChainInvoker    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.handler.HandlerChainInvoker    invoking handlers, direction:
> inbound
> 2016-08-01 08:59:44,228    HandlerChainInvoker    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.handler.HandlerChainInvoker    invoking handler of type
> com.company.applicationname.sc.scx.ws.handlers.SecuritySoapHandler
> 2016-08-01 08:59:44,229    HandlerChainInvoker    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> cxf.jaxws.handler.HandlerChainInvoker    closing protocol handlers -
> handler count:1
> 2016-08-01 08:59:44,229    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxws.handler.logical.LogicalHandlerInInterceptor@5e61417
> 2016-08-01 08:59:44,229    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor@2064d0bf
> 2016-08-01 08:59:44,230    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxb.attachment.JAXBAttachmentSchemaValidationHack@7a12c84f
> 2016-08-01 08:59:44,230    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.wsdl.interceptors.DocLiteralInInterceptor@6b55d095
> 2016-08-01 08:59:44,243    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.binding.soap.interceptor.SoapHeaderInterceptor@2f99dc5a
> 2016-08-01 08:59:44,244    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.jaxws.interceptors.WrapperClassInInterceptor@45ebff57
> 2016-08-01 08:59:44,244    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.interceptor.StaxInEndingInterceptor@22683fb1
> 2016-08-01 08:59:44,244    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.jaxws.interceptors.SwAInInterceptor@50c2310
> 2016-08-01 08:59:44,245    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor org.apache.cxf.jaxws.interceptors.HolderInInterceptor@232d3817
> 2016-08-01 08:59:44,245    PhaseInterceptorChain    admin    userid1   
> indexid    DEBUG    127.0.0.1    server1   
> apache.cxf.phase.PhaseInterceptorChain    Invoking handleMessage on
> interceptor
> org.apache.cxf.ws.policy.PolicyVerificationInInterceptor@5e6d7011
> 2016-08-01 08:59:44,245    PolicyVerificationInInterceptor    admin   
> userid1    indexid    DEBUG    127.0.0.1    server1   
> cxf.ws.policy.PolicyVerificationInInterceptor    Verified policies for
> inbound message.





--
View this message in context: 
http://cxf.547215.n5.nabble.com/How-to-avoid-Could-not-determine-bean-name-for-instance-of-class-and-Could-not-find-a-definition-for-tp5770926p5770929.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to