- Show quoted text -

On Tue, Mar 31, 2009 at 5:50 PM, Azazel Se <[email protected]> wrote:
> Hi again.
> Everything which has something to do with the spring application, including
> the apllication, are in jars and placed in the WEB-INF/lib folder.
> The context xml files are filled with bean id and properties which are used
> by the springapplication. The only thing I need from it I get through the
> 'main' api class. I'm completely new to spring so the idea was to hide it
> behind a thin wrapper.
>
> -Joey.

The error you get, "ClassNotFoundException: net.de.impl.WpiImpl" , is
clearly saying that class is not in your classloader somehow. I'd
check thoroughly that its where you think it is.

If you're still stuck, and the app is running but axis2 / spring are
not, try putting this in net.de.impl.WpiImpl:

this.getClass().getProtectionDomain().getCodeSource().getLocation());

And instantiate it somehow and log its output. A servlet with
load-on-startup is one common way, your app may have another. If the
missing class is actually a Service class, or you want to see the
entire classloader layout, this link may show you its location:

http://localhost:8080/penguin/axis2-web/HappyAxis.jsp

- R

Reply via email to