Any _any = getORB().create_any();
_structuredEvent.header.variable_header = new Property[2];
_any.insert_long(10);
_structuredEvent.header.variable_header[0] = new Property("long", _any);
_any = getORB().create_any();
_any.insert_string("text");
_structuredEvent.header.variable_header[1] = new Property("string", _any);
runEvaluation(_structuredEvent, "$long == 10");
runEvaluation(_structuredEvent, "$long == $.header.variable_header(long)");
runEvaluation(_structuredEvent, "$string == 'text'");