|
From: Alexandros K. <al...@kr...> - 2012-10-17 10:09:40
|
Hi Leif/Christian, we are using for approach but we need to generate the custom binaries during the installation of our product. When we do that with the regular wrapper.exe everything works as expected but when using wrapperw.exe we get a popup dialog which is breaking our installation. Can this dialog be somehow suppressed ? Thanks, Alex Kritikos Software AG On Sep 24, 2012, at 4:46 AM, Christian Mueller <chr...@ta...> wrote: > 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 > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user |