--TEST-- Bug #41004 (minOccurs="0" and null class member variable) --SKIPIF-- --FILE-- 'EchoBean','echo'=>'EchoRequest','echoResponse'=>'EchoResponse'); $client = new SoapClient($wsdl, array('location'=>'test://',"classmap" => $classmap, 'exceptions'=>0, 'trace'=>1)); $echo=new EchoRequest(); $in=new EchoBean(); $in->mandatoryElement="REV"; $in->optionalElement=NULL; $echo->in=$in; $client->echo($echo); echo $client->__getLastRequest(); ?> --EXPECT-- REV