This is a follow-up on a post “ADF Faces RC: Expanding an af:tree node by clicking onto its label” by Frank Nimphius.
The problem is to be able to expand/collapse a Tree node by clicking on it’s label. Frank’s solution is based on JavaScript. The solution bellow is a server side and based on a session [...]
Archive for April, 2008
ADF Faces/Trinidad tree component’s state (expand/collapse by clicking on a node label)
Posted in Java, tagged ADF, faces, Java, JSF, tree, trinidad on 2008-04-24 | 3 Comments »
Some handy bash script to kill ‘em all
Posted in Linux, tagged bash, console, kill, Linux, pid on 2008-04-20 | Leave a Comment »
In Linux you might want to kill all processes by part of the CMD, or in other words by part of the program name. So instead of searching all processes and killing them all by PID, you might use a little bash script:
#!/bin/bash
# parse PID’s of matched processes and
# feed them to kill -9 using [...]
Skiing in Soelden 2008
Posted in Personal, tagged alps, photos, ski, skiing, snow, soelden on 2008-04-19 | Leave a Comment »
03.15-03.22 I was skiing in Soelden, Austria. Although most of the days were extremely foggy the overall experience was great… Here are some photos:
SOAP web service with Zend Framework
Posted in PHP, tagged PHP, RPC, SOAP, Zend Framework on 2008-04-19 | 19 Comments »
Warning: this stuff is written more than a year ago and might not fully reflect current situation. It’s not production ready (performance is not addressed here – think cache). This tutorial is no longer supported. Use at your own risk.
SOAP definition from Wikipedia:
SOAP is a protocol for exchanging XML-based messages over computer networks, normally [...]