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)
java.lang.NoSuchMethodError
fsfx
Hi,
Im trying to do a login through c#.net
using: newsession.logon(...);
i get this run time error: java.lang.NoSuchMethodError
does anyone know y this is??
Find more posts tagged with
Comments
dazzlad
You'd probably need to provide a more complete stack trace to have anyone help you out here.
Sample source code may also help.
fsfx
SessionManager SessionManager = SessionManager.getInstance();
com.imanage.cms.api.workteam.EnterpriseSession NewSession = SessionManager.createEnterpriseSession();
try
{
NewSession.logon("Domain", "cluster", "user", "password");
Console.WriteLine("logon was successful");
Console.ReadLine();
}
catch (Exception er)
{
}
***************************************
Thanks
dazzlad
And the full stack trace?
fsfx
Hi
Here's the stack trace
Thanks
"java.lang.NoSuchMethodError was unhandled
Message="Exception of type 'java.lang.NoSuchMethodError' was thrown."
Source="vjslib"
StackTrace:
at java.lang.Class.newInstance()
at com.imanage.cms.fc.base.CmsApplicationLocal.initialValue()
at com.imanage.cms.fc.base.CmsApplicationLocal.get()
at com.imanage.cms.t2.jom.impl.SessionImpl.isMyInitFlag()
at com.imanage.cms.t2.jom.impl.SessionImpl.ensureConnectionPools(String strServerName_)
at com.imanage.cms.t2.jom.impl.SessionImpl.logonImpl(String appName_, String serverName_, String domain_, String UID_, String password_, Boolean bIsSystemUser_)
at com.imanage.cms.t2.jom.impl.EnterpriseSessionImpl.logon(String appName_, String serverName_, String domain_, String UID_, String password_)
at com.imanage.cms.api.workteam.impl.EnterpriseSessionImpl.logon(String appName, String serverName, String loginID, String password)
at WSMP___login.Program.Main(String[] args) in C:\Documents and Settings\au012768.DC01\My Documents\Visual Studio 2005\Projects\WSMP - login\WSMP - login\Program.cs:line 54
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()"