I use Weblogic server for my application and am trying to automate data source update task.
So, I have a script (UpdateDataSource.py) which updates the data source to what I need. Now, I need Weblogic to restart once the data source has been updated. So I am trying something like;
call wlst UpdateDataSource.py
call startWebLogic.cmd
But my question is after I update the data source through script, I do not want to directly start the weblogic server (I need to close the existing one and then start) How do I automate the same?