|
From: Boris H. <bs...@gm...> - 2010-08-24 17:46:00
|
This wrapper software was recommended to me by Codehouse Jetty documentation. I read all the help and decided to download it. What was my surprise (very unpleasant one) when I discovered that my server configuration is missing from the community version! Windows x86 64 bit! The authors were taken by greed and decided that they will charge almost 90 euro for that wrapper (at minimum). So people with Windows x64 have more money to waste is that it? I was so pissed off! I will never pay a single cent for this software! I easily solved my simple need (to start my server on system startup) with Windows task scheduler. For less time that took me to read the Java Service Wrapper docs, I might add. Here is my scheduler task exported as an XML. You can import it and use it in any version of Windows Vista or Windows 7. FREE OF CHARGE! I will also post this on my blog and notify Codehouse to stop recommending that software. <?xml version="1.0" encoding="UTF-16"?> <Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> <RegistrationInfo> <Date>2010-08-24T18:11:18.0716</Date> <Author>GreenHouseV\bsh666</Author> </RegistrationInfo> <Triggers> <BootTrigger> <Enabled>true</Enabled> </BootTrigger> </Triggers> <Principals> <Principal id="Author"> <UserId>SYSTEM</UserId> <RunLevel>LeastPrivilege</RunLevel> </Principal> </Principals> <Settings> <IdleSettings> <Duration>PT10M</Duration> <WaitTimeout>PT1H</WaitTimeout> <StopOnIdleEnd>true</StopOnIdleEnd> <RestartOnIdle>false</RestartOnIdle> </IdleSettings> <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy> <DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries> <StopIfGoingOnBatteries>true</StopIfGoingOnBatteries> <AllowHardTerminate>true</AllowHardTerminate> <StartWhenAvailable>false</StartWhenAvailable> <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable> <AllowStartOnDemand>true</AllowStartOnDemand> <Enabled>true</Enabled> <Hidden>false</Hidden> <RunOnlyIfIdle>false</RunOnlyIfIdle> <WakeToRun>false</WakeToRun> <ExecutionTimeLimit>PT0S</ExecutionTimeLimit> <Priority>7</Priority> </Settings> <Actions Context="Author"> <Exec> <Command>C:\jetty-7.1.6.v20100715\start.cmd</Command> <WorkingDirectory>C:\jetty-7.1.6.v20100715</WorkingDirectory> </Exec> </Actions> </Task> |