I am trying to compile my SOAuthServiceImpl.java but i get below error . I have already set the class path to location where XWikiConfig classfile lies i.e C:\tomcat-6.0.26.B-RELEASE\webapps\wiki\WEB-INF\lib; Even when i echo classpath on command prompt i see same class path but still it is not able to find symbol XWikiConfig. Though jar file(named as xwiki-platform-legacy-oldcore-3.3.jar)at location C:\tomcat-6.0.26.B-RELEASE\webapps\wiki\WEB-INF\lib contains the file XWikiConfig(under com.xpn.xwiki).
C:\XWiki\trunk\src\main\java\com\xpn\xwiki\user\impl\xwiki>javac SSOAuthSe
rviceImpl.java
SSOAuthServiceImpl.java:3: cannot find symbol
symbol : class XWikiConfig
location: package com.xpn.xwiki
import com.xpn.xwiki.XWikiConfig;
^
SSOAuthServiceImpl.java:4: cannot find symbol
symbol : class XWikiContext
location: package com.xpn.xwiki
import com.xpn.xwiki.XWikiContext;
Not getting what i am missing here?