Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
CSFactoryInitializationException - java.lang.UnsatisfiedLinkError
jsankara
Hi all,
Teamsite version: 7.2.1
I have created a class which implements com.interwoven.datasource.MapDataSource. Deployment was sucessful without any errors but on invocation of the data source, I'm getting the below error: [ java.lang.UnsatisfiedLinkError: no cssdk in java.library.path] .
I have the below cssdk jar files in iw-cc.war/WEBINF/lib
---------------------------------------------------
cssdkjava.jar
cssdkjni.jar
cssdk_sci.jar
cssdksoap-3.1.0.1.jar
Am I missing something ?
2011-05-16 23:41:46,289 ERROR [STDERR] com.interwoven.cssdk.factory.CSFactoryInitializationException: (Factory initialization failed)
2011-05-16 23:41:46,293 ERROR [STDERR] at com.interwoven.cssdk.factory.CSFactory.getFactory(CSFactory.java:129)
2011-05-16 23:41:46,293 ERROR [STDERR] at com.cms.util.CSClientUtil.getCSClient(Unknown Source)
2011-05-16 23:41:46,293 ERROR [STDERR] at com.cms.datasource.MapGroupPicker.execute(Unknown Source)
2011-05-16 23:41:46,293 ERROR [STDERR] at com.interwoven.datasource.core.DataSourceFactory.executeComponent(DataSourceFactory.java:279)
2011-05-16 23:41:46,293 ERROR [STDERR] at com.interwoven.ui.datacapture.core.dct.DatasourceCallout.executeComponent(DatasourceCallout.java:190)
...........
Caused by: java.lang.UnsatisfiedLinkError: no cssdk in java.library.path
Find more posts tagged with
Comments
A2L
Are you testing it on eclipse or on Teamsite machine. The factory objects used on Teamsite machine and on local client are different.
For Teamsite machine it is
com.interwoven.cssdk.factory.CSJavaFactory
For local machine(client connection using SOAP) it is
com.interwoven.cssdk.factory.CSSOAPFactory
Mismatch in factory object gives this kind of error.
jsankara
It worked when using com.interwoven.cssdk.factory.CSJavaFactory. Thanks a lot!!!!