I got the tip from Crazy Bob and decided to try it tonight. Win2VNC basically allows you to connect to a server (via VNC) and you can simply move your mouse onto that VNC-ed machine and voila - your mouse and keyboard are on that monitor. It's almost too cool to describe. The only issues I found where that it doesn't work well with multiple monitors. I have two monitors plugged into my XP desktop, and if I choose "West" as my direction (to switch to my PowerBooks monitor), then that works, but I can't get it onto my primary monitor - it only shows up on the 2nd monitor. The issue is better described on the user forums. The easy workaround is to go "North" to switch monitors. The other annoying bugs are no mouse wheel support and no Alt+Esc support. This thread has a few patches for this. The first patch I tried seems to work the best, with both Alt+Esc and wheel support. This other one has an installer, but Alt+Esc didn't work for me.
If you have a laptop sitting next to a desktop - you've got to try this software - it's what you've always wanted.
This release fixes a few compatibility issues with Resin and other databases - specifically PostgreSQL and DB2. The major new functionality in this release is Easy Database Switching. Basically, you can very easily switch from using MySQL to PostgreSQL by only changing a few properties in your build.properties. I implemented this on my current project last week because I do most of my development (at the client) on a PowerBook. The client wants to deploy onto a DB2 database - and there is not DB2 install for the Mac. Since Hibernate allows you to easily switch between databases, I figured I could develop using MySQL on the Mac, but have the default (CVS version) use DB2. One of the things I didn't want to do was to have a build.properties.sample, because I love projects that "just work" when you type "ant". So I changed the the build process so that database.properties is generated from default settings (MySQL) or the settings in build.properties (if specified). As part of the build process, Ant looks for the following build.properties files:
- ${user.home}/.${ant.project.name}-build.properties
- ${user.home}/.build.properties
- build.properties
What this allows you to do is to take your customized database settings and put them in ~/.build.properties and they'll be applied to any AppFuse-derived project. This makes it easy to keep the CVS version of your project tied to one database and a developer's local version tied to a different database.
While it's true that you'll most likely only talk to one database during the duration of your project, this exercise proves that it's easy to migrate from MySQL to another database. It also proves that AppFuse can easily integrate with other database (at least as of this release). Slick stuff IMO.
One of the best parts about developing AppFuse is that it's not a library. As a developer, I don't really have to concern myself with backwards compatibility. This means that new functionality can be added quickly and easily and old stuff can be ripped out. It's too bad all OS "products" can be this easy.
What about AppFuse's future? Check out the AppFuse Roadmap to see what I'm thinking about.
View the Release Notes and Download. A couple of the bugs I found when running AppFuse on Resin have been fixed: <description> is now a valid property of <user-data-constraint> and the following JSTL statement should work as well.
<fmt:message key="login.signup">
<fmt:param><c:url value="/signup.jsp"/></fmt:param>
</fmt:message>