For detailed usage information about the API changes listed below, also see the Integrator Acquisition System API Guide.
A new ServiceAddress class has been added to represent the explicit address of the services provided by IAS.
// Connect to the IAS Server.
IasCrawlerLocator locator = IasCrawlerLocator.create("localhost", 8510);
IasCrawler crawler = locator.getService();
ServiceAddress address = new ServiceAddress("localhost", 8401, contextPath);
IasCrawlerLocator locator = IasCrawlerLocator.create(address);
IasCrawler crawler = locator.getService();
A new ServiceAddress class has been added to represent the explicit address of the services provided by IAS.
ServiceAddress address = new ServiceAddress("localhost", 8401, contextPath);
ComponentInstanceManagerLocator locator = ComponentInstanceManagerLocator.create(address);
ComponentInstanceManager cim = locator.getService();
A new ServiceAddress class has been added to represent the explicit address of the services provided by IAS.
ServiceAddress address = new ServiceAddress("localhost", 8401, contextPath);
RecordStoreLocator locator = RecordStoreLocator.create(address, "MyCrawl");
RecordStore rs = locator.getService();