Interface SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder

    • Method Detail

      • allowResponseAttachmentOverride

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder allowResponseAttachmentOverride​(boolean allowResponseAttachmentOverride)
        Option to override soap response attachments in in/out exchange with attachments from the actual service layer. If the invoked service appends or rewrites the soap attachments this option when set to true, allows the modified soap attachments to be overwritten in in/out message attachments. The option is a: boolean type. Default: false Group: producer
      • allowResponseAttachmentOverride

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder allowResponseAttachmentOverride​(String allowResponseAttachmentOverride)
        Option to override soap response attachments in in/out exchange with attachments from the actual service layer. If the invoked service appends or rewrites the soap attachments this option when set to true, allows the modified soap attachments to be overwritten in in/out message attachments. The option will be converted to a boolean type. Default: false Group: producer
      • allowResponseHeaderOverride

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder allowResponseHeaderOverride​(boolean allowResponseHeaderOverride)
        Option to override soap response header in in/out exchange with header info from the actual service layer. If the invoked service appends or rewrites the soap header this option when set to true, allows the modified soap header to be overwritten in in/out message headers. The option is a: boolean type. Default: false Group: producer
      • allowResponseHeaderOverride

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder allowResponseHeaderOverride​(String allowResponseHeaderOverride)
        Option to override soap response header in in/out exchange with header info from the actual service layer. If the invoked service appends or rewrites the soap header this option when set to true, allows the modified soap header to be overwritten in in/out message headers. The option will be converted to a boolean type. Default: false Group: producer
      • lazyStartProducer

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder lazyStartProducer​(boolean lazyStartProducer)
        Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a: boolean type. Default: false Group: producer
      • lazyStartProducer

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder lazyStartProducer​(String lazyStartProducer)
        Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option will be converted to a boolean type. Default: false Group: producer
      • timeout

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder timeout​(int timeout)
        Sets the socket read timeout (in milliseconds) while invoking a webservice using the producer, see URLConnection.setReadTimeout() and CommonsHttpMessageSender.setReadTimeout(). This option works when using the built-in message sender implementations: CommonsHttpMessageSender and HttpUrlConnectionMessageSender. One of these implementations will be used by default for HTTP based services unless you customize the Spring WS configuration options supplied to the component. If you are using a non-standard sender, it is assumed that you will handle your own timeout configuration. The built-in message sender HttpComponentsMessageSender is considered instead of CommonsHttpMessageSender which has been deprecated, see HttpComponentsMessageSender.setReadTimeout(). The option is a: int type. Group: producer
      • timeout

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder timeout​(String timeout)
        Sets the socket read timeout (in milliseconds) while invoking a webservice using the producer, see URLConnection.setReadTimeout() and CommonsHttpMessageSender.setReadTimeout(). This option works when using the built-in message sender implementations: CommonsHttpMessageSender and HttpUrlConnectionMessageSender. One of these implementations will be used by default for HTTP based services unless you customize the Spring WS configuration options supplied to the component. If you are using a non-standard sender, it is assumed that you will handle your own timeout configuration. The built-in message sender HttpComponentsMessageSender is considered instead of CommonsHttpMessageSender which has been deprecated, see HttpComponentsMessageSender.setReadTimeout(). The option will be converted to a int type. Group: producer
      • webServiceTemplate

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder webServiceTemplate​(Object webServiceTemplate)
        Option to provide a custom WebServiceTemplate. This allows for full control over client-side web services handling; like adding a custom interceptor or specifying a fault resolver, message sender or message factory. The option is a: org.springframework.ws.client.core.WebServiceTemplate type. Group: producer
      • webServiceTemplate

        default SpringWebserviceEndpointBuilderFactory.SpringWebserviceEndpointProducerBuilder webServiceTemplate​(String webServiceTemplate)
        Option to provide a custom WebServiceTemplate. This allows for full control over client-side web services handling; like adding a custom interceptor or specifying a fault resolver, message sender or message factory. The option will be converted to a org.springframework.ws.client.core.WebServiceTemplate type. Group: producer