Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4102204

idltojava compiler does not translate IDL callbacks correctly

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P3 P3
    • None
    • 1.2.0
    • other-libs
    • sparc
    • solaris_2.5.1

      The idltojava compiler does not translate the following IDL code to Java correctly.

      module Test
      {
      interface Callback
      {
      boolean update() ;
      } ;

      interface Server
      {
      boolean registerCallback(in Callback monitor) ;
      } ;
      } ;

      The Java code produced for the Server implementation (_ServerImplBase.java) uses the following to implement the registerCallback() method:
                 case 0: // Test.Server.registerCallback
                        {
                            boolean __result = self.registerCallback(
                              (Test.Callback)o[0]);
                              n[0] = (__result) ? 1 : 0;
                        }
                         break;
      Parameter zero (o[0]) is not a Test.Callback object, hence the cast throws an exception. The exception is reported to the client as an Unknown exception number three.

            duke J. Duke
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: