Executing wrapped java app in SSIS

1.5k views Asked by At

I've made an appliaction in java which is performing some operations on the database. Then I wrapped jar using launch4j (making exe) and it's working fine when I double-click it. But if I put it as a part of SSIS process (in Execute Process Task) it doesn't make anything. SSIS is marking it as Executed just miliseconds after beginning while it should last at least 10 seconds.

I have already been using Execute Process Task for unzipping files with 7-zip and it worked fine.

How should I run java application as a part of SSIS process?

EDIT: Now I think that my app is executing but ssis doesn't wait for it to ends but continues process while java app is executing :( Any hints will be appreciated

1

There are 1 answers

0
Damian On

Solved. The problem was when I was making exe file I picked 'GUI application' option instead of 'Console' Now it's working fine.