Hi,

>I use axis to connect to some webservices from my webapp. If the axis
>jar files are in WEB-INF/lib I can reload my app and everything is
fine.
>But when I moved them to CATALINA_HOME/common/lib to shrink the size of
>my war file I get a NullPointerException (stack trace follows) when the
>application has been reloaded and I try to connect to a service. The
>application runs fine until I try to connect to a webservice.

Keep your application as self-contained as possible.  Moving the Axis
jars from WEB-INF/lib to common/lib has significant classloading
implications, as you've seen ;)  Shrinking the size of your WAR should
not be a design priority, especially since you sacrifice portability
(not all containers have the concept of common/lib).

If you *have* to do it, try shared/lib instead of common/lib so that
you're not clashing with the server's libraries that are also provided
by Axis.

As to the actual NPE cause, you might want to ask the commons-discovery
folks.  But there's been an open bugzilla issue for this hooks thing for
ages.

Yoav Shapira http://www.yoavshapira.com




This e-mail, including any attachments, is a confidential business 
communication, and may contain information that is confidential, proprietary 
and/or privileged.  This e-mail is intended only for the individual(s) to whom 
it is addressed, and may not be saved, copied, printed, disclosed or used by 
anyone else.  If you are not the(an) intended recipient, please immediately 
delete this e-mail from your computer system and notify the sender.  Thank you.


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

Reply via email to