dotgnu-general
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [DotGNU]Signatures and invoking methods


From: Rich Baumann
Subject: Re: [DotGNU]Signatures and invoking methods
Date: 27 Aug 2003 03:24:00 -0400

On Tue, 2003-08-26 at 18:28, Chris Smith wrote:
>     public static String DGEE_run( String []args )
>     { 
>       // Locate, load and invoke webservice
>        ....
>     }

> Resulting in method being NULL. :o(
> 
> 
> I wonder if it is because DGEE_run is an inherited method... however, adding 

> Anyone spot anything else???

Static methods are _not_ inherited; only instance methods are inherited.
You're trying to lookup the DGEE_run method in a class that doesn't have
such a method; that's why you're getting NULL.


Rich



reply via email to

[Prev in Thread] Current Thread [Next in Thread]