<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Hello,<i><br>
<br>
</i>I have a problem with a corba factory object. With the function
createStudent() I want to built an Object of the class Student, this
works. But after the work the student object should be destroyed. Now I
get an error that the Object is still activated. My question is, how I
can deactivate this object in the factory class with the function
destroy().<br>
<i><br>
Student_ptr createStudent(const char* name) {<br>
        string temp;<br>
        newStudent = new Student_impl(temp.assign(name));<br>
        a = newStudent-&gt;_this();<br>
        return a;//Student::_duplicate(a);<br>
}<br>
<br>
void destroyStudent() {<br>
        delete newStudent;<br>
    }<br>
</i><br>
Thanks.<i><br>
<br>
</i>
</body>
</html>