本文整理汇总了Java中org.springframework.ws.client.core.support.WebServiceGatewaySupport类的典型用法代码示例。如果您正苦于以下问题:Java WebServiceGatewaySupport类的具体用法?Java WebServiceGatewaySupport怎么用?Java WebServiceGatewaySupport使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
WebServiceGatewaySupport类属于org.springframework.ws.client.core.support包,在下文中一共展示了WebServiceGatewaySupport类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: apply
import org.springframework.ws.client.core.support.WebServiceGatewaySupport; //导入依赖的package包/类
/**
* Applies WS-Security signature creation, validation or both configuration to implementation of {@link WebServiceGatewaySupport}.
*
* @param ws Webservice client implementation
* @param keyStore KeyStore
* @param keyStorePswd Password for KeyStore
* @param trustStore TrustStore
* @param trustStorePswd Password for TrustStore
*/
public void apply(WebServiceGatewaySupport ws, Resource keyStore, String keyStorePswd,
String keyAlias, String keyPassword,
Resource trustStore, String trustStorePswd) {
ClientInterceptor[] interceptors = new ClientInterceptor[] {createInterceptor(keyStore, keyStorePswd,
keyAlias, keyPassword, trustStore, trustStorePswd)};
ws.setInterceptors(interceptors);
}
示例2: createServer
import org.springframework.ws.client.core.support.WebServiceGatewaySupport; //导入依赖的package包/类
/**
* Creates a {@code MockWebServiceServer} instance based on the given {@link ApplicationContext}.
* Supports interceptors that will be applied on the incomming message. Please note that acctually the interceptoes will
* be added to the {@link ClientInterceptor} set on the client side. it's an ugly hack, but that's the only way to do it
* without reimplementing the whole testing library. I hope it will change in next releases.
* @param applicationContext
* @param interceptors
* @return
*/
public static MockWebServiceServer createServer(ApplicationContext applicationContext, EndpointInterceptor[] interceptors) {
MockStrategiesHelper strategiesHelper = new MockStrategiesHelper(applicationContext);
WebServiceTemplate webServiceTemplate = strategiesHelper.getStrategy(WebServiceTemplate.class);
if (webServiceTemplate != null) {
return createServer(webServiceTemplate, interceptors);
}
WebServiceGatewaySupport gatewaySupport = strategiesHelper.getStrategy(WebServiceGatewaySupport.class);
if (gatewaySupport != null) {
return createServer(gatewaySupport, interceptors);
}
throw new IllegalArgumentException(
"Could not find either WebServiceTemplate or WebServiceGatewaySupport in application context");
}
示例3: apply
import org.springframework.ws.client.core.support.WebServiceGatewaySupport; //导入依赖的package包/类
/**
* Adds the message interceptor for soap message logging.
* @param ws Webservice class
* @param serviceName name of the service
*/
public void apply(WebServiceGatewaySupport ws, String serviceName) {
MessageInterceptor interceptor = new MessageInterceptor(service, serviceName);
ws.setInterceptors(asArray(interceptor));
}
示例4: apply
import org.springframework.ws.client.core.support.WebServiceGatewaySupport; //导入依赖的package包/类
/**
* Applies one-way or two-way SSL configuration to implementation of {@link WebServiceGatewaySupport}.
* Adds also RemoveSoapHeadersInterceptor, because otherwise there will be Content-Length already present exceptions
*
* @param ws Webservice client implementation
* @param keyStore KeyStore
* @param keyStorePswd Password for KeyStore
* @param trustStore TrustStore
* @param trustStorePswd Password for TrustStore
*/
public void apply(WebServiceGatewaySupport ws, Resource keyStore,
String keyStorePswd, Resource trustStore, String trustStorePswd) {
WebServiceMessageSender messageSender = getMessageSender(keyStore, keyStorePswd, trustStore, trustStorePswd);
ws.setMessageSender(messageSender);
}