Michele,
Do you want to restart the discussion on [EMAIL PROTECTED] :) Please read
this thread first:
http://marc.info/?t=115829377800001&r=1&w=2
thanks,
dims
On 6/8/07, Michele Mazzucco <[EMAIL PROTECTED]> wrote:
Swavek,
the init and destroy methods are called using reflection. They are not
compulsory, but if present they are used to initialized and tear down
resources. You see the exception because you have not implemented them.
The simplest workaround is to add the empty methods to your service
class:
public void init(ServiceContext serviceContext) {
// empty
}
public void destroy(ServiceContext serviceContext) {
// empty
}
Dims, for what concerns your previous post [1] and my comment, as you
can see replacing reflection with a simple interface would avoid this
kind of problems.
Michele
[1]http://www.nabble.com/Thread-on-TSS---%
22Any-good-experience-with-Axis2-%22-tf3881517.html
On Thu, 2007-06-07 at 17:32 -0600, Swavek Skret wrote:
> I am getting the following exception on the SOAP server side when the SOAP
> client calls:
>
> 2007-06-07 17:18:36,907 DEBUG org.apache.axis2.engine.DependencyManager -
> Exception trying to call init: java.lang.NoSuchMethodException:...
>
> It shows only as Debug level. Is that OK?
>
> Thanks,
>
> Swavek
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
Davanum Srinivas :: http://davanum.wordpress.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]