Summary:Web service client is throwing a large number of exceptions(but
operates successfully). This is observed when executing a performance testof
our application. In a peak hour test, we are seeing more than 100,000exceptions
from this issue. On an average, each set of these exceptions consume15-17 ms.
Can you help determine why these exceptions are occurringand how to avoid them?
Not sure if this is a configuration error or a clientimplementation error.
Runtime environment:Java 1.8.0_66Tomcat 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; alsodeploys 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 2Apache CXF
3.0.0-milestone2 Details:As stated above we are observing a set of exceptions
wheninvoking a web service client operation. The application operates
correctly,but a performance profiler detected a large number of exceptions when
running aload test. The exceptions where not otherwise visible (other than from
theprofiler) until we configured the log4j log level to DEBUG. These are the
exceptions; they repeat for every clientoperation.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 instanceof 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 instanceof 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 withid
{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 instanceof 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 instanceof 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 instanceof 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 instanceof
classorg.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 instanceof class
org.apache.cxf.ws.policy.PolicyInterceptorProviderRegistryImpl. The
applications are deployed into 2 WARs. WAR 1 containsthe client and its own web
services. WAR2 contains the web serviceimplementation 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/beanshttp://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/contexthttp://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/configurationhttp://cxf.apache.org/schemas/configuration/http-conf.xsd
http://cxf.apache.org/configuration/securityhttp://cxf.apache.org/schemas/configuration/security.xsd">
<importresource="classpath:META-INF/cxf/cxf.xml"/>
<importresource="classpath:META-INF/cxf/cxf-servlet.xml"/>
<beanid="abstractLoggingInterceptor" abstract="true">
<propertyname="prettyLogging" value="true"/> <propertyname="limit"
value="-1"/> </bean> <!-- Use CXFprovided logging beans -->
<beanid="loggingInInterceptor"
class="org.apache.cxf.interceptor.LoggingInInterceptor"parent="abstractLoggingInterceptor"/>
<beanid="loggingOutInterceptor"class="org.apache.cxf.interceptor.LoggingOutInterceptor"parent="abstractLoggingInterceptor"/>
<!-- Addinbound and outbound interceptors so we can log the
request/response --> <cxf:bus> <cxf:inInterceptors>
<refbean="loggingInInterceptor"/> </cxf:inInterceptors>
<cxf:outInterceptors> <refbean="loggingOutInterceptor"/>
</cxf:outInterceptors> <cxf:outFaultInterceptors>
<refbean="loggingOutInterceptor"/> </cxf:outFaultInterceptors>
<cxf:inFaultInterceptors> <refbean="loggingInInterceptor"/>
</cxf:inFaultInterceptors> </cxf:bus>
<http-conf:conduitname="{http://cxf.apache.org}TransportURIResolver.http-conduit">
<http-conf:client AutoRedirect="true"/> </http-conf:conduit>
<beanid="usernameTokenValidator"class="com.siemens.cto.security.webservice.UsernameTokenValidator"/>
<beanid="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:endpointid="GetDocumentMedicationListServiceServiceEndPoint"implementor="com.company.applicationname.sc.mrc.document.service.v2.GetDocumentMedicationListServiceV2BD"address="/GetDocumentMedicationListV2Service">
<jaxws:properties> <entrykey="schema-validation-enabled"
value="true"/>
<entrykey="ws-security.ut.validator"value-ref="usernameTokenValidator"/>
</jaxws:properties> <jaxws:inInterceptors>
<refbean="wss4jInInterceptor"/> </jaxws:inInterceptors>
</jaxws:endpoint> </beans> This is the cxf-beans.xml for WAR2 (the web
serviceprovider)...<?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/beanshttp://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/contexthttp://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/utilhttp://www.springframework.org/schema/util/spring-util.xsd
http://cxf.apache.org/transports/http/configurationhttp://cxf.apache.org/schemas/configuration/http-conf.xsd
http://cxf.apache.org/configuration/securityhttp://cxf.apache.org/schemas/configuration/security.xsd">
<importresource="classpath:META-INF/cxf/cxf.xml" />
<importresource="classpath:META-INF/cxf/cxf-servlet.xml" />
<beanid="abstractLoggingInterceptor" abstract="true">
<propertyname="prettyLogging" value="true"/> </bean>
<!-- UseCXF provided logging beans -->
<beanid="loggingInInterceptor"class="org.apache.cxf.interceptor.LoggingInInterceptor"parent="abstractLoggingInterceptor"/>
<beanid="loggingOutInterceptor"class="org.apache.cxf.interceptor.LoggingOutInterceptor"parent="abstractLoggingInterceptor"/>
<!-- Addinbound and outbound interceptors so we can log
the request/response --> <cxf:bus>
<cxf:inInterceptors>
<refbean="loggingInInterceptor"/> </cxf:inInterceptors>
<cxf:outInterceptors>
<refbean="loggingOutInterceptor"/>
</cxf:outInterceptors> <cxf:outFaultInterceptors>
<refbean="loggingOutInterceptor"/>
</cxf:outFaultInterceptors>
<cxf:inFaultInterceptors>
<refbean="loggingInInterceptor"/>
</cxf:inFaultInterceptors> </cxf:bus>
<http-conf:conduitname="{http://cxf.apache.org}TransportURIResolver.http-conduit">
<http-conf:clientAutoRedirect="true" />
</http-conf:conduit>
<beanid="usernameTokenValidator"class="com.company.cto.security.webservice.UsernameTokenValidator"/>
<beanid="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:endpointid="IdiDocumentSvcImplServiceEndPoint"
implementor="com.company.applicationname.idi.service.document.webservices.IdiDocumentSvcImpl"
address="/IdiDocumentSvcImplService">
<jaxws:properties>
<entrykey="schema-validation-enabled" value="true"/>
<entrykey="ws-security.ut.validator"
value-ref="usernameTokenValidator"/> </jaxws:properties>
<jaxws:inInterceptors>
<refbean="wss4jInInterceptor" />
</jaxws:inInterceptors> </jaxws:endpoint>
<jaxws:endpointid="IdiDocumentSvcImpl_v2ServiceEndPoint"implementor="com.company.applicationname.idi.service.document.webservices.IdiDocumentSvcImpl_v2"
address="/IdiDocumentSvcImpl_v2Service">
<jaxws:properties>
<entrykey="schema-validation-enabled" value="true"/>
<entrykey="ws-security.ut.validator"value-ref="usernameTokenValidator"
/> </jaxws:properties>
<jaxws:inInterceptors>
<refbean="wss4jInInterceptor" /> </jaxws:inInterceptors>
</jaxws:endpoint>
<jaxws:endpointid="IdiDocumentSvcImpl_v3ServiceEndPoint"implementor="com.company.applicationname.idi.service.document.webservices.IdiDocumentSvcImpl_v3"
address="/IdiDocumentSvcImpl_v3Service">
<jaxws:properties>
<entrykey="schema-validation-enabled" value="true"/>
<entrykey="ws-security.ut.validator"value-ref="usernameTokenValidator"
/> </jaxws:properties>
<jaxws:inInterceptors>
<refbean="wss4jInInterceptor" /> </jaxws:inInterceptors>
</jaxws:endpoint> </beans> This is the Java
operation that obtains the service endpointfor the client. public T
getEndPoint(WebServicBindingDO webServiceBindingDO){ T port = null;
StringserviceName = null; Class<?>serviceImplementation =
webServiceBindingDO.getServiceImplementation(); Class<?>serviceInterface
= webServiceBindingDO.getServiceInterface(); StringactualServiceName =
webServiceBindingDO.getActualServiceName(); StringservicePort =
webServiceBindingDO.getServicePort(); StringtargetNamespace =
webServiceBindingDO.getTargetNamespace(); StringwsPropertySetName =
webServiceBindingDO.getWsPropertySetName(); StringactualDeployedWSName =
webServiceBindingDO.getActualDeployedWSName();
BooleansetWSSecurityHeader = webServiceBindingDO.getWsSecurityHeader();
try { if(serviceImplementation == null) { serviceName
= serviceInterface.getSimpleName() + "Service";
StringserviceEndpointInterfaceNameWithPackage =
serviceInterface.getCanonicalName();
StringserviceNameWithPackage = 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); MethodgetPortMethod =
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, newQName(targetNamespace,
servicePort), serviceInterface); } catch(Exception ex) {
throwExceptionHelper.createFatalException(ErrorRegistry.ERROR_WS_HELPER_ERROR_CREATING_BINDING,ex,
logger, serviceName); } if (port ==null) {
throwExceptionHelper.createFatalException(ErrorRegistry.ERROR_WS_HELPER_SERVICE_PROXY_NOT_CREATED,
logger, serviceName); } // Set the
EndPointAddress
((BindingProvider)port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
getServiceURL(wsPropertySetName, serviceName,
actualDeployedWSName)); // Set theTime out
((BindingProvider)port).getRequestContext().put(WebServiceBinding.TIMEOUT,
getServiceTimeout(wsPropertySetName, serviceName)); return
port; } The following is a complete trace from a single web
serviceoperation. This trace repeats for every time an operation is invoked.#
LOG INFORMATION START# CXF/SOAP WEBSERVICES INFORMATION FILE # Initiated New
Log at 2016-08-01 08:57:51# @@EXTENDED_INFORMATION VM_VERSION:Oracle
Corporation25.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 portName2016-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 instanceof 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 instanceof 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
withid
{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_v3Servicefrom
classcom.company.applicationname.infrastructure.documentservice_v3_0.IdiDocumentSvc2016-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.classBuild-Id:
2.1.14Classes 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
[classcom.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsInput,classcom.company.applicationname.infrastructure.documentservice_v3.GetMedsByDrugIdRequest,class
com.company.applicationname.infrastructure.documentservice_v3.Drug,
classcom.company.applicationname.infrastructure.documentservice_v3.DrugIdType,
classcom.company.applicationname.infrastructure.documentservice_v3.BrandGenericInd,class
com.company.applicationname.soa.v2.CompanyWebServiceContext,
classcom.company.applicationname.soa.v2.ArrayOfRequestors,
classcom.company.applicationname.soa.v2.Requestor,
classcom.company.applicationname.soa.v2.RequestorType,
classcom.company.applicationname.soa.v2.Application, class
com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsOutput,classcom.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugFormulationsResult,class
com.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugResult,class
com.company.applicationname.infrastructure.documentservice_v3.DrugType,classcom.company.applicationname.infrastructure.documentservice_v3.ProductType,class
com.company.applicationname.infrastructure.documentservice_v3.DrugClassification,classcom.company.applicationname.infrastructure.v2.appname2conceptmanagementcommon.WebServiceException,classcom.company.applicationname.infrastructure.documentservice_v3.GetControlledSubstanceDetailsRequest,class
com.company.applicationname.infrastructure.documentservice_v3.GetControlledSubstanceDetailsResponse,classcom.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,
classcom.company.applicationname.soa.common.v2.SeverityType,
classcom.company.applicationname.infrastructure.documentservice_v3.GetPrescriberLevelFormulationsRequest,classcom.company.applicationname.infrastructure.documentservice_v3.GetPrescriberLevelFormulationsResponse,class
com.company.applicationname.infrastructure.documentservice_v3.DrugFormulationsByNdcResult,classcom.company.applicationname.infrastructure.documentservice_v3.DrugFormulationsResult,class
com.company.applicationname.infrastructure.documentservice_v3.DrugResult,class
com.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsRequest,classcom.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedsByDrugIdsResponse,classcom.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugFormulationsDeaResult,classcom.company.applicationname.infrastructure.documentservice_v3.RepresentativeDrugDeaResult,classcom.company.applicationname.infrastructure.documentservice_v3.GetAlternativePrescriberLevelFormulationsByClassificationRequest,class
com.company.applicationname.infrastructure.documentservice_v3.GetAlternativePrescriberLevelFormulationsByClassificationResponse,classcom.company.applicationname.infrastructure.documentservice_v3.GetHospitalFormularyAlternativeDispensableDrugsByClassificationRequest,class
com.company.applicationname.infrastructure.documentservice_v3.GetHospitalFormularyAlternativeDispensableDrugsByClassificationResponse,classcom.company.applicationname.infrastructure.documentservice_v3.DispensableDrugResult,class
com.company.applicationname.infrastructure.documentservice_v3.GetMedsByDrugIdResponse,classcom.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedByDrugIdRequest,classcom.company.applicationname.infrastructure.documentservice_v3.GetRepresentativeMedByDrugIdResponse,classcom.company.applicationname.infrastructure.documentservice_v3.TransformRequest,classcom.company.applicationname.infrastructure.documentservice_v3.TransformRequestDto,class
com.company.applicationname.infrastructure.documentservice_v3.TransformResponse,classcom.company.applicationname.infrastructure.documentservice_v3.TransformResponseDto,classcom.company.applicationname.infrastructure.documentservice_v3.GetMedInfoRequest,class
com.company.applicationname.infrastructure.documentservice_v3.GetMedInfoResponse,classcom.company.applicationname.infrastructure.documentservice_v3.MedInfoResult,classcom.company.applicationname.infrastructure.documentservice_v3.ObjectFactory,class
com.company.applicationname.soa.common.v2.ObjectFactory,
classcom.company.applicationname.soa.v2.ObjectFactory,
classcom.company.applicationname.infrastructure.documentservice_v3_0.ObjectFactory,classcom.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 instanceof 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
withid
{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
withid{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 proxy2016-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
messagebe{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
abstractcom.company.applicationname.infrastructure.documentservice_v3.TransformResponsecom.company.applicationname.infrastructure.documentservice_v3_0.IdiDocumentSvc.transform(com.company.applicationname.infrastructure.documentservice_v3.TransformRequest)throwscom.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 instanceof 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
interceptororg.apache.cxf.interceptor.LoggingOutInterceptor@42699ef8 to phase
pre-stream2016-08-01 08:59:40,647 PhaseInterceptorChain admin userid1
indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.ws.policy.PolicyOutInterceptor@565c7152 to phase
setup2016-08-01 08:59:40,648 PhaseInterceptorChain admin userid1
indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.interceptor.MessageSenderInterceptor@2a3c4b6 to
phaseprepare-send2016-08-01 08:59:40,648 PhaseInterceptorChain admin
userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.interceptors.SwAOutInterceptor@56f5b914 to
phasepre-logical2016-08-01 08:59:40,648 PhaseInterceptorChain admin
userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.interceptors.WrapperClassOutInterceptor@5865636c
to phasepre-logical2016-08-01 08:59:40,648 PhaseInterceptorChain admin
userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.interceptors.HolderOutInterceptor@6d864fd3 to
phasepre-logical2016-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@711ca0a1to
phase pre-marshal2016-08-01 08:59:40,649 PhaseInterceptorChain admin
userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f to
phasepre-protocol-frontend2016-08-01 08:59:40,649 PhaseInterceptorChain
admin userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.interceptor.AttachmentOutInterceptor@79d7f6ab to
phasepre-stream2016-08-01 08:59:40,649 PhaseInterceptorChain admin
userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.interceptor.StaxOutInterceptor@26f0d695 to phase
pre-stream2016-08-01 08:59:40,650 PhaseInterceptorChain admin userid1
indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@32fd7342to
phase pre-logical2016-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@6c2d0970to phase
marshal2016-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@2a89d8f0to
phase post-logical2016-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@aede74ato phase
write2016-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 withid
{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
withid http://localhost/appname2/soap/IdiDocumentSvcImpl_v3Service - no
injectionwill 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
instanceof 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
instanceof 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 instanceof 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 instanceof 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 instanceof 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@498cb8c22016-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@565c71522016-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@6d864fd32016-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(): true2016-08-01 08:59:40,707 HolderOutInterceptor admin
userid1 indexid DEBUG 127.0.0.1 server1
cxf.jaxws.interceptors.HolderOutInterceptor op.getOutput().size():
12016-08-01 08:59:40,707 PhaseInterceptorChain admin userid1 indexid
DEBUG 127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain
Invoking handleMessage on
interceptororg.apache.cxf.jaxws.interceptors.SwAOutInterceptor@56f5b9142016-08-01
08:59:40,708 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.jaxws.interceptors.WrapperClassOutInterceptor@5865636c2016-08-01
08:59:40,709 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.interceptor.SoapHeaderOutFilterInterceptor@32fd73422016-08-01
08:59:40,710 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.interceptor.SoapPreProtocolOutInterceptor@2a89d8f02016-08-01
08:59:40,710 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.interceptor.MessageSenderInterceptor@2a3c4b62016-08-01
08:59:40,725 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor@3faa0a47to
phase prepare-send-ending2016-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
interceptororg.apache.cxf.interceptor.LoggingOutInterceptor@42699ef82016-08-01
08:59:40,729 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.interceptor.AttachmentOutInterceptor@79d7f6ab2016-08-01
08:59:40,740 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.interceptor.StaxOutInterceptor@26f0d6952016-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@b053c42to phase
pre-stream-ending2016-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
interceptororg.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f2016-08-01
08:59:40,743 HandlerChainInvoker admin userid1 indexid DEBUG
127.0.0.1 server1 cxf.jaxws.handler.HandlerChainInvoker invoker for chain
size: 12016-08-01 08:59:40,763 PhaseInterceptorChain admin userid1
indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.binding.soap.saaj.SAAJOutInterceptor$SAAJOutEndingInterceptor@2b7e0bb2to
phase pre-protocol-ending2016-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@1d5a9f14to phase
user-protocol2016-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
interceptororg.apache.cxf.binding.soap.interceptor.SoapOutInterceptor@aede74a2016-08-01
08:59:40,778 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.binding.soap.interceptor.SoapOutInterceptor$SoapOutEndingInterceptor@419dc5b0to
phase write-ending2016-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
interceptororg.apache.cxf.jaxws.handler.logical.LogicalHandlerOutInterceptor@711ca0a12016-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@6c2d09702016-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@1d5a9f142016-08-01
08:59:40,816 HandlerChainInvoker admin userid1 indexid DEBUG
127.0.0.1 server1 cxf.jaxws.handler.HandlerChainInvoker invoking
handlers, direction: outbound2016-08-01 08:59:40,820 HandlerChainInvoker
admin userid1 indexid DEBUG 127.0.0.1 server1
cxf.jaxws.handler.HandlerChainInvoker invoking handler of
typecom.company.applicationname.sc.scx.ws.handlers.SecuritySoapHandler2016-08-01
08:59:40,831 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.interceptor.SoapOutInterceptor$SoapOutEndingInterceptor@419dc5b02016-08-01
08:59:40,831 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.saaj.SAAJOutInterceptor$SAAJOutEndingInterceptor@2b7e0bb22016-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
tohttp://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@b053c422016-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@3faa0a472016-08-01
08:59:40,856 AbstractLoggingInterceptor admin userid1 indexid INFO
127.0.0.1 server1
services.IdiDocumentSvcImpl_v3Service.IdiDocumentSvcPort.IdiDocumentSvc
Outbound Message---------------------------ID:
1Address:http://localhost/appname2/soap/IdiDocumentSvcImpl_v3ServiceEncoding:
UTF-8Http-Method: POSTContent-Type: text/xmlHeaders: {Accept=[*/*],
SOAPAction=["transform"]}Payload:
<soap:Envelopexmlns: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
interceptororg.apache.cxf.interceptor.LoggingInInterceptor@44c87a to phase
receive2016-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@323519d2to phase receive2016-08-01
08:59:44,195 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.interceptors.WrapperClassInInterceptor@45ebff57
to phasepost-logical2016-08-01 08:59:44,195 PhaseInterceptorChain admin
userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.interceptors.HolderInInterceptor@232d3817 to
phase pre-invoke2016-08-01 08:59:44,196 PhaseInterceptorChain admin
userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.interceptors.SwAInInterceptor@50c2310 to phase
pre-invoke2016-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@1f6d51eato phase read2016-08-01
08:59:44,197 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.handler.logical.LogicalHandlerInInterceptor@5e61417
tophase pre-protocol-frontend2016-08-01 08:59:44,197 PhaseInterceptorChain
admin userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f to
phasepre-protocol-frontend2016-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@4f41793cto phase
receive2016-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@2b31c767to phase
post-stream2016-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@5e2621eato
phase read2016-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@6b55d095to phase
unmarshal2016-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@2f99dc5ato phase
unmarshal2016-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@a363c31to phase
read2016-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@65f065ecto phase
read2016-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@2064d0bfto phase
post-protocol2016-08-01 08:59:44,200 PhaseInterceptorChain admin userid1
indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.binding.soap.interceptor.MustUnderstandInterceptor@417eb3e5
tophase pre-protocol2016-08-01 08:59:44,201 PhaseInterceptorChain admin
userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.jaxb.attachment.JAXBAttachmentSchemaValidationHack@7a12c84f
tophase post-protocol2016-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
interceptororg.apache.cxf.interceptor.LoggingInInterceptor@44c87a2016-08-01
08:59:44,206 AbstractLoggingInterceptor admin userid1 indexid INFO
127.0.0.1 server1
services.IdiDocumentSvcImpl_v3Service.IdiDocumentSvcPort.IdiDocumentSvc
Inbound Message----------------------------ID: 1Response-Code: 200Encoding:
UTF-8Content-Type: text/xml;charset=UTF-8Headers:
{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:Envelopexmlns: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
interceptororg.apache.cxf.ws.policy.PolicyInInterceptor@323519d22016-08-01
08:59:44,210 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.ws.policy.PolicyVerificationInInterceptor@5e6d7011 to
phasepre-invoke2016-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
interceptororg.apache.cxf.interceptor.AttachmentInInterceptor@4f41793c2016-08-01
08:59:44,211 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.interceptor.StaxInInterceptor@2b31c7672016-08-01
08:59:44,214 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Adding
interceptororg.apache.cxf.interceptor.StaxInEndingInterceptor@22683fb1 to phase
pre-invoke2016-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
interceptororg.apache.cxf.frontend.WSDLGetInterceptor@1f6d51ea2016-08-01
08:59:44,215 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.interceptor.ReadHeadersInterceptor@a363c312016-08-01
08:59:44,224 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.interceptor.SoapActionInInterceptor@5e2621ea2016-08-01
08:59:44,225 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.interceptor.StartBodyInterceptor@65f065ec2016-08-01
08:59:44,225 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.interceptor.MustUnderstandInterceptor@417eb3e52016-08-01
08:59:44,225 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor@a5a9a8f2016-08-01
08:59:44,228 HandlerChainInvoker admin userid1 indexid DEBUG
127.0.0.1 server1 cxf.jaxws.handler.HandlerChainInvoker invoking
handlers, direction: inbound2016-08-01 08:59:44,228 HandlerChainInvoker
admin userid1 indexid DEBUG 127.0.0.1 server1
cxf.jaxws.handler.HandlerChainInvoker invoking handler of
typecom.company.applicationname.sc.scx.ws.handlers.SecuritySoapHandler2016-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:12016-08-01 08:59:44,229 PhaseInterceptorChain
admin userid1 indexid DEBUG 127.0.0.1 server1
apache.cxf.phase.PhaseInterceptorChain Invoking handleMessage on
interceptororg.apache.cxf.jaxws.handler.logical.LogicalHandlerInInterceptor@5e614172016-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@2064d0bf2016-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@7a12c84f2016-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@6b55d0952016-08-01
08:59:44,243 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.binding.soap.interceptor.SoapHeaderInterceptor@2f99dc5a2016-08-01
08:59:44,244 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.jaxws.interceptors.WrapperClassInInterceptor@45ebff572016-08-01
08:59:44,244 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.interceptor.StaxInEndingInterceptor@22683fb12016-08-01
08:59:44,244 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.jaxws.interceptors.SwAInInterceptor@50c23102016-08-01
08:59:44,245 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.jaxws.interceptors.HolderInInterceptor@232d38172016-08-01
08:59:44,245 PhaseInterceptorChain admin userid1 indexid DEBUG
127.0.0.1 server1 apache.cxf.phase.PhaseInterceptorChain Invoking
handleMessage on
interceptororg.apache.cxf.ws.policy.PolicyVerificationInInterceptor@5e6d70112016-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.