Hello Folks, I still have problems if my server does many calls (threading) on a "Service" function that is placed in a in a SharedLib. Is there a possibility that exceptions do not work in this scenario ? Bug in g++ ? Again wrong copile / link options ? Thanks Mattey Environment: OS: AIX 4.3.3 ML-11 CXX: gcc 3.2.3 (I'am using g++) LD: /usr/ccs/bin/ld ### MAKEFILE ### CXXFLAGS= -c -g \ -Wno-deprecated \ -D_AIX \ -fpic \ -pthread \ -fexceptions LDFLAGS= -pthread \ -Wl,-brtl \ -Wl,-bnoquiet \ -Wl,-bh:5 \ ${XERCESC_LDFLAGS} SHARED_LDFLAGS= -pthread -shared \ -Wl,-bE:symbols.exp \ -Wl,-binitfini:init:fini:0 \ -bM:SRE \ -Wl,-bnoquiet \ -Wl,-bh:5 \ ${XERCESC_LDFLAGS} ### MAKEFILE END ###