So I have an unbounded sequence which holds a specific object type in the sender (Server) That how I am sending it<br><br>int main(int argc, char **argv)<br>{<br>....<br><b>CustObj_Cont vctor_;<br>CustObj obja;<br>obja.val=100;<br>
<br>vctor_.length(1);<br>vctor_[0]=obja;      <br>obj_ptr-&gt;set_obj(vctor_);<br>.</b>.......<br>}<br><br>Now on the receiver end I get an assertion error although my data is displayed<br>std::cout &lt;&lt; (*(e-&gt;get_obj()))[0].val &lt;&lt; &quot;\n&quot;;    <br>
<br>The assertion error is:<br><b>Debug assertion failed<br>Expression :_BLOCK_TYPE_IS_VAILD(pHead-&gt;nBlockUSe)<br><br></b>Now I am just curious why this assertion error is showing up ??<br>The libraries are okay ... it seems as if its trying to access something which does&#39;nt exist ??<br>
<br>