use of nl.nn.adapterframework.receivers.ServiceDispatcher_ServiceProxy in project iaf by ibissource.
the class IbisWebServiceSender method configure.
public void configure() throws ConfigurationException {
if (ibisInstance == null) {
ibisInstance = AppConstants.getInstance().getResolvedProperty("instance.name");
}
try {
proxy = new ServiceDispatcher_ServiceProxy();
proxy.setEndPoint(new URL(getEndPoint()));
} catch (MalformedURLException e) {
throw new ConfigurationException("IbisWebServiceSender cannot find URL from [" + getEndPoint() + "]", e);
}
}
Aggregations