I want to call windows(cmd) command in webMethods developer so that i am using makeSystemCall service from PSUtilities package but whenever i am trying to run this service i am getting below error:
Could not run ‘makeSystemCall’.
java.lang.NullPointerException
Can anyone please help me on this it’s really very urgent.
webMethods version :- 8.0
IntegrationServer :- Solaris 10
command :- cmd /c ping ‘some address’ -t
I have disable the config entry code in java service so i hope no need to edit config file.
You cannot “override” the “IS layer.” All services run on IS, nowhere else. You cannot invoke “cmd” on Solaris–it doesn’t exist.
It is quite common for those new to Developer/IS to believe that services run in Developer run locally. They do not. They run on IS. Always. There is no way to change that.
He doesn’t need to create a Java service. There is already one available. Developer does not execute services. IS does. So only commands & programs on the IS host can be executed using the services identified in this thread.