An java.lang.NoSuchMethodError means that a non-existent method was called, and it failed(because the method doesn't exist but the class exists and was found. If not, you had find a ClassNotFoundException) The program is trying to call a method that should exist, but it doesn't. That kind of problem is usually due to a problem with different versions of a library, something like that. Maybe you are using an old version, and the method it is trying to call doesn't exist in that version. I'd check that.
Regards JL 2009/9/18 Fahad Ali <[email protected]> > Could you please help me with it. Where do i have to add class path or > where do i have to place jar files ? If you are talking about environmental > variables i have not added those and those variables i guess were added by > the installations. Well a glimpse of those variables is as follows : - > > C:\jbase4\4.1\jDP\bin;C:\jbase4\4.1\bin;C:\jbase4\4.1\jdk\jre\bin\classic;C:\jbase4\4.1\jdk\jre\lib;C:\jbase4\4.1\jdk\jre\bin;C:\jbase4\4.1\config;C:\Program > Files\JavaFX\javafx-sdk1.2\bin;C:\Program > Files\JavaFX\javafx-sdk1.2\emulator\bin;C:\Program > Files\Microsoft.NET\FrameworkSDK\Bin\;C:\Program Files\Microsoft Visual > Studio > .NET\Common7\IDE\;C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\;C:\Program > Files\Microsoft Visual Studio > .NET\Vc7\bin\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program > Files\Java\jre1.5.0_04\bin > > Regards, > > Fahad. > > > On Sat, Sep 19, 2009 at 4:01 AM, Jim Idle <[email protected]> wrote: > >> Ok. Well it looks like you need to add to CLASSPATH at a guess, or you >> some incompatible jar files. When java cannot find a method it means what it >> says :) >> >> Jim >> >> >> On Sep 18, 2009, at 2:31 PM, Fahad Ali <[email protected]> >> wrote: >> >> Well i have installed JDK(version ----> jdk-1_5_0_04-windows-i586-p ), and >> all the paths i have configured in the remote.cmd file. I am doing this on >> Win XP. The configuration of remote.cmd is as follows >> >> set HOME=C:\localhost\T24R6\bnk.run >> set JBCRELEASEDIR=C:\jbase4\4.1 >> set JBCGLOBALDIR=C:\jbase4\4.1 >> set JBCDATADIR=C:\jbase4\jbase_data >> set JBCRELNO=NT_jbc40 >> set PATH=%PATH%;C:\Program Files\Microsoft Visual Studio .NET\VC7 >> set JBC_CCOMPILER_PATH=C:\Program Files\Microsoft Visual Studio .NET\VC7 >> set JBC_SHAREDIDE_PATH=C:\Program Files\Microsoft Visual Studio .NET\VC7 >> set INCLUDE=C:\Program Files\Microsoft Visual C++ Toolkit 2003\include >> set LIB=C:\Program Files\Microsoft Visual C++ Toolkit 2003\lib >> set JBCOBJECTLIST=%HOME%\lib;%HOME%\globuslib >> set JEDIFILEPATH=%HOME% >> set JBCLISTFILE=%HOME%\&SAVEDLISTS& >> set JBCSPOOLERDIR=%HOME%\jspooler >> set JEDIFILENAME_MD=VOC >> set JEDIFILENAME_SYSTEM=%JBCRELEASEDIR%\src\SYSTEM >> set PATH=%JBCRELEASEDIR%\bin;%PATH%;.;%HOME%\bin;%HOME%\globusbin >> set JBCDEV_BIN=%HOME%\bin >> set JBCDEV_LIB=%HOME%\lib >> set JBCBASETMP=%HOME%\tmp_workfile >> set JBCEMULATE=prime >> set JBASE_WARNLEVEL=30 >> set JBASE_INHIBIT_ZERO_USED=1 >> set JEDIENABLEQ2Q=1 >> set TERM=vt100 >> jprofile.bat >> >> >> On Sat, Sep 19, 2009 at 1:36 AM, Jim Idle < <[email protected]> >> [email protected]> wrote: >> >>> >>> Are using the correct JRE and have you configured the correct >>> classpath and so on? >>> >>> Jim >>> >>> On Sep 18, 2009, at 6:52 AM, Fahad Ali < <[email protected]> >>> [email protected]> >>> wrote: >>> >>> > >>> > Hi All, >>> > >>> > I am installing R6. For that i have installed Tcserver 1.5 and it's >>> > patch. But when i ran the Tcserver it gave me following exception. >>> > >>> > - tcsadapter [adapter] >>> > [ OK ] >>> > >>> > Loading formatters ... >>> > tcs :>Exception in thread "main" java.lang.NoSuchMethodError >>> > at com.temenos.tocf.tcs.config.FormatterFactory.createFormatter >>> > (Unknown >>> > Source) >>> > at com.temenos.tocf.tcs.config.FormatterFactory.createFormatter >>> > (Unknown >>> > Source) >>> > at com.temenos.tocf.tcs.config.Formatters.load(Unknown Source) >>> > at com.temenos.tocf.tcs.config.TCServerConfig.load(Unknown >>> > Source) >>> > at com.temenos.tocf.tcs.TCService.start(Unknown Source) >>> > at com.temenos.tocf.tcs.TCService.start(Unknown Source) >>> > at com.temenos.tocf.tcs.TCServer.registerTCSMB(Unknown Source) >>> > at com.temenos.tocf.tcs.TCServer.main(Unknown Source) >>> > >>> > Thanx, >>> > >>> > Fahad. >>> > >>> > > >>> >>> >>> >> >> >> - >> >> >> >> >> >> > > > --~--~---------~--~----~------------~-------~--~----~ Please read the posting guidelines at: http://groups.google.com/group/jBASE/web/Posting%20Guidelines IMPORTANT: Type T24: at the start of the subject line for questions specific to Globus/T24 To post, send email to [email protected] To unsubscribe, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jBASE?hl=en -~----------~----~----~----~------~----~------~--~---
