Hi,
I always get a Segmentation fault when trying to execute shutdown from the php web page. The c++ client shutdown seems to work fine.
What am I doing wrong? How do I debug?
thanks,
Don
fragment of code in php web page:
$p = $ICE->stringToProxy("CUCard:tcp -p 10040:udp -p 10040");
$gcu = $p->ice_checkedCast("::CU::CUCard");
.....
$gcu->shutdown();
ice definition:
idempotent void shutdown();
shutdown routine in server:
void
CUCardI::shutdown(const Ice::Current & c) {
DataLog.add(SYS,SHUT,"Server Shutdown");
DataLog.close();
shutdown(c);
}

Reply With Quote
stream: