I have written a simple java service which connects to a given list of ISs(given as input) with the username and password provided(also being given as input) and am using
actionOutput = Service.doInvoke( “wm.server.services”, “serviceDelete”, input ); to delete a service on all the ISs.
flow service name picked at run time and creating an IData object -
IData input = IDataFactory.create();
IDataCursor inputCursor = input.getCursor();
IDataUtil.put( inputCursor, “service”, actionService ); actionService— service that is to be deleted.
when i run this service it successfully deletes the flow service on the same IS, but throws unknown service exception while deleting on other IS.