Iam trying to develop a web application, where when a button is clicked the servlet has to be started with some command line arguments. This is required as the servlet class runs a corba client. The servlet class cannot invoke the corba client without these command line arguments ” -ORBInitialHost xxx.xx.xx.xx -ORBInitialPort 1050” where x’s are the ip address.The program runs fine when i execute it as a standalone java application with the following command “java HelloClient -ORBInitialHost xxx.xx.xx.xx -ORBInitialPort 1050“
Iam trying to develop a web application, where when a button is clicked the
Share
You need to create your
ORBand pass it those parameters as JavaProperties. Something like: