|
From: Christian M. <chr...@ta...> - 2012-12-28 02:19:57
|
Hello Bashiro, thank you very much for your mail. Please note that the working directory of the Wrapper is by default the directory, the Wrapper binary (on windows wrapper.exe) is located. So for relative path references, this location is the start location for the reference. For instance the following structure: ./bin/wrapper ./lib/myjar.jar in order to add to the class path the file 'myjar.jar' using relative path, you would use the following line: wrapper.java.classpath.1=../lib/myjar.jar Because the working directory is bin, so to point to myjar.jar, you need to go down from the bin directory with '..' and from there go up to lib/myjar.jar. If I change the structure now to the following: ./wrapper ./lib/myjar.jar The working directory will be different, so the class path needs to get changed to the following: wrapper.java.classpath.1=./lib/myjar.jar If you still have any problems getting up and running, please send me your conf and log file and I would be happy to take a look into them. Best Regards, Christian Tanuki Software, Ltd. On Fri, Dec 28, 2012 at 10:31 AM, Bashiro <ba...@my...> wrote: > Hello, > If I want the wrapper to reside in my application's directory without > changing the rest of directories, what should I edit in the conf file ?. > Example; I want the wrapper application to be in "myapp/", while the rest > of the wrapper files in their perspective folders are unchanged. > What should I change in the conf file? > I have tried many options without success. > I am using a jar application. Is this possible ? > > Thanks in advance > Bashiro > Drammen-Norway > > - > > > ------------------------------------------------------------------------------ > Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and > much more. Get web development skills now with LearnDevNow - > 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > SALE $99.99 this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122812 > _______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user > |