Hello,
My application requires that I run a java application from an SSIS package and for this I created an executable .jar file of the java program and put the path of the .jar file in the executable property of the Execute Process Task . This .jar file works when I double click on it. However, when I run it using my SSIS package I get the following error:
Error: 0xC0029151 at Execute Process Task, Execute Process Task: In Executing file path "" at "", The process exit code was "1" while the expected was "0".
Now obviously if I set success value to 1, the error goes away. However, no output is produced. Running the .jar file of a simple helloworld program works flawlessly. But, my .jar uses text files, other libraries and references etc. Could that be the reason for the error. If so how could I rectify it?
Thanks.