Sunday, January 09, 2005

jSyncManager for Palm PDA's

jSyncManager

The jSyncManager is a open source, Java implementation of a HotSync compatible protocol stack, set of data abstraction objects, development tools, and applications allowing developers and end-users to synchronize Palm devices with any Java based system. HotSync your Palm with jSyncManager and Java.

AspectJ - Eclipse Projects

AspectJ - Eclipse Projects

JavaServer[tm] Faces Technology - Download

JavaServer[tm] Faces Technology - Download

www.hibernate.org - Hibernate

www.hibernate.org - Hibernate

betterpetshop: Better Petshop Project

betterpetshop: Better Petshop Project

Thursday, January 06, 2005

Download Cloudscape - IBM's open source full Java database

Download Cloudscape

User/PW Protection for MS ACCESS and Java JDBC connections

1) First get a new MS ACCESS database

2) make the database password protected by using the Tools/Security/User-Level Security Wizard.
By doing this a file secured.mdw for example is created

3) Create a User Data Source which points to the mdb file and choose the system database option and select the mdw file there. Enter no user and password in the user data source definition (under advanced options)

4) Connect to the database via JDBCODBC Bridge as usual and enter user and password during getConnection

The important hint for this doing was found at

dBforums - JDBC Microsoft Access

Tuesday, November 02, 2004

JCTerm -- SSH2 Terminal Emulator in Pure Java

JCTerm -- SSH2 Terminal Emulator in Pure Java: "local/remote port forwarding"

With this tool zou can also forward local and remote ports. For special purposes it can be used a kind of inverse SSH Daemon which connects to a parent SSH Daemon which uses the forwarded ports etc.

Thursday, October 07, 2004

Apache Jakarta Commons Daemon : Java based daemons or services

Daemon - Daemon : Java based daemons or services

A Java program has to implement some interfaces to run as a real system daemon. There are some C binaries who interact with the operation system. In Win32 the start and stop of the daemon (Service) can be done with the usual net start / net stop commands or from the graphical service manager.

Win32 und Unix like system support.

AndroMDA - Homepage

AndroMDA - Homepage

XDoclet: Attribute-Oriented Programming - Welcome

XDoclet: Attribute-Oriented Programming - Welcome

Wednesday, October 06, 2004

Tuesday, October 05, 2004

Open Laszlo

Open Laszlo

What is Laszlo?

Laszlo is an open source platform for the development and delivery of rich Internet applications on the World Wide Web. It is released under the OSI-certified Common Public License.

The Laszlo platform consists of the LZX language and the Laszlo Presentation Server.

* LZX is an XML and JavaScript description language similar in spirit to XUL and XAML. LZX enables a declarative, text-based development process that supports rapid prototyping and software development best practices.
* The Laszlo Presentation Server (LPS) is a Java servlet that compiles LZX applications into executable binaries for targeted run-time environments. Laszlo currently targets the Flash Player. The LPS compiles LZX applications into SWF bytecode for the Flash Player, serves and caches these compiled applications to any Web browser enabled with Flash 5 or later, and proxies application requests for back-end XML data sources and web services.

Friday, September 10, 2004

Servlet Filter: The Essentials of Filters

The Essentials of Filters:

"The order of the filters in the chain is the same as the order that filter mappings appear in the web application deployment descriptor."

This fact is contradiction to the XML specification, where the order of TAGS in the same level doesn't matter!! A better solution would be to give some numbers to the filters or to put subsequent filtes in sublevels of the XML TAGS.

Any comments to this problem? Add your comments please.

Thursday, September 09, 2004

JRefactory

JRefactory

A Refactoring tool hosted by sourceforge.net partly integrated in several IDE's (not Eclipse yet). Support for UML Class diagrams via reverse engeneering is included. Further a pretty printer can be used out of ANT.

Wednesday, September 08, 2004

JDOM a (better?) alternative way to handle XML

JDOM

The standard XML parser for Java (included in the JDK) is Xerces from XML Apache. JDOM seems to be an easier to use framework for handling XML data. Actually the RC for Version 1.0 is available.