MSIR.0861 Class (classname) repeatedly extended

From m204wiki
Revision as of 15:01, 9 November 2010 by 198.242.244.47 (talk) (Created page with "A class declaration extended two classes that each extended the same class. Repeat inheritance is not currently supported in ''Janus SOAP ULI'', and it is often (though not a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A class declaration extended two classes that each extended the same class. Repeat inheritance is not currently supported in Janus SOAP ULI, and it is often (though not always) indicative of an error in the class hierarchy. For example, say the error occurs when class X tries to extend classes D and E which both extend class A. The problem might be corrected by these steps:

  1. Create classes B and C so that class D extends B and A, and class E extends C and A.
  2. Make class X extend classes C, B, and A.
For more information see the Janus SOAP Reference Manual.