Hi Imran,

indeed I've come across the same exception.
In my case it was a classloading issue with commons-lang on WebLogic 10.3.2.

I had to change weblogic-application.xml (GeoServer is deployed as extracted
EAR) to look like this:

<weblogic-application>

    <application-param>
        <param-name>webapp.encoding.default</param-name>
        <param-value>UTF-8</param-value>
    </application-param>

    <prefer-application-packages>
        <package-name>org.springframework.*</package-name>
        <package-name>org.apache.commons.lang.*</package-name>
    </prefer-application-packages>

</weblogic-application>

The important part is
"<package-name>org.apache.commons.lang.*</package-name>"

There is a conflict between GeoServers commons-lang and the one that is
loaded by the application server. You therefor have to tell the application
server that YOUR version of commons-lang is the preferred one.

Cheers,
Daniel



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Geoserver-2-5-java-lang-ClassNotFoundException-org-geoserver-wfs-WFSInfo-Version-tp5136717p5136772.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Start Your Social Network Today - Download eXo Platform
Build your Enterprise Intranet with eXo Platform Software
Java Based Open Source Intranet - Social, Extensible, Cloud Ready
Get Started Now And Turn Your Intranet Into A Collaboration Platform
http://p.sf.net/sfu/ExoPlatform
_______________________________________________
Geoserver-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to