[omniORB] Propogating Exceptions from Server to Client
Greg Jones
Greg_Jones@mail.crc.com
Thu, 24 Sep 1998 10:44:08 -0400
I am having trouble raising an exception in a server and propogating
that error back to the user (client). I continually encounter
"undeclared function" errors when I try to throw and catch a user
exception I have declared. The following is the IDL. Lack of C++
programming experience may be the problem so any help someone may be
able to give would be appreciated.
//IDL Code
module Print_Function
{
interface Printers
{
exception Printer_Not_Found{};
void print_message
(
in string in_request,
out string out_printing
)
raises(Printer_Not_Found);
};
};
Thanks in advance for your help,
Greg