Checking Your WebObjects Version
This is a question that arises now and again on
the wo-dev list. Pierre Frisch provided a tip on which file to examine, so open
your terminal and enter:
$ cat
/System/Library/Frameworks/JavaWebObjects.framework/Resources/version.plist
The results will be something like this
indicating 5.2.3 in this situation:
$
cat
/System/Library/Frameworks/JavaWebObjects.framework/Resources/version.plist
<?xml
version="1.0"
encoding="UTF-8"?>
<!DOCTYPE plist
PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist
version="1.0">
<dict>
<key>BuildVersion</key>
<string>1</string>
<key>CFBundleShortVersionString</key>
<string>5.2.3</string>
<key>ProjectName</key>
<string>WOJFramework</string>
<key>SourceVersion</key>
<string>9350000</string>
</dict>
</plist>
Posted: Wednesday - June 22, 2005 at 06:32 AM