本文整理匯總了Java中org.oscm.ws.WSPortConnector類的典型用法代碼示例。如果您正苦於以下問題:Java WSPortConnector類的具體用法?Java WSPortConnector怎麽用?Java WSPortConnector使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
WSPortConnector類屬於org.oscm.ws包,在下文中一共展示了WSPortConnector類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getOperationServiceAdapter
import org.oscm.ws.WSPortConnector; //導入依賴的package包/類
public static OperationServiceAdapter getOperationServiceAdapter(
TechnicalProductOperation operation, Integer wsTimeout,
String username, String password) throws IOException,
WSDLException, ParserConfigurationException {
String target = operation.getActionUrl();
if (Strings.isEmpty(target)) {
throw new SaaSSystemException(
String.format(
"Failed to retrieve service endpoint for service operation '%s', as the target is not defined.",
Long.valueOf(operation.getKey())));
}
WSPortConnector portConnector = new WSPortConnector(target, username,
password);
SupportedOperationVersions supportedVersion = getSupportedVersion(portConnector);
OperationServiceAdapter adapter = getAdapterForVersion(supportedVersion);
final Object port = portConnector.getPort(
supportedVersion.getLocalWSDL(),
supportedVersion.getServiceClass(), wsTimeout);
adapter.setOperationService(port);
return adapter;
}
示例2: getSupportedVersion
import org.oscm.ws.WSPortConnector; //導入依賴的package包/類
SupportedVersions getSupportedVersion(WSPortConnector portConnector) {
WSPortDescription portDescription = portConnector.getPortDescription();
String targetNamespaceFromWsdl = portDescription.getTargetNamespace();
SupportedVersions supportedNS = SupportedVersions
.getForVersion(portDescription.getVersion());
if (supportedNS == null) {
supportedNS = SupportedVersions
.getForNamespaceString(targetNamespaceFromWsdl);
}
if (supportedNS == null) {
String message = "Unsupported namespace for PaymentServiceProvider: %s";
throw new SaaSSystemException(String.format(message,
targetNamespaceFromWsdl));
}
return supportedNS;
}
示例3: getSupportedVersion
import org.oscm.ws.WSPortConnector; //導入依賴的package包/類
static SupportedVersions getSupportedVersion(WSPortConnector portConnector) {
WSPortDescription portDescription = portConnector.getPortDescription();
String targetVersionFromWsdl = portDescription.getVersion();
SupportedVersions supportedVersion = SupportedVersions
.getForVersionString(targetVersionFromWsdl);
if (supportedVersion == null) {
String targetNamespaceFromWsdl = portDescription
.getTargetNamespace();
supportedVersion = SupportedVersions
.getForNamespaceString(targetNamespaceFromWsdl);
if (supportedVersion == null) {
String message = "Unsupported namespace for NotifcationService: %s";
throw new SaaSSystemException(String.format(message,
targetNamespaceFromWsdl));
}
}
return supportedVersion;
}
示例4: getSupportedVersion
import org.oscm.ws.WSPortConnector; //導入依賴的package包/類
static SupportedOperationVersions getSupportedVersion(
WSPortConnector portConnector) {
WSPortDescription portDescription = portConnector.getPortDescription();
String targetVersionFromWsdl = portDescription.getVersion();
SupportedOperationVersions supportedVersion = SupportedOperationVersions
.getForVersionString(targetVersionFromWsdl);
if (supportedVersion == null) {
supportedVersion = SupportedOperationVersions.VERSION_1_5;
}
return supportedVersion;
}
示例5: getPort
import org.oscm.ws.WSPortConnector; //導入依賴的package包/類
@Override
public PaymentServiceProviderAdapter getPort(String wsdl)
throws IOException, WSDLException, ParserConfigurationException {
WSPortConnector portConnector = new WSPortConnector(wsdl, null, null);
SupportedVersions supportedNS = getSupportedVersion(portConnector);
PaymentServiceProviderAdapter adapter = getAdapterForNamespace(supportedNS);
final Object port = portConnector.getPort(supportedNS.getLocalWSDL(),
supportedNS.getServiceClass(), timeout);
adapter.setPaymentServiceProviderService(port);
return adapter;
}
示例6: setup
import org.oscm.ws.WSPortConnector; //導入依賴的package包/類
@Before
public void setup() throws Exception {
pcMock = mock(WSPortConnector.class);
}
示例7: getNotificationServiceAdapter
import org.oscm.ws.WSPortConnector; //導入依賴的package包/類
public static INotificationServiceAdapter getNotificationServiceAdapter(
TriggerDefinition td, Integer wsTimeout,
ConfigurationServiceLocal cs, DataService ds) throws IOException,
WSDLException, ParserConfigurationException {
String target = td.getTarget();
if (target == null) {
throw new SaaSSystemException(
String.format(
"Failed to retrieve service endpoint for trigger definition '%s', as the target is not defined.",
Long.valueOf(td.getKey())));
}
INotificationServiceAdapter adapter = null;
switch (td.getTargetType()) {
case WEB_SERVICE:
WSPortConnector portConnector = new WSPortConnector(target, null,
null);
SupportedVersions supportedVersion = getSupportedVersion(portConnector);
adapter = getAdapterForVersion(supportedVersion, ds);
final Object port = portConnector.getPort(
supportedVersion.getLocalWSDL(),
supportedVersion.getServiceClass(), wsTimeout);
initAdapter(cs, ds, adapter, port);
break;
case REST_SERVICE:
Client c = ClientBuilder.newClient();
WebTarget r = c.target(td.getTarget());
adapter = new RestNotificationServiceAdapter();
initAdapter(cs, ds, adapter, r);
break;
default:
throw new SaaSSystemException(
String.format(
"Failed to retrieve service endpoint for trigger definition '%s', as the target type is not defined.",
Long.valueOf(td.getKey())));
}
return adapter;
}