<div>Hi,</div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp;&nbsp; I am using the Ipopt lib(Release version)&nbsp;from C#. So, I have a dll wrapper for the ipopt.lib. So, after I run the Initialize method I get an exception saying &quot;&quot;Attempted to read or write protected memory. This is often an indication that other memory is corrupt.&quot; </div>

<div>&nbsp;</div>
<div>&nbsp;&nbsp;&nbsp; Giving a C++ snippet of my code below:</div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp; <font color="#0000ff" size="2"></font></div>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<p>class<font size="2"> Wrapper</font></p>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<div>{</div>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<div><font color="#0000ff" size="2">private</font><font size="2">:</font></div>
<div>SmartPtr&lt;IpoptApplication&gt; Impl;</div>
<div>SmartPtr&lt;TNLP&gt; mynlp; </div>
<div>&nbsp;</div>
<div>public:</div>
<div><font color="#0000ff" size="2"><font size="2">
<p>ApplicationReturnStatus </p></font></font><font size="2">Initialize()<br>{ </font><font size="2">
<p>return&nbsp;Impl-&gt;Initialize(</p></font><font size="2">);</font><font size="2">
<p>}</p></font></div></blockquote><font size="2">
<p>};</p><font color="#0000ff" size="2">
<p>class</p></font><font size="2"> IpOptNLP: </font><font color="#0000ff" size="2">public</font><font size="2"> TNLP
<p>{ </p>
<p></p></font><font color="#0000ff" size="2">private</font><font size="2">:
<p>Wrapper* m_pcUnManagedWrapper;</p>
<p></p>
<p></p></font><font color="#0000ff" size="2">public</font><font size="2">:
<p>IpOptNLP();</p>
<p></p></font><font color="#0000ff" size="2">virtual</font><font size="2"> ~IpOptNLP();
<p>IpOptNLP(Wrapper* pcWrapper) { <font size="2">m_pcUnManagedWrapper = pcWrapper;}</font></p><font color="#0000ff" size="2">
<p>virtual</p></font><font size="2"> </font><font color="#0000ff" size="2">bool</font><font size="2"> get_nlp_info(</font><font color="#0000ff" size="2">int</font><font size="2">&amp; n, </font><font color="#0000ff" size="2">int</font><font size="2">&amp; m, </font><font color="#0000ff" size="2">int</font><font size="2">&amp; nnz_jac_g, </font><font color="#0000ff" size="2">int</font><font size="2">&amp; nnz_h_lag, IndexStyleEnum&amp; index_style); //And so on</font>
<p><font size="2">}</font></p>
<p>&nbsp;</p>
<p>Now when I invoke the Initialize function from C#(after exporting the dll) I get an exception when <em>Impl-&gt;Initialize(</em><font size="2"><em>)</em> is getting invoked. And while debugging I see the reference count for both Impl and mynlp are zero. </font></p>

<p>Can someone please point out where I might be going wrong?</p>
<p>Thanks,</p>
<p>Nandini</p>
<p>&nbsp;</p>
<p><font size="2">&nbsp;</font></p></font></font></blockquote></blockquote>
<div>&nbsp;</div>
<div>&nbsp;&nbsp; </div>