Java.lang.NoSuchMethodError

Hi all,
In SAP NetWeaver Developer studio i have created a Java module to read excel files into XI. The purpose is to read this excel file into XI with a file adapter.
Hearby the code in SAP NWDS: (i only put for test reasons the first cell of the excel workbook in my code)
package com.kk.ExcelModule;
import java.io.ByteArrayInputStream;
import javax.ejb.CreateException;
import javax.ejb.SessionBean;
import javax.ejb.SessionContext;
import jxl.Workbook;
import com.sap.aii.af.mp.module.ModuleContext;
import com.sap.aii.af.mp.module.*;
import com.sap.aii.af.mp.module.ModuleData;
import com.sap.aii.af.mp.module.ModuleException;
import com.sap.aii.af.ra.ms.api.Message;
import com.sap.aii.af.ra.ms.api.XMLPayload;
public class GetExcelFileBean implements SessionBean, Module{
     private SessionContext myContext;
     public void ejbRemove() {     
     public void ejbActivate (){
     public void ejbPassivate (){
     public void setSessionContext (SessionContext context) {
          myContext = context;
     public void ejbCreate () throws CreateException {
@ejbHome <{com.sap.aii.af.mp.module.ModuleHome}>
@ejbLocal <{com.sap.aii.af.mp.module.ModuleLocal}>
@ejbLocalHome <{com.sap.aii.af.mp.module.ModuleLocalHome}>
@ejbRemote
@stateless <{com.sap.aii.af.mp.module.ModuleStateless}>
@transactionType Container
public ModuleData process(
       ModuleContext mc,
       ModuleData imd)
       throws ModuleException {
            Object obj = null;
            Message msg = null;
            try {
                  obj = imd.getPrincipalData();
                  msg = (Message) obj;
                  XMLPayload xp = msg.getDocument ();
                  if (xp != null) {
                       byte by [] = convert (xp.getContent());
                       xp.setContent (by);
                  imd.setPrincipalData (msg);
            } catch (Exception e) {
            return imd;
     public byte [] convert(byte src[]) throws Exception
     String xmldata = "";
     try
          String err = "";
          ByteArrayInputStream f5 = new ByteArrayInputStream(src);
          Workbook wb = Workbook.getWorkbook(f5);
          xmldata ="";
        wb.close();
     catch (Exception e)
     return xmldata.getBytes();
Create Method.
i did not yet deploy it to the J2EE engine.
before doing that i've created a main module to read the excel file and run it for test reason.
but there i 've get an error while running it.
This is the code of the second part :
Created on 27-aug-2007
To change the template for this generated file go to
Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
package com.kk.ExcelModule;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import jxl.Workbook;
@author Admin
To change the template for this generated type comment go to
Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
public class TestClass {
     public static void main(String[] args) {
          System.out.println("test");
          //GetExcelFileBean excFb = new GetExcelFileBean();
          try{
               File file = new File("c:/Escapo/XI/IN/Prijzen_SAP.xls");
               InputStream is = new FileInputStream(file);
               long length = file.length();
               System.out.println("DEBUG: Length of " + file + " is " + length + "
               // Create the byte array to hold the data
               byte[] bytes = new byte[(int)length];
               // Read in the bytes
               int offset = 0;
               int numRead = 0;
               while ( (offset (WorkbookSettings.java:156)
     at jxl.Workbook.getWorkbook(Workbook.java:228)
     at com.kk.ExcelModule.TestClass.convert(TestClass.java:79)
     at com.kk.ExcelModule.TestClass.main(TestClass.java:59)
Exception in thread "main"
My questions :
1) Why i  have this error and how can i fix it? Is it a problem inside my code? Or is it somewhere else?
2) if i would like to add multiple cells in my first code how i can manage this , which is the right way to do it ?
i'm using XI 7.0 SP 11
my SAP NWDS settings are :
Date: 28/08/07 8:52
System properties:
JDK1.3.1_HOME=C:j2sdk1.4.2_09
JDK1.4_HOME=C:j2sdk1.4.2_09
allUserDir=C:ProgramData
awt.toolkit=sun.awt.windows.WToolkit
file.encoding=UTF-8
file.encoding.pkg=sun.io
file.separator=
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
java.awt.printerjob=sun.awt.windows.WPrinterJob
java.class.path=C:Program FilesSAPIDEIDE70eclipseSapStartup.jar
java.class.version=48.0
java.endorsed.dirs=C:j2sdk1.4.2_09jrelibendorsed
java.ext.dirs=C:j2sdk1.4.2_09jrelibext
java.home=C:j2sdk1.4.2_09jre
java.io.tmpdir=C:UsersAdminAppDataLocalTemp
java.library.path=C:j2sdk1.4.2_09 in;.;C:Windowssystem32;C:Windows;C:Program FilesSAPIDEIDE70eclipse;C:Windowssystem32;C:Windows;C:WindowsSystem32Wbem;c:Program FilesCommon FilesRoxio SharedDLLShared;c:Program FilesCommon FilesRoxio SharedDLLShared;c:Program FilesCommon FilesRoxio Shared9.0DLLShared;c:Program FilesHewlett-PackardIAM in;C:Program FilesQuickTimeQTSystem
java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
java.runtime.version=1.4.2_09-b05
java.specification.name=Java Platform API Specification
java.specification.vendor=Sun Microsystems Inc.
java.specification.version=1.4
java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
java.vendor=Sun Microsystems Inc.
java.vendor.url=http://java.sun.com/
java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
java.version=1.4.2_09
java.vm.info=mixed mode
java.vm.name=Java HotSpot(TM) Client VM
java.vm.specification.name=Java Virtual Machine Specification
java.vm.specification.vendor=Sun Microsystems Inc.
java.vm.specification.version=1.0
java.vm.vendor=Sun Microsystems Inc.
java.vm.version=1.4.2_09-b05
line.separator=
os.arch=x86
os.name=Windows NT (unknown)
os.version=6.0
path.separator=;
sun.arch.data.model=32
sun.boot.class.path=C:j2sdk1.4.2_09jrelib
t.jar;C:j2sdk1.4.2_09jrelibi18n.jar;C:j2sdk1.4.2_09jrelibsunrsasign.jar;C:j2sdk1.4.2_09jrelibjsse.jar;C:j2sdk1.4.2_09jrelibjce.jar;C:j2sdk1.4.2_09jrelibcharsets.jar;C:j2sdk1.4.2_09jreclasses
sun.boot.library.path=C:j2sdk1.4.2_09jre in
sun.cpu.endian=little
sun.cpu.isalist=pentium i486 i386
sun.io.unicode.encoding=UnicodeLittle
sun.java2d.fontpath=
sun.os.patch.level=
user.country=BE
user.dir=C:Program FilesSAPIDEIDE70Eclipse
user.home=C:UsersAdmin
user.language=nl
user.name=Admin
user.timezone=GMT
user.variant=
user.workspace=C:UsersAdminDocumentsSAPworkspace
Features:
com.sap.ip.me.mdk.developmentTools (2.5.12) "com.sap.ip.me.mdk.developmentTools"
org.eclipse.gef (2.0.0) "org.eclipse.gef"
org.eclipse.gef.source (2.0.0) "org.eclipse.gef.source"
org.eclipse.jdt (2.1.2) "org.eclipse.jdt"
org.eclipse.jdt.source (2.1.2) "org.eclipse.jdt.source"
org.eclipse.pde (2.1.2) "org.eclipse.pde"
org.eclipse.platform (2.1.2) "org.eclipse.platform"
org.eclipse.platform.source (2.1.2) "org.eclipse.platform.source"
org.eclipse.platform.win32 (2.1.2) "org.eclipse.platform.win32"
org.eclipse.platform.win32.source (2.1.2) "org.eclipse.platform.win32.source"
org.eclipse.sdk.win32 (2.1.2) "org.eclipse.sdk.win32"
Plug-in Registry:
com.sap.bc.proj.jstartup (2.0.0) "J2EE Jstartup"
com.sap.caf.designer (1.0.0) "com.sap.caf.designer"
com.sap.cms.client (2.0.0) "Infrastructure CMS Client"
com.sap.cms.organizer (1.0.0) "Infrastructure CMS Transport Organizer"
com.sap.cms.tcs (2.0.0) "Infrastructure TCS Deploy Servlet"
com.sap.devmanual.doc.user (2.0.0) "Documentation Development Manual"
com.sap.dictionary.database (2.0.0) "Dictionary Database"
com.sap.dictionary.designtime (1.0.0) "Dictionary Types Designtime"
com.sap.dictionary.projectbrowser (2.0.0) "Dictionary Project Browser"
com.sap.dictionary.runtime (2.0.0) "Dictionary Types Runtime"
com.sap.dictionary.runtime.javadoc (2.0.0) "Documentation Dictionary Types Runtime"
com.sap.dictionary.services (2.0.0) "Dictionary Types Services"
com.sap.dictionary.tools.archivebuilder (2.0.0) "Dictionary Archive Builder"
com.sap.dictionary.tools.generation (2.0.0) "Dictionary Generation"
com.sap.dictionary.tools.nameserver (2.0.0) "Dictionary Nameserver"
com.sap.dictionary.tools.simpletype (2.0.0) "Dictionary Simple Type Editor"
com.sap.dictionary.tools.sqlj (2.0.0) "Persistence SQLJ"
com.sap.dictionary.tools.structureeditor (2.0.0) "Dictionary Structure Editor"
com.sap.dictionary.tools.tablebrowser (2.0.0) "Dictionary Table Browser"
com.sap.dictionary.tools.tableeditor (2.0.0) "Dictionary Table Editor"
com.sap.dictionary.tools.tsmodel.dictionary (2.0.0) "Dictionary TS Model"
com.sap.dictionary.tools.ui (2.0.0) "Dictionary User Interface"
com.sap.dictionary.types.mdi2metamodel (2.0.0) "Dictionary MDI Metamodel"
com.sap.engine.javadoc (2.0.0) "Documentation J2EE Engine"
com.sap.engine.webservices (2.0.0) "Web Service Runtime Libs"
com.sap.ep.applicationDevelopment (7.0.0) "Enterprise Portal Application Development"
com.sap.ep.configurationManager (7.0.0) "Enterprise Portal Configuration Manager"
com.sap.ep.connectionManager (7.0.0) "Enterprise Portal Connection Manager"
com.sap.ep.documentation.api (7.0.0) "Enterprise Portal Java API Documentation"
com.sap.ep.unitTest (7.0.0) "Enterprise Portal Unit Test"
com.sap.ep.webServices (7.0.0) "Enterprise Portal Web Services"
com.sap.exception (2.0.0) "Core Exceptions"
com.sap.ext.libs.webservices (2.0.0) "Web Service External Libs"
com.sap.ide.eclipse.cbs.activation (2.0.0) "Infrastructure CBS Activation"
com.sap.ide.eclipse.component.provider (2.0.0) "Infrastructure Component Provider"
com.sap.ide.eclipse.content (2.0.0) "Content Plug-in"
com.sap.ide.eclipse.debugExtensionPlugin (2.0.0) "Core Debug Extension"
com.sap.ide.eclipse.dii (2.0.0) "Infrastructure DII"
com.sap.ide.eclipse.ext.libs.iaik (2.0.0) "Infrastructure SSL Support External Libs"
com.sap.ide.eclipse.ext.libs.jdo (2.0.0) "Persistence JDO Libs"
com.sap.ide.eclipse.import.iaik (2.0.0) "Infrastructure SSL Support Import Wizard"
com.sap.ide.eclipse.j2ee.engine (2.0.0) "J2EE Engine Utilities"
com.sap.ide.eclipse.j2ee.model.ui (2.0.0) "J2EE Model Extensions UI"
com.sap.ide.eclipse.jarsap (2.0.0) "Infrastructure JarSap"
com.sap.ide.eclipse.login (2.0.0) "Infrastructure Login"
com.sap.ide.eclipse.s2x.editor (2.0.0) "I18N S2X Editor"
com.sap.ide.eclipse.sdm (1.0.0) "Infrastructure SDM"
com.sap.ide.eclipse.umepermissions (2.0.0) "UME Permissions Plug-in"
com.sap.ide.eclipse.wizards.jpx.ui (2.0.0) "Core JPX Import Wizard"
com.sap.ide.generationfwk (2.0.0) "Generation Framework"
com.sap.ide.jcb.core (2.0.0) "Connectivity Builder Core"
com.sap.ide.jcb.ui (2.0.0) "Connectivity Enterprise Connector User Interface"
com.sap.ide.metamodel.common (2.0.0) "Metamodel Common"
com.sap.ide.metamodel.common.libs (2.0.0) "Metamodel Common Libs"
com.sap.ide.metamodel.core (2.0.0) "Metamodel Core"
com.sap.ide.metamodel.core.libs (2.0.0) "Metamodel Core Libs"
com.sap.ide.metamodel.dictionary (2.0.0) "Dictionary Metamodel"
com.sap.ide.metamodel.dictionary.libs (2.0.0) "Dictionary Metamodel Libs"
com.sap.ide.metamodel.merger (2.0.0) "Metamodel Merger"
com.sap.ide.metamodel.vi (2.0.0) "Web Service Virtual Interface Metamodel"
com.sap.ide.metamodel.vi.check.libs (2.0.0) "Web Service Virtual Interface Check Metamodel Libs"
com.sap.ide.metamodel.vi.libs (2.0.0) "Web Service Virtual Interface Metamodel Libs"
com.sap.ide.metamodel.webdynpro (2.0.0) "Web Dynpro Metamodel"
com.sap.ide.metamodel.webdynpro.libs (2.0.0) "Web Dynpro Metamodel Libs"
com.sap.ide.metamodel.ws (2.0.0) "Web Service Metamodel"
com.sap.ide.metamodel.ws.libs (2.0.0) "Web Service Metamodel Libs"
com.sap.ide.metamodel.wsproxy (2.0.0) "Web Service Proxy Metamodel"
com.sap.ide.metamodel.wsproxy.libs (2.0.0) "Web Service Proxy Metamodel Libs"
com.sap.ide.metamodelsupplement.webdynpro (2.0.0) "Web Dynpro Metamodel Supplement"
com.sap.ide.services.metamodel.webdynpro (2.0.0) "Metamodel Web Dynpro Services"
com.sap.ide.tools.core.patternfwk (2.0.0) "Core Tools Pattern Framework"
com.sap.ide.tools.core.template (2.0.0) "Core Tools Template"
com.sap.ide.tools.core.template.service (2.0.0) "Core Tools Template Service"
com.sap.ide.tools.core.treemappingcomponent (2.0.0) "Core Tools Tree Mapping"
com.sap.ide.vi (2.0.0) "Web Service Virtual Interface"
com.sap.ide.vi.check (2.0.0) "Web Service Virtual Interface Check"
com.sap.ide.virtualInterface.tsmodel (2.0.0) "Web Service Virtual Interface TS Model"
com.sap.ide.webdynpro.adobetemplatedesigner (2.0.0) "Web Dynpro Adobe Template Designer"
com.sap.ide.webdynpro.applicationeditor (2.0.0) "Web Dynpro Application Editor"
com.sap.ide.webdynpro.archivebuilder (2.0.0) "Web Dynpro Archive Builder"
com.sap.ide.webdynpro.chartdesigner (2.0.0) "Web Dynpro Chart Designer"
com.sap.ide.webdynpro.checklayer (2.0.0) "Web Dynpro Checklayer"
com.sap.ide.webdynpro.controllereditor (2.0.0) "Web Dynpro Controller Editor"
com.sap.ide.webdynpro.controllereditor.methodextraction (2.0.0) "Web Dynpro Method Extraction"
com.sap.ide.webdynpro.customuielements (2.0.0) "WebDynpro Customuielements"
com.sap.ide.webdynpro.ecatt (2.0.0) "Web Dynpro Ecatt"
com.sap.ide.webdynpro.generation (2.0.0) "Web Dynpro Generation"
com.sap.ide.webdynpro.messageeditor (2.0.0) "Web Dynpro Message Editor"
com.sap.ide.webdynpro.modeleditor (2.0.0) "Web Dynpro Model Editor"
com.sap.ide.webdynpro.projectbrowser (2.0.0) "Web Dynpro Project Browser"
com.sap.ide.webdynpro.rendering (2.0.0) "Web Dynpro Rendering"
com.sap.ide.webdynpro.service.applicationeditor (2.0.0) "Web Dynpro Application Editor Services"
com.sap.ide.webdynpro.service.applicationmodeler (2.0.0) "Web Dynpro Application Modeler Services"
com.sap.ide.webdynpro.service.controllereditor (2.0.0) "Web Dynpro Controller Editor Services"
com.sap.ide.webdynpro.service.core (2.0.0) "Web Dynpro Core Services"
com.sap.ide.webdynpro.service.modeleditor (2.0.0) "Web Dynpro Model Editor Services"
com.sap.ide.webdynpro.service.viewdesigner (2.0.0) "Web Dynpro View Designer Services"
com.sap.ide.webdynpro.template.contextcopy (2.0.0) "Web Dynpro context copy template"
com.sap.ide.webdynpro.template.generation (2.0.0) "Web Dynpro Template Generation"
com.sap.ide.webdynpro.template.portaleventing (2.0.0) "Web Dynpro Portal Eventing Template"
com.sap.ide.webdynpro.template.simplescenario (2.0.0) "WebDynpro Declarative Template Wizards"
com.sap.ide.webdynpro.template.simplescenario.generation (2.0.0) "WebDynpro Declarative Template Wizards Generation"
com.sap.ide.webdynpro.template.wizards (2.0.0) "Web Dynpro Template Wizards"
com.sap.ide.webdynpro.template.wizards.generation (2.0.0) "Web Dynpro Template Wizards Generation"
com.sap.ide.webdynpro.tsmodel.application (2.0.0) "Web Dynpro TS Model"
com.sap.ide.webdynpro.ui (2.0.0) "Web Dynpro User Interface"
com.sap.ide.webdynpro.viewdesigner (2.0.0) "Web Dynpro View Designer"
com.sap.ide.webservices.tsmodel (2.0.0) "Web Service TS Model"
com.sap.ide.ws (2.0.0) "Web Service Tools"
com.sap.ide.ws.cafintegration (1.0.0) "CAF Integration Utilities"
com.sap.ide.ws.core (2.0.0) "Web Service Core"
com.sap.ide.ws.model (2.0.0) "Web Service Model"
com.sap.ide.ws.navigator (2.0.0) "Web Service Navigator"
com.sap.ide.ws.perspective (2.0.0) "Web Service Perspective"
com.sap.ide.ws.portalintegration (1.0.0) "Portal Web Service Endpoint View"
com.sap.ide.ws.portalintegration.soapapp (1.0.0) "Portal Web Service Soap Application"
com.sap.ide.ws.proxygenerator (2.0.0) "Web Service Proxy Generator"
com.sap.ide.ws.soapapp (2.0.0) "Web Service SOAP Application"
com.sap.ide.wsproxy (2.0.0) "Web Service Proxy Tools"
com.sap.ip.bi.sdk.doc (3.5.0) "BI Java SDK Documentation"
com.sap.ip.me.mdk.developmentTools (2.5.12) "Mobile Development Kit Tools"
com.sap.ip.me.mdk.pios.docgen (1.1.4) "MDK Peripheral Support Plug-in"
com.sap.jdo.api (2.0.0) "Persistence JDO API"
com.sap.jdo.utils (2.0.0) "Persistence JDO Util"
com.sap.jrfc (2.0.0) "Connectivity JFRC Libs"
com.sap.km.rfwizard (7.1.5) "Knowledge Management RF Wizard"
com.sap.km.rfwizard.pdk (7.1.5) "Knowledge Management RF PDK Wizard"
com.sap.mdi (2.0.0) "Dictionary MDI"
com.sap.mw.jco (2.0.0) "Connectivity JCO Libs"
com.sap.mw.jco.javadoc (2.0.0) "Documentation JCO"
com.sap.mw.jra.javadoc (2.0.0) "Documentation Java Resource Adapter"
com.sap.netweaver.bc.uwl.plugin (1.0.0) "UWLPlugin"
com.sap.netweaver.kmc.doc (1.0.0) "Knowledgemanagement and Collaboration"
com.sap.opensql (2.0.0) "Core OpenSQL"
com.sap.opensql.javadoc (2.0.0) "Documentation OpenSQL"
com.sap.s2x (2.0.0) "I18N S2X"
com.sap.sdm.api (2.0.0) "Infrastructure SDM API"
com.sap.security (2.0.0) "Infrastructure Security APIs"
com.sap.security.https.javadoc (2.0.0) "Documentation SSL/HTTPS Client Connections"
com.sap.security.javadoc (2.0.0) "Documentation Security"
com.sap.security.securestorage.javadoc (2.0.0) "Documentation Secure Storage"
com.sap.sld.client (2.0.0) "Infrastructure SLD Client"
com.sap.sld.namealloc (2.0.0) "Infrastructure SLD Name Allocation"
com.sap.sqlj (2.0.0) "Persistence SQLJ Libs"
com.sap.tc.ap (2.0.0) "Infrastructure Archive Pool"
com.sap.tc.build (2.0.0) "Infrastructure Build"
com.sap.tc.cmi (1.0.0) "Common Model Interface"
com.sap.tc.cmi.javadoc (2.0.0) "Documentation Common Model Interface"
com.sap.tc.col (2.0.0) "Enterprise Service Framework"
com.sap.tc.complib (2.0.0) "Infrastructure Component Library"
com.sap.tc.jarm (2.0.0) "Core Java Application Responsetime Measurement"
com.sap.tc.jtools.jlin.core (2.0.0) "JLin core"
com.sap.tc.jtools.jlin.devel (2.0.0) "JLin Test Developer Plugin"
com.sap.tc.jtools.jlin.java (2.0.0) "JLin Java Module"
com.sap.tc.jtools.jlin.ui (2.0.0) "Java LINt tool"
com.sap.tc.jtools.jver.core (2.0.0) "JTools JVer Core"
com.sap.tc.jtools.source (2.0.0) "Jtools Plugin Developer Resources"
com.sap.tc.jtools.util (2.0.0) "Jtools Utilities"
com.sap.tc.logging.javadoc (2.0.0) "Documentation Logging"
com.sap.tc.security (2.0.0) "Infrastructure Security"
com.sap.tc.security.https (2.0.0) "Infrastructure Security HTTPS"
com.sap.tc.webdynpro.model.webservice (2.0.0) "Web Dynpro Webservice Model Runtime"
com.sap.tc.webdynpro.runtime (2.0.0) "Web Dynpro Runtime"
com.sap.tc.webdynpro.runtime.javadoc (2.0.0) "Documentation Web Dynpro Runtime"
com.sap.ume.javadoc (2.0.0) "Documentation User Management Engine"
com.sap.ur.ideservlet (1.0.0) "UR IDE Servlet Plug-in"
com.sap.util.cache.ide (2.0.0) "Cache Management Library"
com.sap.voice.plugin (1.0.0) "VoicePlugin"
com.togethersoft.sapient.audit (0.9.0) "Sapient Audits"
com.togethersoft.sapient.core (0.9.0) "Sapient Core"
com.togethersoft.sapient.depend (0.9.0) "Sapient Dependency Analyzer"
com.togethersoft.sapient.detect (0.9.0) "Sapient Detection Strategies"
com.togethersoft.sapient.metric (0.9.0) "Sapient Metrics"
com.togethersoft.sapient.report (0.9.0) "Sapient Reports"
com.togethersoft.selena.cmf (0.9.0) "Selena Patterns and Templates Support"
com.togethersoft.selena.examples (0.9.0) "Together Examples"
com.togethersoft.selena.gde.printing (0.9.0) "Diagram Printing"
com.togethersoft.selena.gde.svgexport (0.9.0) "Diagram to SVG Export"
com.togethersoft.selena.gendoc (0.9.0) "Documentation generator"
com.togethersoft.selena.launcher (0.9.0) "Launcher Plugin"
com.togethersoft.selena.license.sanctuary (0.9.0) "Sanctuary Plug-in"
com.togethersoft.selena.model.navigation (0.9.0) "Model Navigation"
com.togethersoft.selena.model.providers.patterns (0.9.0) "Patterns Providers"
com.togethersoft.selena.model.ui.actions.java (0.9.0) "Java Actions Plugin"
com.togethersoft.selena.model.ui.actions.patterns (0.9.0) "Pattern Actions on Model Elements"
com.togethersoft.selena.patterns (0.9.0) "Patterns Generation"
com.togethersoft.selena.patterns.gof (0.9.0) "GoF Patterns"
com.togethersoft.selena.patterns.java (0.9.0) "Java Patterns"
com.togethersoft.selena.patterns.sapient (0.9.0) "Sapient Based Pattern Recognition"
com.togethersoft.selena.profiles (0.9.0) "Selena Profiles Support"
com.togethersoft.selena.profiles.businessModeling (0.9.0) "UML Profile for Business Modeling"
com.togethersoft.selena.profiles.ep (0.9.0) "Eriksson-Penker Business Extensions Profile"
com.togethersoft.selena.profiles.incolor (0.9.0) "UML Modeling in Color Profile Plugin"
com.togethersoft.selena.profiles.sap (0.9.0) "Web Dynpro Modeling Profile"
com.togethersoft.selena.profiles.sdp (0.9.0) "UML Profile for Software Development Processes"
com.togethersoft.selena.sapient (0.9.0) "Sapient Plugin"
com.togethersoft.selena.sapient.ui (0.9.0) "QA Actions for the Model Entities"
com.togethersoft.selena.selector (0.9.0) "Selector"
com.togethersoft.selena.selector.model (0.9.0) "Model Selector"
com.togethersoft.selena.viewmanagement (0.9.0) "Together View Management"
com.togethersoft.selena.viewmaps (0.9.0) "Together Viewmaps"
com.togethersoft.selena.xmi (0.9.0) "XMI Import/Export Plugin"
com.togethersoft.togethersap (6.1.9) "Borland® Together® Edition for SAP NetWeaver(TM) Developer Studio"
com.togethersoft.togethersap.presentation (1.0.0) "com.togethersoft.togethersap.presentation"
com.togethersoft.togetherxj.doc.user (0.9.0) "Borland® Together® Edition for SAP NETWEAVER(TM) DEVELOPER STUDIO User Guide"
com.togethersoft.togetherxj.gsd.code (0.9.0) "com.togethersoft.togetherxj.gsd.code"
com.togethersoft.togetherxj.gsd.core (0.9.0) "Gsd Core Plug-in"
com.togethersoft.togetherxj.gsd.ui (0.9.0) "GsdUIPlugin"
com.togethersoft.togetherxj.java.explorer (0.9.0) "Together Java Explorer"
com.togethersoft.togetherxj.java.properties (0.9.0) "Java Properties Plug-in"
com.togethersoft.togetherxj.model.ui.addlinked (0.9.0) "com.togethersoft.togetherxj.model.ui.addlinked"
com.togethersoft.togetherxj.sap.integration (0.9.0) "SAP NetWeaver(tm) Developer Studio Integration"
com.togethersoft.togetherxj.uml (0.9.0) "Generic UML Modeling"
com.togethersoft.togetherxj.uml.cdl (0.9.0) "CDL Plug-in"
com.togethersoft.togetherxj.uml.interaction (0.9.0) "Interaction Diagrams Plug-in"
com.togethersoft.togetherxj.uml.uml20 (0.9.0) "UML 2.0 Support"
com.togethersoft.togetherxj.uml.uml20.actions (0.9.0) "UML 2.0 Actions Fragment"
com.togethersoft.togetherxj.uml.uml20.providers (0.9.0) "UML 2.0 Providers Fragment"
com.togethersoft.togetherxj.uml.uml20.viewmaps (0.9.0) "UML 2.0 Viewmaps Fragment"
com.tssap.config (1.0.0) "Core Startup Configuration"
com.tssap.dii (2.0.0) "Infrastructure DII"
com.tssap.dtr.client.eclipse (2.0.0) "Infrastructure DTR UI"
com.tssap.dtr.client.vfs (2.0.0) "Infrastructure DTR Client Library (VFS)"
com.tssap.editors (2.0.0) "Core Editors"
com.tssap.ext.libs.j2ee (1.3.0) "J2EE External Libs"
com.tssap.j2ee.core.descriptor (2.0.0) "J2EE Descriptor Support"
com.tssap.j2ee.core.ear (2.0.0) "J2EE Ear Model"
com.tssap.j2ee.core.ear.impl (2.0.0) "J2EE Ear Model Implementation"
com.tssap.j2ee.core.ejb (2.0.0) "J2EE Ejb Model"
com.tssap.j2ee.core.ejb.impl (1.0.0) "J2EE Ejb Model Implementation"
com.tssap.j2ee.core.ejbjar (2.0.0) "J2EE Ejb Jar Model"
com.tssap.j2ee.core.ejbjar.impl (2.0.0) "J2EE Ejb Jar Model Implementation"
com.tssap.j2ee.core.inheritance (1.0.0) "J2EE Ejb Inheritance"
com.tssap.j2ee.core.inheritance.impl (1.0.0) "J2EE Ejb Inheritance Implementation"
com.tssap.j2ee.core.providers.dtr (2.0.0) "J2EE DTR Providers"
com.tssap.j2ee.core.providers.ear (2.0.0) "J2EE Ear Providers"
com.tssap.j2ee.core.providers.ejb (2.0.0) "J2EE Ejb Providers"
com.tssap.j2ee.core.providers.ejbjar (2.0.0) "J2EE Ejb Jar Providers"
com.tssap.j2ee.core.providers.vi (2.0.0) "J2EE Web Service Virtual Interface Providers"
com.tssap.j2ee.core.providers.web (2.0.0) "J2EE Web Providers"
com.tssap.j2ee.core.providers.webapp (2.0.0) "J2EE Web App Providers"
com.tssap.j2ee.core.providers.ws (2.0.0) "J2EE Web Service Providers"
com.tssap.j2ee.core.utils (2.0.0) "J2EE Utils Plug-in"
com.tssap.j2ee.core.web (2.0.0) "J2EE Web Model"
com.tssap.j2ee.core.web.impl (2.0.0) "J2EE Web Model Implementation"
com.tssap.j2ee.core.webapp (2.0.0) "J2EE Web App Model"
com.tssap.j2ee.core.webapp.impl (2.0.0) "J2EE Web App Model Implementation"
com.tssap.j2ee.doc.user (1.3.0) "Documentation J2EE 1.3"
com.tssap.j2ee.external (2.0.0) "J2EE External"
com.tssap.j2ee.library (2.0.0) "J2EE Library"
com.tssap.j2ee.model (2.0.0) "J2EE Model"
com.tssap.j2ee.model.ext (2.0.0) "J2EE Model Extensions"
com.tssap.j2ee.ui (2.0.0) "J2EE UI core"
com.tssap.j2ee.ui.ear (2.0.0) "J2EE UI ear"
com.tssap.j2ee.ui.ejb (2.0.0) "J2EE UI ejb"
com.tssap.j2ee.ui.ejbjar (2.0.0) "J2EE UI ejb-jar"
com.tssap.j2ee.ui.perspective (2.0.0) "J2EE UI perspective/views"
com.tssap.j2ee.ui.web (2.0.0) "J2EE UI web"
com.tssap.j2ee.util (2.0.0) "J2EE Core Utilities"
com.tssap.j2ee.viewmaps (2.0.0) "J2EE Viewmaps"
com.tssap.j2ee.viewmaps.java (2.0.0) "J2EE Simple Java Viewmaps"
com.tssap.j2se.doc.user (1.4.2) "Documentation J2SE 1.4.2"
com.tssap.sap.libs.ejbql (2.0.0) "J2EE EJBQL"
com.tssap.sap.libs.logging (2.0.0) "Core Logging"
com.tssap.sap.libs.xmltoolkit (2.0.0) "Core XML Toolkit"
com.tssap.selena.cmf (2.0.0) "Core Selena Patterns and Templates"
com.tssap.selena.dom (1.0.0) "Core Selena DOM"
com.tssap.selena.draw2d (2.0.0) "Core Selena Draw2D Extensions"
com.tssap.selena.gde (2.0.0) "Core Selena GDE Extensions"
com.tssap.selena.java.comment (2.0.0) "Core Selena Java Comment Parser"
com.tssap.selena.layout (1.0.0) "Core Selena Layout"
com.tssap.selena.license (2.0.0) "Core Selena Common License"
com.tssap.selena.license.unlimited (2.0.0) "Core Selena Common License Unlimited"
com.tssap.selena.model (2.0.0) "Core Selena Model"
com.tssap.selena.model.extension (2.0.0) "Core Selena Model Extensions"
com.tssap.selena.model.platform.eclipse (1.0.0) "Core Selena Model Platform"
com.tssap.selena.model.preferences (1.0.0) "Core Selena Model Preference Store"
com.tssap.selena.model.providers.design (0.9.0) "Design Plugin"
com.tssap.selena.model.providers.java (2.0.0) "Core Selena Model Java Providers"
com.tssap.selena.model.providers.proxy (2.0.0) "Core Selena Model Proxy Providers"
com.tssap.selena.model.providers.rc (1.0.0) "Core Selena Model Reference Collections Support"
com.tssap.selena.model.providers.resources (2.0.0) "Core Selena Model Resources Providers"
com.tssap.selena.model.ui (2.0.0) "Core Selena Model UI"
com.tssap.selena.model.ui.navigator (2.0.0) "Core Selena Model UI Navigator"
com.tssap.selena.model.undo (2.0.0) "Core Selena Model Undo Support"
com.tssap.selena.model.update (2.0.0) "Core Selena Model Graphical Diagram Editor Updater"
com.tssap.selena.properties (2.0.0) "Core Selena Properties"
com.tssap.selena.ui (2.0.0) "Core Selena UI"
com.tssap.selena.viewmanagement (2.0.0) "Core Selena View Management"
com.tssap.selena.viewmaps.figures (2.0.0) "Core Selena Viewmap Figures"
com.tssap.tools (2.0.0) "Core Tools"
com.tssap.tools.ui (2.0.0) "Core Tools UI"
com.tssap.util (2.0.0) "Core Utilities"
com.tssap.util.xml (2.0.0) "Core XML Utilities"
org.antlr (2.0.0) "Core Antlr"
org.apache.ant (1.5.3) "Apache Ant"
org.apache.batik (1.5.0) "Apache Batik"
org.apache.lucene (1.2.1) "Apache Lucene"
org.apache.regexp (1.1.9) "Apache Regular Expression package"
org.apache.velocity (0.9.0) "org.apache.velocity"
org.apache.xerces (4.0.13) "Xerces Based XML Parser"
org.eclipse.ant.core (2.1.1) "Ant Build Tool Core"
org.eclipse.compare (2.1.0) "Compare Support"
org.eclipse.core.boot (2.1.2) "Core Boot"
org.eclipse.core.resources (2.1.1) "Core Resource Management"
     org.eclipse.core.resources.win32 (2.1.0) "%win32FragmentName"
org.eclipse.core.runtime (2.1.1) "Core Runtime"
org.eclipse.debug.core (2.1.2) "Debug Core"
org.eclipse.debug.ui (2.1.1) "Debug UI"
org.eclipse.draw2d (2.0.0) "Draw2d"
org.eclipse.draw2d.doc.isv (2.0.0) "Draw2d Documentation"
org.eclipse.gef (2.0.0) "Graphical Editor Framework"
org.eclipse.gef.doc.isv (2.0.0) "GEF Documentation"
org.eclipse.gef.examples.logicdesigner (2.0.0) "Logic GEF Example"
org.eclipse.help (2.1.2) "Help System Core"
org.eclipse.help.appserver (2.1.0) "Help Application Server"
org.eclipse.help.ui (2.1.1) "Help System UI"
     org.eclipse.help.ui.win32 (2.1.0) "%help_system_plugin_name_win32"
org.eclipse.help.webapp (2.1.2) "Help System Webapp"
org.eclipse.jdt (2.1.2) "Eclipse Java Development Tools"
org.eclipse.jdt.core (2.1.2) "Java Development Tools Core"
org.eclipse.jdt.debug (2.1.2) "JDI Debug Model"
org.eclipse.jdt.debug.ui (2.1.1) "JDI Debug UI"
org.eclipse.jdt.doc.isv (2.1.0) "Eclipse JDT Plug-in Developer Guide"
org.eclipse.jdt.doc.user (2.1.0) "Eclipse Java Development User Guide"
org.eclipse.jdt.junit (2.1.1) "Java Development Tools JUnit support"
org.eclipse.jdt.launching (2.1.1) "Java Development Tools Launching Support"
org.eclipse.jdt.source (2.1.2) "Eclipse Java Development Tools SDK"
org.eclipse.jdt.ui (2.1.2) "Java Development Tools UI"
org.eclipse.jface (2.1.1) "JFace"
org.eclipse.jface.text (2.1.0) "JFace Text"
org.eclipse.pde (2.1.0) "Eclipse Plug-in Development Environment"
org.eclipse.pde.build (2.1.0) "Plug-in Development Environment Build Support"
org.eclipse.pde.core (2.1.2) "Plug-in Development Core"
org.eclipse.pde.doc.user (2.1.0) "Eclipse Plug-in Development User Guide"
org.eclipse.pde.runtime (2.1.0) "Plug-in Development Environment Runtime"
org.eclipse.pde.source (2.1.2) "Eclipse Plug-in Development Environment Source Code"
org.eclipse.pde.ui (2.1.2) "Plug-in Development UI"
org.eclipse.platform (2.1.2) "Eclipse Platform"
org.eclipse.platform.doc.isv (2.1.0) "Eclipse Platform Plug-in Developer Guide"
org.eclipse.platform.doc.user (2.1.1) "Eclipse Workbench User Guide"
org.eclipse.platform.source (2.1.2) "Eclipse Platform Plug-in Developer Resources"
org.eclipse.platform.win32 (2.1.2) "Eclipse Platform (Windows)"
org.eclipse.platform.win32.source (2.1.2) "Eclipse Platform Plug-in Developer Resources (Windows)"
org.eclipse.sdk.win32 (2.1.2) "Eclipse Project SDK (Windows)"
org.eclipse.search (2.1.1) "Search Support"
org.eclipse.swt (2.1.2) "Standard Widget Toolkit"
     org.eclipse.swt.win32 (2.1.2) "%fragmentName"
org.eclipse.team.core (2.1.1) "Team Support Core"
org.eclipse.team.ui (2.1.0) "Team Support UI"
org.eclipse.text (2.1.0) "Text"
org.eclipse.tomcat (4.0.6.2) "Tomcat Wrapper"
org.eclipse.ui (2.1.1) "Eclipse UI"
org.eclipse.ui.editors (2.1.0) "Default Text Editor"
org.eclipse.ui.externaltools (2.1.1) "External Tools"
org.eclipse.ui.versioncheck (2.1.1) "Eclipse Version Check"
org.eclipse.ui.views (2.1.0) "Views"
org.eclipse.ui.workbench (2.1.1) "Workbench"
     org.eclipse.ui.win32 (2.1.0) "%Win32Fragment.fragmentName"
org.eclipse.ui.workbench.texteditor (2.1.0) "Text Editor Framework"
org.eclipse.update.core (2.1.0) "Install/Update Core"
     org.eclipse.update.core.win32 (2.1.0) "%fragmentNameWin"
org.eclipse.update.ui.forms (2.1.0) "Install/Update Forms"
org.junit (3.8.1) "JUnit Testing Framework"
User Preferences:
#Tue Aug 28 08:52:22 GMT 2007
org.eclipse.ui.workbench/reopen_active=false
com.tssap.dtr.client.eclipse/automerge_exclusionflag=11111111111111111111111111111111111111
org.eclipse.jdt.core/org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.ORG_ECLIPSE_JDT_SOURCE_SRC=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/org.eclipse.jdt.source_2.1.2/src
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_SECURITY_LIB_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.sap.ide.eclipse.ext.libs.iaik_2.0.0/
com.tssap.config=1.0.0
org.eclipse.ui.workbench/snap_to_grid=true
org.eclipse.ui.workbench/ShowM3ElementsOnSAPDiagrams=true
org.eclipse.ui.workbench/srt_enabled=true
org.eclipse.ui.workbench/class_width=200
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_ENGINE_WEBSERVICES_LIBS_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.sap.engine.webservices_2.0.0/
org.eclipse.pde.core/ext_locations=COM_SAP_TC_JTOOLS_SOURCE_SRC@C:
Program Files
SAP
IDE
IDE70
eclipse
plugins
com.sap.tc.jtools.source_2.0.0
src,t;ORG_ECLIPSE_PDE_SOURCE_SRC@C:
Program Files
SAP
IDE
IDE70
eclipse
plugins
org.eclipse.pde.source_2.1.2
src,t;ORG_ECLIPSE_PLATFORM_SOURCE_SRC@C:
Program Files
SAP
IDE
IDE70
eclipse
plugins
org.eclipse.platform.source_2.1.2
src,t;ORG_ECLIPSE_PLATFORM_WIN32_SOURCE_SRC@C:
Program Files
SAP
IDE
IDE70
eclipse
plugins
org.eclipse.platform.win32.source_2.1.2
src,t;ORG_ECLIPSE_JDT_SOURCE_SRC@C:
Program Files
SAP
IDE
IDE70
eclipse
plugins
org.eclipse.jdt.source_2.1.2
src,t
com.tssap.dtr.client.eclipse/workspaceMonitor_ADD=true
org.eclipse.ui.workbench/ignored_folders=CVS
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_LOGGING_LIB_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.tssap.sap.libs.logging_2.0.0/
org.eclipse.ui.workbench/optimize_import_enabled=true
org.eclipse.ui.workbench/hide_properties_participants=true
org.eclipse.jdt.ui/outlinesortoption=T,SI,SF,SM,I,F,C,M,
com.tssap.config/proxyHost=proxy.escapo.local
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.MWD_RUNTIME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_EXCEPTION_LIB_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.sap.exception_2.0.0/
org.eclipse.ui.workbench/FilterCMPAccessors=false
com.sap.ide.eclipse.j2ee.engine/MsgSrvHost=sideshow-mel
org.eclipse.ui.workbench/ENABLED_DECORATORS=com.tssap.dtr.client.eclipse.ui.decorator:false,org.eclipse.pde.ui.binaryProjectDecorator:false,org.eclipse.ui.LinkedResourceDecorator:true,
com.tssap.j2ee.ui/com.tssap.j2ee.ui.perspective.view.j2ee.J2eeView_OptimisticChildrenCheckStoreKey=false
com.tssap.j2ee.ui=2.0.0
com.togethersoft.selena.sapient/CONFIG_FILE=C:/Users/Admin/Documents/SAP/workspace/default.qa
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.TSSAP_JAVAX_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.tssap.ext.libs.j2ee_1.3.0/
org.eclipse.ui.workbench/inner_class_name_template=InnerClass
com.tssap.dtr.client.eclipse/automerge_exclusionlist=mmdiagram
mmtemplateinstance
dtlist
dtlogicalddic
dtindex
dtsimpletype
dtdbview
dtdbindex
dtstructure
dtdbtable
wdlocalcompintfdef
wdwindow
wdviewsetdefinition
wdnavigation
wdmodeltype
wdcomponent
wdapplication
wduielib
wdmodelclass
wdcompinterfacedef
wdcontroller
wduielementdef
wdapplpropertiesdef
wdinterfaceview
wdview
wdcompconfig
wdmodel
wdconfigobject
wdmessagepool
wdproperties
wdlayoutdef
wdcomponentinterface
vicheck
wsprxdef
videf
wsdef
xlf
wsmodel
org.eclipse.ui.workbench/method_name_template=method
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.WD_RUNTIME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/
org.eclipse.ui.workbench/class_name_template=Class
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_XML_TOOLKIT_LIBS_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.tssap.sap.libs.xmltoolkit_2.0.0/
com.sap.ide.eclipse.j2ee.engine=2.0.0
org.eclipse.ui.workbench/default_visibility_order=Public,Package Local,Protected,Private
org.eclipse.ui.workbench/org.eclipse.ui.commands=<info extension="dtdbtable" name=""><editor id="com.sap.dictionary.tools.tableeditor.TableEditor"/></info><info extension="jpage" name=""><info extension="wdapplication" name=""><editor id="com.sap.ide.webdynpro.editors.application"/></info><info extension="dtsimpletype" name=""><info extension="jardesc" name=""><editor id="org.eclipse.jdt.ui.JARDescEditor"/></info><info extension="sqlj" name=""><info extension="java" name=""><editor id="org.eclipse.jdt.ui.CompilationUnitEditor"/></info><info extension="xml" name="provider"><editor id="com.sap.ide.eclipse.j2ee.model.ui.saplibrary.saplibraryeditor"/></info><info extension="wdcomponent" name=""><info extension="class" name=""><editor id="org.eclipse.jdt.ui.ClassFileEditor"/></info><info extension="mxsd" name=""><info extension="html" name=""><editor id="com.tssap.editors.htmleditor"/></info><info extension="dtstructure" name=""><info extension="htm" name=""><editor id="com.tssap.editors.htmleditor"/></info><info extension="xml" name="application"><editor id="com.tssap.j2ee.ui.ear.editor.eareditor"/></info><info extension="xml" name="DriverRequirementDocument"><editor id="com.sap.ip.me.mdk.pios.docgen.editors.DRDEditor"/></info><info extension="wsdef" name=""><info extension="txt" name=""><editor id="org.eclipse.ui.DefaultTextEditor"/></info><info extension="xml" name="sda-dd"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapsda.sapsdaeditor"/></info><info extension="xml" name="fragment"><editor id="org.eclipse.pde.ui.fragmentEditor"/></info><info extension="mpe" name=""><info extension="wdview" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="xml" name=""><info extension="xlf" name=""><editor id="com.sap.ide.eclipse.s2x.editor.editors.S2XMultiPageEditor"/></info><info extension="xml.old" name="web"><editor id="com.tssap.j2ee.ui.editor.webeditorold"/></info><info extension="wdbusiness" name=""><info extension="wdcompinterfacedef" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="xsd" name=""><info extension="metamodel" name=""><editor id="com.sap.ide.metamodel.core.metamodel"/></info><info extension="testscript" name=""><info extension="wdcontroller" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="xml" name="data-source-aliases"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapdsaliases.sapdsaliaseseditor"/></info><info extension="properties" name="build"><editor id="org.eclipse.pde.ui.buildEditor"/></info><info extension="lp" name=""><info extension="xxx" name=""><editor id="com.sap.ide.webdynpro.editors.implementation"/><editor id="com.sap.ide.webdynpro.editors.componentControllerUsage"/></info><info extension="xml" name="ejb-j2ee-engine"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapejbjar.sapejbjardescriptioneditor"/></info><info extension="xml" name="feature"><editor id="org.eclipse.pde.ui.featureEditor"/></info><info extension="wdwindow" name=""><info extension="exsd" name=""><editor id="org.eclipse.pde.ui.schemaEditor"/></info><info extension="xml" name="portalapp"><editor id="com.sap.portal.developmenttools.PortalappXmlEditor"/></info><info extension="testresult" name=""><info extension="logic" name=""><editor id="Logic Graphical Editor"/></info><info extension="videf" name=""><info extension="jsp" name=""><editor id="com.tssap.editors.jspeditor"/></info><info extension="wdcomponentinterface" name=""><info extension="wdnavigation" name=""><editor id="com.sap.ide.webdynpro.tsmodel.application.window"/></info><info extension="properties" name=""><info extension="wdinterfaceview" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="wdmodelclass" name=""><info extension="wsprxdef" name=""><editor id="com.sap.ide.wsproxy.wsproxyeditor"/></info><info extension="xml" name="application-j2ee-engine"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapear.sapeareditor"/></info><info extension="xml" name="ejb-jar"><editor id="com.tssap.j2ee.ui.ejbjar.editor.ejbjareditor"/></info><info extension="tag" name="">
org.eclipse.jdt.ui/hoverModifierMasks=org.eclipse.jdt.ui.BestMatchHover;0;org.eclipse.jdt.ui.JavadocHover;0;org.eclipse.jdt.ui.ProblemHover;0;org.eclipse.jdt.ui.JavaSourceHover;262144;org.eclipse.jdt.internal.debug.ui.JavaDebugHover;0;
com.tssap.config/sapInitialized=true
org.eclipse.ui.workbench/save_resources_automatically=true
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.JRE_SRC=C:/j2sdk1.4.2_09/src.zip
org.eclipse.ui.workbench/grid_height=10
com.togethersoft.selena.sapient=0.9.0
com.tssap.config/proxySet=true
org.eclipse.ui.workbench/RemoveAssembledInterfacePairOnRemovingParticipant=false
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.ECLIPSE_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse
org.eclipse.ui.workbench/tab_placement=top
org.eclipse.pde.core=2.1.2
org.eclipse.jdt.launching=2.1.1
org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_USER_ADD_LIBS=C:/Escapo/JarFiles
org.eclipse.jdt.ui/fontPropagated=true
com.tssap.dtr.client.eclipse/workspaceMonitor_GENERAL=true
org.eclipse.ui.workbench/field_name_template=field
org.eclipse.debug.ui=2.1.1
org.eclipse.jdt.junit=2.1.1
org.eclipse.ui.workbench/refactor_default_names=false
org.eclipse.ui.workbench/default_member_order=Field,Constructor,Method,Inner Class,Inner Interface
com.sap.ide.eclipse.component.provider=2.0.0
org.eclipse.jdt.junit/org.eclipse.jdt.junit.active_filters=org.eclipse.jdt.internal.junit.runner.,org.eclipse.jdt.internal.junit.ui.,junit.framework.TestCase,junit.framework.TestResult,junit.framework.TestSuite,junit.framework.Assert,java.lang.reflect.Method.invoke
Update Manager Log:
Configuration=3-jul-2007 18:15:45
Is current configuration=false
Date=3/07/07 16:15
Activities=file:C:/Program Files/SAP/IDE/IDE70/eclipse/
Action=Site installed
Status=Success
Date=3/07/07 16:15
Activities=file:C:/Users/Admin/Documents/SAP/workspace/.metadata/.config/platform.cfg.metadata/v2LocalSite.xml
Action=Reconcile
Status=Success
Configuration=17-jul-2007 9:48:44
Is current configuration=true
Date=17/07/07 9:48
Activities=file:C:/Program Files/SAP/IDE/IDE70/eclipse/
Action=Site installed
Status=Success
Date=17/07/07 9:48
Activities=file:C:/Users/Admin/Documents/SAP/workspace/.metadata/.config/platform.cfg.metadata/v2LocalSite.xml
Action=Reconcile
Status=Success
Error Log:
!SESSION aug 27, 2007 13:27:00.12 -
java.version=1.4.2_09
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=nl_BE
Command-line arguments: -os win32 -ws win32 -arch x86 -feature com.sap.java.ide C:j2sdk1.4.2_09 injavaw.exe
-Xmx512m
-Xms128m
-XX:PermSize=32m
-XX:MaxPermSize=128m
-DallUserDir='C:ProgramData'
-cp C:Program FilesSAPIDEIDE70eclipseSapStartup.jar com.sap.ide.eclipse.startup.Main
-os win32
-ws win32
-arch x86
-feature com.sap.java.ide
-showsplash C:Program FilesSAPIDEIDE70eclipseSapIde.exe -showsplash 600  -data C:UsersAdminDocumentsSAPworkspace -install file:C:/Program Files/SAP/IDE/IDE70/eclipse/
!ENTRY com.tssap.util 1 0 aug 27, 2007 13:27:00.12
!MESSAGE .log file backup. Backup file: backup2007827_132659.log
!ENTRY Startup 1 0 aug 27, 2007 13:27:00.52
!MESSAGE Sap NetWeaver Developer Studio - Build: 200701062019
!ENTRY com.sap.ide.metamodel.core 1 1 aug 27, 2007 13:27:06.150
!MESSAGE Updating metamodel archives from classpath for project ExcelFileAdapterModule
!SESSION aug 28, 2007 08:45:21.796 -
java.version=1.4.2_09
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=nl_BE
Command-line arguments: -os win32 -ws win32 -arch x86 -feature com.sap.java.ide C:j2sdk1.4.2_09 injavaw.exe
-Xmx512m
-Xms128m
-XX:PermSize=32m
-XX:MaxPermSize=128m
-DallUserDir='C:ProgramData'
-cp C:Program FilesSAPIDEIDE70eclipseSapStartup.jar com.sap.ide.eclipse.startup.Main
-os win32
-ws win32
-arch x86
-feature com.sap.java.ide
-showsplash C:Program FilesSAPIDEIDE70eclipseSapIde.exe -showsplash 600  -data C:UsersAdminDocumentsSAPworkspace -install file:C:/Program Files/SAP/IDE/IDE70/eclipse/
!ENTRY Startup 1 0 aug 28, 2007 08:45:21.796
!MESSAGE Sap NetWeaver Developer Studio - Build: 200701062019
!ENTRY com.sap.ide.metamodel.core 1 1 aug 28, 2007 08:45:29.375
!MESSAGE Updating metamodel archives from classpath for project ExcelFileAdapterModule

Hi ,
<b><i>
      1) Why i have this error and how can i fix it? Is it a problem inside my code? Or is it somewhere else?</i></b>
           No problem at ur side .
            There is no Executable Java file  in the EJB  . It will show like this for EJB applications  .  Don't worry about this . Just deploy  .
Assign Points if you  found helpful!
Regards.,
V.Rangarajan

Similar Messages

  • Jdeveloper 10.1.3.2 with Oracle AS 10.1.3 : java.lang.NoSuchMethodError: or

    Hi,
    I develop application on Jdeveloper 10.1.3.2 and it's working when I run on OC4J in Jdeveloper. But when I deploy on Oracle Application Server 10.1.3, I got error message like this
    java.lang.NoSuchMethodError: oracle.adf.share.perf.StateTracker.isActive()Z
    at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:94)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Thanks in advance.

    I already install. The others application can run on this AS but it's develop on other version of Jdeveloper such as 10.1.3.1.
    Actually, I used JAZN on my project but when I deploy on AS I got problem that user cannot log-in to the application (look like login is invalid but I already generate janzn-data.xml and orion-application.xml). I think the reason is AS will authen through OID. So, I remove JAZN from my project. After that when I deploy on AS, I got this error.

  • Java.lang.NoSuchMethodError while invoking web service method

    Hi, I have a web service which has two methods exposed as
    A and B.
    I deployed it on weblogic server (7.0 SP4) and fired teh request when I got this error:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <env:Header/>
    <env:Body>
    <env:Fault>
    <faultcode>env:Server</faultcode>
    <faultstring/>
    <detail>
    <bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webservice/fault/1.0.0">java.lang.NoSuchMethodError
    I tried deploying the web service on another instance and there the method A was invoked but I got the same error when I tried invoking B.
    I tried it on third instance and there both the methods were successfully invoked.
    The methods A and B name start with capital letter (someone told me that method name should not start with capital letter but that does not hold good here)
    Any idea why this starnge behavior of web service?

    Hi Guys,
    I have solved the above issue by applying the PATCH 1 & PATCH 2 of the
    BPEL 10.1.2 version .
    Thanks
    Kalyan

  • Java.lang.NoSuchMethodError while running the Application on MI client

    Hi Experts
    During development I run my application through NWDS and worked perfect. But when I  run my application only through MI client. It through error on my programmed methods: java.lang.NoSuchMethodError:
    Any advice is highly appreciated!
    Michal

    Thanks for your reply!
    I use MI 2.5 SP20 and that trace is:
    Internal Servlet Error:
    java.lang.NoSuchMethodError: com.sap.myApp.bean.TableViewBean.setAll(Ljava/lang/String;)V
    Thanks for any advice

  • DoInit() Method error - java.lang.NoSuchMethodError: com.sap.tc.webdynpro.m

    Hello,
       Im having trouble running a Web Dynpro Application. When running, the application is showing me the following exception,
    java.lang.NoSuchMethodError: com.sap.tc.webdynpro.model.webservice.gci.WSTypedModel.<init>(Ljava/lang/String;Ljava/lang/String;Ljavax/xml/namespace/QName;Ljava/lang/String;Ljava/util/Map;Ljava/lang/String;Lcom/sap/tc/webdynpro/model/webservice/gci/IWSTypedModelInfo;Ljava/util/Map;Ljava/util/Map;)V
      at pe.com.minsur.wd_po_ws.wd_po_ws_model.Wd_po_ws_Model.<init>(Wd_po_ws_Model.java:124)
      at pe.com.minsur.wd_po_ws.wd_po_ws_app.comp.Wd_po_ws_Comp.wdDoInit(Wd_po_ws_Comp.java:120)
      at pe.com.minsur.wd_po_ws.wd_po_ws_app.comp.wdp.InternalWd_po_ws_Comp.wdDoInit(InternalWd_po_ws_Comp.java:195)
      at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:160)
    This is in the DoInit() method, In the line,
    Wd_po_ws_Model wd_po_ws_ModelModel = new Wd_po_ws_Model();
      It could be the METADATA or MODELDATA destination configuration?
    Thanks
    SU

    Hello,
    The problem is solved following these steps,
    "NWDS IDE is in SP04 whereas the WebDynpro Runtime is in SP01. So yo have to upgrade your WebDynpro in WebAS to SP04.
    All WebDynpro for Java patches are available on SAP Service Marketplace.Note 330793 explains how to download patches from SAP Service Marketplace. Note 1395865 explains how to find the Web Dynpro for Java related SCAs.
    Update your system via JSPM.
    Please refer the link to the official documentation for JSPM
    http://help.sap.com/saphelp_nwpi711/helpdata/en/1f/c45b4211aac353e10000000a1550b0/frameset.htm
    From WebDynpro perspective, we recommend you to apply both WD-RUNTIME.SCA and FRAMEWORK.SCA. So if any one of the archive is not mentioned in the 'SP Patch Level' tab, it is recommended to apply the same which is available in the service market place."
    Regards
    SU

  • Java.lang.NoSuchMethodError: com.sap.tc.webdynpro.model.webservice.gci.WSTy

    Hello,
      I have SAP EH1 for SAP NWCE 7.1 and NWDS with the recent upgrade pack of WD. When I run my WD application the following exception ocurr,
      java.lang.NoSuchMethodError: com.sap.tc.webdynpro.model.webservice.gci.WSTypedModel.(Ljava/lang/String;Ljava/lang/String;Ljavax/xml/namespace/QName;Ljava/lang/String;Ljava/util/Map;Ljava/lang/String;Lcom/sap/tc/webdynpro/model/webservice/gci/IWSTypedModelInfo;Ljava/util/Map;Ljava/util/Map;)V
    at pe.com.minsur.wd_test_esr.wdtestesr_model.Wdtestesr_Model.<init>(Wdtestesr_Model.java:240)
        at pe.com.minsur.wd_test_esr.wdtestesr_app.comp.Wdtestesr_Comp.wdDoInit(Wdtestesr_Comp.java:111)
        at pe.com.minsur.wd_test_esr.wdtestesr_app.comp.wdp.InternalWdtestesr_Comp.wdDoInit(InternalWdtestesr_Comp.java:445)
        at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:160)
        at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:227)
    My DoInit Method only have this code,
    public void wdDoInit()
        Wdtestesr_Model model = new Wdtestesr_Model();
    Any ideas?
    Regards
    MG

    The problem is that the logical destinations are not well configured.

  • Java.lang.NoSuchMethodError using beans and JSP

    Hi,
    I get a
    java.lang.NoSuchMethodError: Unit.UnitBean.execSQL(Ljava/lang/String; Ljava/sql/ResultSet;
    when i try to call that method from my jsp page. I can call all other methods in teh bean but I can't understand why it can't find execSQL when it finds every thing else.
    Any help would be greatly appreciated.
    Mike
    Heres a copy of my java bean code:
    package Unit;
    import java.sql.*; 
    import java.io.*; 
    public class UnitBean
         Connection con;
         String error;
         public boolean connect() throws ClassNotFoundException,SQLException
              String StudentNumber = "xxx";
              String strHost = "xxxx";
              String strConnectURL = ("jdbc:postgresql://" + strHost + "/");
              String strUser = "xxxx";
              String strPassword = "xxxxx";
              Class.forName("org.postgresql.Driver");
              con = DriverManager.getConnection(strConnectURL, strUser, strPassword);     
              return true;
         public void disconnect() throws SQLException
              con.close();
         public ResultSet execSQL(String sql)throws SQLException
              Statement s = con.createStatement();
              ResultSet rs = s.executeQuery(sql);
              return rs;
         public String test()
              String Mike="HIHIHIHIHI";
              return Mike;
    }And the jsp code:
    <%@ page language="java" contentType="text/html"%>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*" %>
    <jsp:useBean id="Unit" class="Unit.UnitBean" scope="page"/>
    <html>
         <head>
              <title>Test My Bean!!!!???!!?!</title>
         </head>
         <body>
              <%
                   String SQL ="Select * from unit where unitid='CMPS2B26'";
                   ResultSet rs =null;
                   try
                        Unit.connect();
                        rs = Unit.execSQL(SQL);
                        while(rs.next())
                                  out.println(rs.getString("unitid"));
                        Unit.disconnect();     
                   catch(Exception e)
                        out.println("<p>Problem with jsp code" +e);
              %>
              This is a jsp page.
              <p><a href = "http://stuweb3.cmp.uea.ac.uk/~xxxx/index.html">Click here for home page</a>
         </body>
    </html>

    Yeah, that worked great, thanks a lot. I thought that JSP compiled when you changed it and then visited it, but i've tried that. I just ran ant stop start on my server and it's all working.
    Thanks again :)
    Mike

  • Error when starting Enterprise Manager: java.lang.NoSuchMethodError

    Hi,
    When trying to access the EM i got Error 404--Not Found, so i went to start EM manually but i'm getting this error when trying to start the EM in weblogic 10.3.6 on Windows 7 64 bits:
    ####<12-10-2012 09:47:02 AM CST> <Warning> <Deployer> <Carlos-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <28c4d4e1e4b85327:42e7543a:13b85623d16:-8000-00000000000001d1> <1355154422239> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException:
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1520)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.StartOperation.doCommit(StartOperation.java:149)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.NoSuchMethodError: org.apache.log4j.spi.LoggingEvent.getLevel()Lorg/apache/log4j/Level;What should i do to solve this ?? :(
    Regards
    Carlos

    At the admin console the error shown is the one from the warning, the error from log is:
    ####<12-10-2012 09:47:02 AM CST> <Error> <Deployer> <Carlos-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <28c4d4e1e4b85327:42e7543a:13b85623d16:-8000-00000000000001c8> <1355154422236> <BEA-149202> <Encountered an exception while attempting to commit the 7 task for the application 'em'.>
    ####<12-10-2012 09:47:02 AM CST> <Warning> <Deployer> <Carlos-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <28c4d4e1e4b85327:42e7543a:13b85623d16:-8000-00000000000001d1> <1355154422238> <BEA-149004> <Failures were detected while initiating start task for application 'em'.>
    ####<12-10-2012 09:47:02 AM CST> <Warning> <Deployer> <Carlos-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <28c4d4e1e4b85327:42e7543a:13b85623d16:-8000-00000000000001d1> <1355154422239> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException:
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1520)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.StartOperation.doCommit(StartOperation.java:149)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.NoSuchMethodError: org.apache.log4j.spi.LoggingEvent.getLevel()Lorg/apache/log4j/Level;
         at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:215)
         at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:57)
         at org.apache.log4j.Category.callAppenders(Category.java:190)
         at org.apache.log4j.Category.forcedLog(Category.java:375)
         at org.apache.log4j.Category.log(Category.java:838)
         at oracle.sysman.util.logging.ApacheLogOperations.logp(ApacheLogOperations.java:251)
         at oracle.sysman.util.logging.DualModeLogOperations.logp(DualModeLogOperations.java:244)
         at oracle.sysman.emSDK.util.logging.Logger.logp(Logger.java:1104)
         at oracle.sysman.emSDK.util.logging.Logger.log(Logger.java:810)
         at oracle.sysman.util.logging.log4j.Log4jLogger.log(Log4jLogger.java:145)
         at oracle.sysman.util.logging.log4j.Log4jLogger.debug(Log4jLogger.java:83)
         at oracle.sysman.eml.app.ContextInitializer.storeOmsAdminOp(ContextInitializer.java:1727)
         at oracle.sysman.eml.app.ContextInitializer.contextInitialized(ContextInitializer.java:1153)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.StartOperation.doCommit(StartOperation.java:149)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • Javax.naming.NamingException.  Root exception is java.lang.NoSuchMethodError

    I am using WLS5.1 inside visualage environment. I am trying to run
    a Simple EJB which connects to the database and executes two simple
    queries. The client code is as shown below:
    try{
    Context ic = getInitialContext();
    System.out.println("Initial Context created......"); java.lang.Object
    objref = ic.lookup("simpleBean.AtmHome"); System.out.println("objref
    created......");
    AtmHome home = (AtmHome) PortableRemoteObject.narrow(objref, AtmHome.class);
    System.out.println("home created......");
    Atm atm = home.create();
    System.out.println("atm created......");
    atm.transfer(8, 9, 100000);
    catch (NamingException ne)
    ne.printStackTrace(System.out);
    finally {
         try {
              ic.close();
              System.out.println("Closed the connection");
         catch (Exception e) {
              System.out.println("Exception while closing context....." );
    The above code executes fine for the first time but second time
    it throws an exception "javax.naming.NamingException.
    Root exception is java.lang.NoSuchMethodError"
    javax.naming.NamingException. Root exception is java.lang.NoSuchMethodError
         java.lang.Throwable()
         java.lang.Error()
         java.lang.LinkageError()
         java.lang.IncompatibleClassChangeError()
         java.lang.NoSuchMethodError()
         void javax.naming.NameImpl.recordNamingConvention(java.util.Properties)
         void javax.naming.NameImpl.recordNamingConvention(java.util.Properties)
         javax.naming.NameImpl(java.util.Properties)
         javax.naming.CompositeName()
         weblogic.jndi.toolkit.NormalName(java.lang.String, javax.naming.NameParser)
         weblogic.jndi.toolkit.NormalName weblogic.jndi.toolkit.BasicWLContext.normalizeName(java.lang.String)
         java.lang.Object weblogic.jndi.toolkit.BasicWLContext.lookup(java.lang.String)
         weblogic.rmi.extensions.OutgoingResponse weblogic.jndi.toolkit.BasicWLContext_WLSkel.invoke(weblogic.rmi.extensions.ServerObjectReference,
    int, weblogic.rmi.extensions.IncomingRequest, weblogic.rmi.extensions.OutgoingResponse)
         java.lang.Throwable weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(int,
    weblogic.rmi.extensions.IncomingRequest)
         void weblogic.rmi.extensions.BasicRequestHandler.handleRequest(weblogic.rmi.extensions.IncomingRequest)
         void weblogic.rmi.internal.BasicExecuteRequest.execute(weblogic.kernel.ExecuteThread)
         void weblogic.kernel.ExecuteThread.run()
    --------------- nested within: ------------------
    weblogic.rmi.ServerError: A RemoteException occurred in the server
    method
    - with nested exception:
    [java.lang.NoSuchMethodError:
    Start server side stack trace:
    java.lang.NoSuchMethodError
         java.lang.Throwable()
         java.lang.Error()
         java.lang.LinkageError()
         java.lang.IncompatibleClassChangeError()
         java.lang.NoSuchMethodError()
         void javax.naming.NameImpl.recordNamingConvention(java.util.Properties)
         void javax.naming.NameImpl.recordNamingConvention(java.util.Properties)
         javax.naming.NameImpl(java.util.Properties)
         javax.naming.CompositeName()
         weblogic.jndi.toolkit.NormalName(java.lang.String, javax.naming.NameParser)
         weblogic.jndi.toolkit.NormalName weblogic.jndi.toolkit.BasicWLContext.normalizeName(java.lang.String)
         java.lang.Object weblogic.jndi.toolkit.BasicWLContext.lookup(java.lang.String)
         weblogic.rmi.extensions.OutgoingResponse weblogic.jndi.toolkit.BasicWLContext_WLSkel.invoke(weblogic.rmi.extensions.ServerObjectReference,
    int, weblogic.rmi.extensions.IncomingRequest, weblogic.rmi.extensions.OutgoingResponse)
         java.lang.Throwable weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(int,
    weblogic.rmi.extensions.IncomingRequest)
         void weblogic.rmi.extensions.BasicRequestHandler.handleRequest(weblogic.rmi.extensions.IncomingRequest)
         void weblogic.rmi.internal.BasicExecuteRequest.execute(weblogic.kernel.ExecuteThread)
         void weblogic.kernel.ExecuteThread.run()
    End  server side stack trace
         weblogic.rmi.extensions.WRMIInputStream weblogic.rmi.extensions.AbstractRequest.sendReceive()
         java.lang.Object weblogic.jndi.toolkit.BasicWLContext_WLStub.lookup(java.lang.String)
         java.lang.Object weblogic.jndi.toolkit.WLContextStub.lookup(java.lang.String)
         java.lang.Object javax.naming.InitialContext.lookup(java.lang.String)
         void simpleBean.AtmClient.main(java.lang.String [])
    NamingException is caught....
    I found out that it hangs at lookup function in the above code.
    Please let me know if I am missing any environment settings.
    Thanks
    Shailaja

    This problem is solved after installing service pack 8 for weblogic
    5.1
    -shailaja
    "shailaja" <[email protected]> wrote:
    >
    I am using WLS5.1 inside visualage environment. I am trying
    to run
    a Simple EJB which connects to the database and executes
    two simple
    queries. The client code is as shown below:
    try{
    Context ic = getInitialContext();
    System.out.println("Initial Context created......"); java.lang.Object
    objref = ic.lookup("simpleBean.AtmHome"); System.out.println("objref
    created......");
    AtmHome home = (AtmHome) PortableRemoteObject.narrow(objref,
    AtmHome.class);
    System.out.println("home created......");
    Atm atm = home.create();
    System.out.println("atm created......");
    atm.transfer(8, 9, 100000);
    catch (NamingException ne)
    ne.printStackTrace(System.out);
    finally {
         try {
              ic.close();
              System.out.println("Closed the connection");
         catch (Exception e) {
              System.out.println("Exception while closing context....."
    The above code executes fine for the first time but second
    time
    it throws an exception "javax.naming.NamingException.
    Root exception is java.lang.NoSuchMethodError"
    javax.naming.NamingException. Root exception is java.lang.NoSuchMethodError
         java.lang.Throwable()
         java.lang.Error()
         java.lang.LinkageError()
         java.lang.IncompatibleClassChangeError()
         java.lang.NoSuchMethodError()
         void javax.naming.NameImpl.recordNamingConvention(java.util.Properties)
         void javax.naming.NameImpl.recordNamingConvention(java.util.Properties)
         javax.naming.NameImpl(java.util.Properties)
         javax.naming.CompositeName()
         weblogic.jndi.toolkit.NormalName(java.lang.String, javax.naming.NameParser)
         weblogic.jndi.toolkit.NormalName weblogic.jndi.toolkit.BasicWLContext.normalizeName(java.lang.String)
         java.lang.Object weblogic.jndi.toolkit.BasicWLContext.lookup(java.lang.String)
         weblogic.rmi.extensions.OutgoingResponse weblogic.jndi.toolkit.BasicWLContext_WLSkel.invoke(weblogic.rmi.extensions.ServerObjectReference,
    int, weblogic.rmi.extensions.IncomingRequest, weblogic.rmi.extensions.OutgoingResponse)
         java.lang.Throwable weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(int,
    weblogic.rmi.extensions.IncomingRequest)
         void weblogic.rmi.extensions.BasicRequestHandler.handleRequest(weblogic.rmi.extensions.IncomingRequest)
         void weblogic.rmi.internal.BasicExecuteRequest.execute(weblogic.kernel.ExecuteThread)
         void weblogic.kernel.ExecuteThread.run()
    --------------- nested within: ------------------
    weblogic.rmi.ServerError: A RemoteException occurred in
    the server
    method
    - with nested exception:
    [java.lang.NoSuchMethodError:
    Start server side stack trace:
    java.lang.NoSuchMethodError
         java.lang.Throwable()
         java.lang.Error()
         java.lang.LinkageError()
         java.lang.IncompatibleClassChangeError()
         java.lang.NoSuchMethodError()
         void javax.naming.NameImpl.recordNamingConvention(java.util.Properties)
         void javax.naming.NameImpl.recordNamingConvention(java.util.Properties)
         javax.naming.NameImpl(java.util.Properties)
         javax.naming.CompositeName()
         weblogic.jndi.toolkit.NormalName(java.lang.String, javax.naming.NameParser)
         weblogic.jndi.toolkit.NormalName weblogic.jndi.toolkit.BasicWLContext.normalizeName(java.lang.String)
         java.lang.Object weblogic.jndi.toolkit.BasicWLContext.lookup(java.lang.String)
         weblogic.rmi.extensions.OutgoingResponse weblogic.jndi.toolkit.BasicWLContext_WLSkel.invoke(weblogic.rmi.extensions.ServerObjectReference,
    int, weblogic.rmi.extensions.IncomingRequest, weblogic.rmi.extensions.OutgoingResponse)
         java.lang.Throwable weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(int,
    weblogic.rmi.extensions.IncomingRequest)
         void weblogic.rmi.extensions.BasicRequestHandler.handleRequest(weblogic.rmi.extensions.IncomingRequest)
         void weblogic.rmi.internal.BasicExecuteRequest.execute(weblogic.kernel.ExecuteThread)
         void weblogic.kernel.ExecuteThread.run()
    End  server side stack trace
         weblogic.rmi.extensions.WRMIInputStream weblogic.rmi.extensions.AbstractRequest.sendReceive()
         java.lang.Object weblogic.jndi.toolkit.BasicWLContext_WLStub.lookup(java.lang.String)
         java.lang.Object weblogic.jndi.toolkit.WLContextStub.lookup(java.lang.String)
         java.lang.Object javax.naming.InitialContext.lookup(java.lang.String)
         void simpleBean.AtmClient.main(java.lang.String [])
    NamingException is caught....
    I found out that it hangs at lookup function in the above
    code.
    Please let me know if I am missing any environment settings.
    Thanks
    Shailaja

  • Java.lang.NoSuchMethodError: setBasename

    Hi All
    I recently migrated to jsf 1.2 while trying to access the login page i get the following error
    Can anyone help me out on this??
    com.sun.faces.lifecycle.LifecycleImpl phase
    WARNING: executePhase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@84a5c3) threw exception
    javax.faces.FacesException: javax.servlet.ServletException: java.lang.NoSuchMethodError: setBasename
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:427)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:454)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:116)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:134)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Caused by: javax.servlet.ServletException: java.lang.NoSuchMethodError: setBasename
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:324)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:394)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:309)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:525)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:261)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:422)
         ... 25 more
    Caused by: java.lang.NoSuchMethodError: setBasename
         at jsp_servlet.__login._jsp__tag1(__login.java:396)
         at jsp_servlet.__login._jspService(__login.java:179)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:394)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:309)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:525)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:261)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:422)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:454)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:116)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:134)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    Edited by: user11096200 on Jun 24, 2009 5:06 AM

    Thanks for the reply,
    I tried rebuilding the application with JSF 1.2 jars in classpath ,but i get another exception and i'm using weblogic 10.1 MP1 and JSF1.2 that comes with weblogic 10.
    com.sun.faces.lifecycle.LifecycleImpl phase
    WARNING: executePhase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@8b24fa) threw exception
    java.lang.ClassCastException: java.lang.String
         at jsp_servlet.__login._jsp__tag1(__login.java:442)
         at jsp_servlet.__login._jspService(__login.java:180)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:394)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:309)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:525)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:261)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:422)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:454)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:116)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:134)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3392)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)

  • Exception in thread "main" java.lang.NoSuchMethodError: com.sun.xml.wss.con

    Hi everyone,
    Just now i tried to run the 'simple' example in an JAXRPC Security part in the JWSDP 1.4 tutorial but got the following error:
    run-sample:
    [echo] Running the simple.TestClient program....
    [java] Service URL=http://localhost:8080/securesimple/Ping
    [java] Exception in thread "main" java.lang.NoSuchMethodError: com.sun.xml.wss.configuration.SecurityConfigurationXmlReader.readJAXRPCSecurityConfigurationString(Ljava/lang/String;Z)Lcom/sun/xml/wss/configuration/JAXRPCSecurityConfiguration;
    [java]      at com.sun.xml.rpc.security.SecurityPluginUtil.<init>(SecurityPluginUtil.java:128)
    [java]      at simple.PingPort_Ping_Stub.<clinit>(PingPort_Ping_Stub.java:40)
    [java]      at simple.PingService_Impl.getPing(PingService_Impl.java:68)
    [java]      at simple.TestClient.main(TestClient.java:27)
    Can anybody give me a clue?

    Vishal, thanks a lot for your reply. I used the App Server 2004Q4 beta and got the problem. When I switch to version 8.0.0_01 the things work well.
    But now I'm trying to understand this example and creating my own simple web app using encryption feature. From the files in the example dicrectory I can figure out the security applied at client by examining client stub files generated by the wscompile in the asant gen-client task. But I wonder when security is added to the server side. Is it when we use wsdeploy with the model part specifiedin jaxrpc-ri.xml? What is the procedure to apply the security to the web service?
    The last thing I want to ask is whether the deploytool bundled inside App Server can do the same things as ant task (eg. wsdeploy with some arguments).

  • Exception occurred during event dispatching:java.lang.NoSuchMethodError

    Hello,
    We have upgraded to the latest Oracle Application Server version 10.1.2.3.0 and the webutil version is 1.0.6.
    But we face the following error while accessing the web link. Following message captured from Java Console.
    Please suggest if you have any solutions/idea about this error. Thanks !
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    Maximum size: 50 MB
    Compression level: 0----------------------------------------------------
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Downloading http://si02938.in.irt.com:7778/forms/java/frmall_jinit.jar to JAR cacheDownloading http://si02938.in.irt.com:7778/forms/java/frmwebutil.jar to JAR cacheDownloading http://si02938.in.irt.com:7778/forms/java/jacob.jar to JAR cacheDownloading http://si02938.in.irt.com:7778/forms/java/FileInformation.jar to JAR cacheDownloading cacheproxyHost=nullproxyPort=0connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Exception occurred during event dispatching:java.lang.NoSuchMethodError     at oracle.forms.webutil.common.VBeanCommon.init(VBeanCommon.java:281)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.processEventEnd(Unknown Source)     at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)     at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)     at java.awt.Component.dispatchEventImpl(Unknown Source)     at java.awt.Container.dispatchEventImpl(Unknown Source)     at java.awt.Component.dispatchEvent(Unknown Source)     at java.awt.EventQueue.dispatchEvent(Unknown Source)     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)     at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)     at java.awt.EventDispatchThread.run(Unknown Source)
    Edited by: user12233243 on Nov 16, 2009 10:28 PM
    Edited by: user12233243 on Nov 16, 2009 10:29 PM

    hi
    read the following configuration i hope it will help u.
    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
    and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
    [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
    cd [JacobStage]
    copy jacob.jar [OraHome]\forms\java\.
    copy jacob.dll [OraHome]\forms\webutil\.
    The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
    Open a DOS command prompt.
    Add [OraHome]\jdk\bin to the PATH:
    set PATH=[OraHome]\jdk\bin;%PATH%
    Sign the files, and check the output for success:
    [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
    [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
    you may skip this step. Otherwise,
    Create a schema to hold the WebUtil stored code, and privileges needed to
    connect and create a stored package. Schema name "WEBUTIL" is recommended
    for no reason other than consistency over the user base.
    Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
    out the EXIT statement, to be able to see whether the objects were created witout
    errors.
    Start SQL*Plus as SYSTEM, and issue:
    CREATE USER webutil IDENTIFIED BY [password]
    DEFAULT TABLESPACE users
    TEMPORARY TABLESPACE temp;
    GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
    CONNECT webutil/[password]@[connectstring]
    @[OraHome]\forms\create_webutil_db.sql
    -- Inspect SQL*Plus output for errors, and then
    CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
    Reconnect as SYSTEM, and issue:
    grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
    to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
    Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
    It is important to generate the PLX, to avoid the FRM-40039 discussed in
    Note 303682.1
    If the PLX is not generated, the Webutil.pll library would have to be attached with
    full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
    Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
    There is no need to Subclass the WebutilConfig object.
    Attach the Webutil.pll Library, and remove the path.
    Add an ON-LOGON trigger with the code
    NULL;
    to avoid having to connect to an RDBMS (optional).
    Create a new button on a new canvas, with the code
    show_webutil_information (TRUE);
    in a WHEN-BUTTON-PRESSED trigger.
    Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
    the "Application Server URL" is empty.
    Then append "?config=webutil" at the end, so you end up with a URL of the form
    http://server:port/forms/frmservlet?config=webutil
    10) Run your form.
    If its Correct/Helpful please mark it thanks.
    Sarah

  • Java.lang.NoSuchMethodError: com.sun.mail.util.SocketFetcher.getSocket

    I am recieving the above error in a FileNet Content Manager environment. The full stack trace is:
    Exception in thread "main" java.lang.NoSuchMethodError: com.sun.mail.util.SocketFetcher.getSocket(Ljava/lang/String;ILjava/util/Properties;Ljava/lang/String;Z)Ljava/net/Socket;
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1195)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:322)
    at javax.mail.Service.connect(Service.java:233)
    at javax.mail.Service.connect(Service.java:134)
    at javax.mail.Service.connect(Service.java:86)
    at javax.mail.Transport.send0(Transport.java:162)
    at javax.mail.Transport.send(Transport.java:80)
    at com.bearingpoint.utilities.EMail.send(EMail.java:171)
    at com.bearingpoint.utilities.EMail.send(EMail.java:31)
    at email.main(email.java:11)
    I have spent many hours, fiddling with classpaths, ensuring that the mail.jar, mailapi.jar, smtp.jar, activation.jar are all from the same generation of JavaMail. With my classpath set correctly I can run a simple program constructed to just test whether the box can send out email from the command line.
    The code for the program is:
    public class email {
         public email() {
         public static void main (String args[]) {
              try {
              EMail.send("10.132.147.62", "[email protected]", "[email protected]", "test", "test");
              catch (Exception e) {
                   System.err.println(e.toString());
    Where EMail.send() is:
    public static void send(
    String mail_server_host,
    String email_from,
    String email_to,
    String subject,
    String message) throws AddressException, MessagingException, IOException {
    send(mail_server_host,
    (Authenticator)null,
    new InternetAddress[] {new InternetAddress(email_from)},
    new InternetAddress[] {new InternetAddress(email_to)},
    (InternetAddress[])null,
    (InternetAddress[])null,
    subject,
    message,
    null,
    null);
    which calls:
    public static void send(
    String mail_server_host,
    Authenticator authenticator,
    InternetAddress[] addresses_from,
    InternetAddress[] addresses_to,
    InternetAddress[] addresses_cc,
    InternetAddress[] addresses_bcc,
    String subject,
    String message,
    InputStream[] attachments,
    MimeType[] attachmentTypes) throws MessagingException,IOException {
    Properties properties = new Properties();
    properties.put("mail.smtp.host", mail_server_host);
    MimeMessage msg = new MimeMessage(
    Session.getInstance(properties, authenticator));
    msg.addFrom(addresses_from);
    msg.setRecipients(Message.RecipientType.TO, addresses_to);
    msg.setRecipients(Message.RecipientType.CC, addresses_cc);
    msg.setRecipients(Message.RecipientType.BCC, addresses_bcc);
    msg.setSubject(subject);
    BodyPart bpBody = new MimeBodyPart();
    bpBody.setText(message);
    Multipart mpMessageBody = new MimeMultipart();
    if (attachments == null && attachmentTypes == null) {
    mpMessageBody.addBodyPart(bpBody);
    msg.setContent(mpMessageBody);
    else if (attachments == null) {
    bpBody.setContent(message, attachmentTypes[0].toString());
    mpMessageBody.addBodyPart(bpBody);
    msg.setContent(mpMessageBody);
    else {
    mpMessageBody.addBodyPart(bpBody);
    for (int i=0; i<attachments.length;i++) {
    bpBody = new MimeBodyPart();
    DataSource dsAttachment = new ByteArrayDataSource(attachments, attachmentTypes[i].toString());
    bpBody.setDataHandler(new DataHandler(dsAttachment));
    bpBody.setFileName("attachment." + new MimeFileExtensions(attachmentTypes[i].getValue()).toString());
    mpMessageBody.addBodyPart(bpBody);
    msg.setContent(mpMessageBody);
    Transport.send(msg);
    As said before all .jar files are of the same generation, yet when I run FileNet and the underlying content engine, and try to send an email, I recieve this exception. I have run out of ideas, and any help would be appreciated.
    Things I've tried (multiple times):
    - Removing any old versions of the jar files and replace them with JavaMail 1.3.3_01
    - Have the content engine specifically import the JavaMail jar files.
    While I realize some of you may not know what FileNet is, perhaps you have come across this exception before. Any new ideas would be more then appreciated.
    Thank you for your time.

    I haven't seen this error before so I need more detail to reproduce it.
    It looks like you daisy chained calls to various static send() methods from various classes. Could you write a static main() for the class with the send() method actually doing the work? In the main() write the test case and compile it, test it and if it still doesnt work post it. Please include the import statements as it is germain to the solution.
    Its much easier for me to help you if I don't have to recreate "FileNet" to reproduce your error.
    As an alternative....
    The following code I got from: http://javaalmanac.com/egs/javax.mail/SendApp.html?l=new
    its simpler than you're code but gets the job done (without attachments).
    I've tested it and it works with:
    javac -classpath .;c:\sun\appserver\lib\j2ee.jar;c:\sun\appserver\lib\mail.jar SendApp.java
    java -classpath .;c:\sun\appserver\lib\j2ee.jar;c:\sun\appserver\lib\mail.jar SendApp
    Ran on Windows XP, Sun J2EE 1.4/Appserver Bundle
        import java.io.*;
        import javax.mail.*;
        import javax.mail.internet.*;
        import javax.activation.*;
        public class SendApp {
            public static void send(String smtpHost, int smtpPort,
                                    String from, String to,
                                    String subject, String content)
                    throws AddressException, MessagingException {
                // Create a mail session
                java.util.Properties props = new java.util.Properties();
                props.put("mail.smtp.host", smtpHost);
                props.put("mail.smtp.port", ""+smtpPort);
                Session session = Session.getDefaultInstance(props, null);
                // Construct the message
                Message msg = new MimeMessage(session);
                msg.setFrom(new InternetAddress(from));
                msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
                msg.setSubject(subject);
                msg.setText(content);
                // Send the message
                Transport.send(msg);
            public static void main(String[] args) throws Exception {
                // Send a test message
                send("10.1.4.105", 25, "[email protected]", "[email protected]",
                     "test", "test message.");
        }

  • Java.lang.NoSuchMethodError: java.lang.Float: method parseFloat(Ljava/lang/

    java.lang.NoSuchMethodError: java.lang.Float: method parseFloat(Ljava/lang/String;)F not found
    WHAT WOULD MAKE THIS HAPPEN. THIS SEEMS TO WORK IN JDK1.3.1 BUT NOT IN BLACKDOWN 1.1.3_V3
    THIS IS MY CODE:
    try{
    DecimalFormat dfp = new DecimalFormat( "0.00" );
    if(!Price.equals("")) {
    float MyFloat = Float.parseFloat(Price);
    Price = dfp.format(MyFloat);
    }catch(NumberFormatException nfe){
    PriceValid = 1;

    This error says:
    - There is no method called "parseFloat" that receives a String as parameter in class java.lang.Float.
    Look the method "parseFloat" at the class java.lang.Float!!

  • Java.lang.NoSuchMethodError:java/io/File:

    hi all,
    i have just a dbf file and no database server, can i still use the JDBC driver to make a connnection?
    If yes, i put my dbf file in the Tomcat root directory and write con=DriverManager.getConnection("jdbc:DBF://localhost:8080/","","");
    but it always returns an error
    java.lang.NoSuchMethodError:java/io/File: method getCanonicalFile()Ljava/io/File ; not found
    Anyone know what's wrong?
    Below is the driver readme for the URL format:
    URL format:
    Direct Access:
    jdbc:DBF:[/]/[DatabasePath]
    For example: "jdbc:DBF:/." "jdbc:DBF:/../dbffiles"
    Access by DBF Server: Skip it if you don't use RMI or JINI.
    jdbc:DBF:[/][host][:port]/[DatabasePath]
    Default host:localhost port:2129 DatabasePath:
    For example: "jdbc:DBF://domain.com:3099/../dbffiles" if one DBFServer is run on the 3099 port of domain.com
    */

    We got a similar error the other day trying to grab the Meta-Data.
    Once I took those lines out everything else worked fine. Ie our connection and loading code was fine.
    It seems that not all methods are supported on all implementations of the jdbc/odbc drivers.
    Our current issue has to do with having a lot of different databases, and not wanting to set up ODBC links to all of them (or wanting to find an easy way to do that).

  • Java.lang.NoSuchMethodError at at weblogic.apache.xpath.DOM2Helper.getNamespaceOfNode(DOM2Helper.java:356)

    I am getting this xml parser error after migrating to weblogic7.0 from wl 6.1
    I am using the sax parser. I am using the jaxp.jar and xalan.jar for compilation
    as well as running the application. However I am also using the weblogic.jar for
    compilation and runtime in the classpath. I am wandering if there are any changes
    to the version of SAX parser which weblogic 7.0 is using. Does anybody has any
    idea..
    Thanks,
    This is the error which I am getting on the server.
    java.lang.NoSuchMethodError
    at weblogic.apache.xpath.DOM2Helper.getNamespaceOfNode(DOM2Helper.java:356)
    at weblogic.apache.xml.utils.TreeWalker.startNode(TreeWalker.java:366)
    at weblogic.apache.xml.utils.TreeWalker.traverse(TreeWalker.java:190)
    at weblogic.apache.xalan.processor.TransformerFactoryImpl.processFromNode(TransformerFactory
    Impl.java:232)
    at weblogic.apache.xalan.processor.TransformerFactoryImpl.processFromNode(TransformerFactory
    Impl.java:331)
    at weblogic.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImp
    l.java:875)
    at weblogic.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryI
    mpl.java:757)
    at weblogic.xml.jaxp.WebLogicTransformerFactory.newTransformer(WebLogicTransformerFactory.ja
    va:195)
    at weblogic.xml.jaxp.RegistryTransformerFactory.newTransformer(RegistryTransformerFactory.ja

    The version of the xalan in weblogic7.0 is 2.2 transformer.
    You can refer to the following upgrade guide.
    Ajay
    "sameer" <[email protected]> wrote in message
    news:3e78d50e$[email protected]..
    >
    I am getting this xml parser error after migrating to weblogic7.0 from wl6.1
    I am using the sax parser. I am using the jaxp.jar and xalan.jar forcompilation
    as well as running the application. However I am also using theweblogic.jar for
    compilation and runtime in the classpath. I am wandering if there are anychanges
    to the version of SAX parser which weblogic 7.0 is using. Does anybody hasany
    idea..
    Thanks,
    This is the error which I am getting on the server.
    java.lang.NoSuchMethodError
    atweblogic.apache.xpath.DOM2Helper.getNamespaceOfNode(DOM2Helper.java:356)
    atweblogic.apache.xml.utils.TreeWalker.startNode(TreeWalker.java:366)
    atweblogic.apache.xml.utils.TreeWalker.traverse(TreeWalker.java:190)
    atweblogic.apache.xalan.processor.TransformerFactoryImpl.processFromNode(Trans
    formerFactory
    Impl.java:232)
    atweblogic.apache.xalan.processor.TransformerFactoryImpl.processFromNode(Trans
    formerFactory
    Impl.java:331)
    atweblogic.apache.xalan.processor.TransformerFactoryImpl.newTemplates(Transfor
    merFactoryImp
    l.java:875)
    atweblogic.apache.xalan.processor.TransformerFactoryImpl.newTransformer(Transf
    ormerFactoryI
    mpl.java:757)
    atweblogic.xml.jaxp.WebLogicTransformerFactory.newTransformer(WebLogicTransfor
    merFactory.ja
    va:195)
    atweblogic.xml.jaxp.RegistryTransformerFactory.newTransformer(RegistryTransfor
    merFactory.ja

Maybe you are looking for