|
From: Christian M. <chr...@ta...> - 2012-09-24 01:47:23
|
Hello Alex, thank you very much for your mail. It's currently not possible to customize the binary on other platforms other than Windows. Basically because those binaries don't embed resource files as the Windows executables, containing the icon, default conf file path and splash screen. There are however 2 ways to achieve similar results as the --passthrough option. - if you call the binary directly you can use the '--' parameter. All parameter after the '--' will be treated as application parameters and be passed through to your application. for instance: bin/wrapper -c ../conf/wrapper.conf -- myparam1 myparam2 [...] - if you use the shell script, you can set the variables PASS_THROUGH and FIXED_COMMAND, so the script will create the command line like above and launch the Wrapper, e.g.: bin/myApp.sh myparam1 myparam2 [...] FIXED_COMMAND can be either 'start' or 'console'. If you don't set that variable, you have to specify the command on the command line, e.g. : bin/myApp.sh console myparam1 myparam2 I hope this information helps you out. Best Regards, Christian Mueller Tanuki Software, Ltd. On Sat, Sep 22, 2012 at 12:53 AM, Alexandros Kritikos <al...@kr...>wrote: > Hi Leif, > > I was wondering if its possible to customize the executable on platforms > other than windows. If not could you elaborate on the reason for this? Also > how can i get the same behavior of --passthrough without customizing the > executable on platforms like OSX, Linux etc? > > Many thanks in advance, > > Alex Kritikos > Software AG > > > > > ------------------------------------------------------------------------------ > Got visibility? > Most devs has no idea what their production app looks like. > Find out how fast your code is with AppDynamics Lite. > http://ad.doubleclick.net/clk;262219671;13503038;y? > http://info.appdynamics.com/FreeJavaPerformanceDownload.html > _______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user > |