Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current Restore this Version View Page History

« Previous Version 5 Next »

// SimplifiedSync simple

SendResponse = SimplifiedSyncEndpoint.send(Send send) {

SendReponse = AuditInterceptor.audit(InvocationContext) {

    // log to file (audit-xxx.log)
    log(RequestInformation)

    SendResponse = FaultInterceptor.interceptException(InvocationContext) {

        try () 

		SendResponse = SimplifiedSyncDispatcherMessageProcessor.doProcess(Send) {

			SendResponse = ContentValidationDecorator.doProcess(Send) {

				// checks the soap envelope (test flag, compression method, etc)
				ValidationState = ContentChecker.check(Send)
				
				// See SimplifiedSyncCoreMessageProcessor diagram
				SendResponse = SimplifiedSyncCoreMessageProcessor.doProcess(Send)

			}

		}

        
		
        catch ()

    }

    log(ResponseInformation)

}

}