<div dir="ltr"><br>Stefan, thank you for your answer.<br><br>AddImpl is defined as follows:<br><br>#include &lt;Add.hh&gt;<br><br>namespace Operations{<br>&nbsp; class AddImpl: public POA_Add, public PortableServer::RefCountServantBase{<br>
&nbsp;&nbsp;&nbsp;&nbsp; CORBA::ORB_var orb_;<br>&nbsp; &nbsp;&nbsp; PortableServer::POA_var poa_;<br>&nbsp; <br>&nbsp; public:<br>&nbsp;&nbsp;&nbsp; AddImpl();<br>&nbsp;&nbsp;&nbsp; virtual PortableServer::POA_ptr _default_POA();<br>&nbsp;&nbsp;&nbsp; virtual double add(const char * a,const char * b,const char * c) throw(CORBA::SystemException);<br>
&nbsp; };<br>};<br><br>Without the namespacing this code compiled without any problems.<br><br><br></div>