Nick Thomas

Greenhorn
+ Follow
since May 26, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Nick Thomas

I was able to resolve my issue. I had tried the 32 bit version first, but had not fully uninstalled it; I had to manually remove the old service as mentioned here:

http://forums.sun.com/thread.jspa?threadID=5121172&start=45

Once I started fresh with the 64-bit JDK and the latest Windows Service Installer, everything worked fine. I had read about problems with the x64 versions of everything, but apparently those are outdated, since it seems the 64-bit versions work best for 2008 R2.

Thanks for the info.

13 years ago
Before you tell me to just use Linux, let me say this is a downward-directed server upgrade. I have tried getting it to get it working several ways, using the 32-bit and 64-bit JVMs, replacing the binaries and moving around msvcr71.dll, but to no avail. Getting this error in the jakarta service log:

[2010-09-21 10:05:16] [985 prunsrv.c] [error] Failed creating java
[2010-09-21 10:05:16] [1280 prunsrv.c] [error] ServiceStart returned 1
[2010-09-21 10:05:16] [info] Run service finished.
[2010-09-21 10:05:16] [info] Commons Daemon procrun finished.
[2010-09-21 10:06:24] [info] Commons Daemon procrun (1.0.2.0) started
[2010-09-21 10:06:24] [info] Running Service...
[2010-09-21 10:06:24] [info] Starting service...
[2010-09-21 10:06:24] [206 javajni.c] [error] The specified module could not be found.

Any help with this setup would be greatly appreciated!
13 years ago
Probably a good idea to switch to Tapestry 5, since it sounds like you're using Tapestry 4 which is no longer supported. Also check out Jumpstart (http://jumpstart.doublenegative.com.au:8080/jumpstart/)
Maybe you're making it too complicated?

You might try changing all the other loops to formState="values" or just volatile="true". When checked="documentField.checked", Tapestry sets documentField.checked to true, is this all you're trying to do? Then in onSuccess():

If you want the changes to show up the next time the page is refreshed, you have to persist them in a database and load them again in setupRender(), or mark them with @Persist.