Hi all,

A developer of ours has a Bean class which looks something like this:


public class Level1 {

    public String getLevel(){
        return "level1";
    }


    public String getLevel(int dummy){
        return "int method level1";
    }
}

Basically a Bean which has two methods which only differ in once not
taking any parameters and the other one taking an int as a parameter.
Running this webapp with WebLogic Server 8.1.3 and JDK 1.4.2_05 works
fine.

Migrating to JDK 1.4.2_12  stops this bean from working with an JSP
Exception "No getter method for property level". (I double checked. The
identical War File works in _05 and ceases working in 1.4.2_12). I see
some related bugs in the Sun Bug DB but for different JDKs (Mainly
talking about some kind of "IndexedPropertyDescriptor").

Does someone have an idea what the cause of this issue is ? 

Kind Regards,

Flurin Capaul
        

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to