Cannot find standart java files in DCs. I'm confused. Please help.

Hello SDN!
I need to create extension which allow users attaching files to orders in order.jsp I found standart uploadform.jsp and UploadAction.java. I've create in DC crm/home/shr/ext my own action class based on UploadAction. There're some classes in my class which NWDS cannot resolve. For example, class LocaleUtil. I added import statement by hand but NWDS cannot resolve it anyway. I tried to find LocaleUtil.java via DTR but found nothing. So I don't know in which DC java file is. Now I found only LocaleUtil.class in sap.comcrmisalwcassembly.jar but I don't know how to use this jar. Also this jar contains other unresoldev classes.
Please help me to resolve these classes.
Regards, Lev
Help will be appreciated.

Hello Sateesh!
This jar file doen't available in Libraries tab. I found them in DCs\sap.com\crm\isa\lwc\_comp\gen\default\public\assembly\lib\java (note that I haven't project sap.com/crm/isa/lwc) and try to add them in Libraries tab via button "Add external JAR". After that I try to build my DCs and get an error:
     [javac] ERROR: D:\Lev\work\workspace_dc\.dtc\2\DCs\sap.com\crm\home\shr\ext\_comp\src\packages\ru\sng\isa\isacore\action\Z_UploadFileAction.java:23: package com.sap.isa.cic.core.util does not exist
     [javac] ERROR: import com.sap.isa.cic.core.util.LocaleUtil;
     [javac] ERROR:                                  ^
     [javac] ERROR: D:\Lev\work\workspace_dc\.dtc\2\DCs\sap.com\crm\home\shr\ext\_comp\src\packages\ru\sng\isa\isacore\action\Z_UploadFileAction.java:24: package com.sap.isa.cic.customer.actionforms does not exist
     [javac] ERROR: import com.sap.isa.cic.customer.actionforms.UploadForm;
     [javac] ERROR:                                             ^
     [javac] ERROR: D:\Lev\work\workspace_dc\.dtc\2\DCs\sap.com\crm\home\shr\ext\_comp\src\packages\ru\sng\isa\isacore\action\Z_UploadFileAction.java:47: cannot resolve symbol
     [javac] ERROR: symbol  : variable LocaleUtil
     [javac] ERROR: location: class ru.sng.isa.isacore.action.Z_UploadFileAction
     [javac] ERROR:           String actualCharset = LocaleUtil.getEncoding(LocaleUtil.getSAPLang(request));
     [javac] ERROR:                                                               ^
     [javac] ERROR: D:\Lev\work\workspace_dc\.dtc\2\DCs\sap.com\crm\home\shr\ext\_comp\src\packages\ru\sng\isa\isacore\action\Z_UploadFileAction.java:47: cannot resolve symbol
     [javac] ERROR: symbol  : variable LocaleUtil
     [javac] ERROR: location: class ru.sng.isa.isacore.action.Z_UploadFileAction
     [javac] ERROR:           String actualCharset = LocaleUtil.getEncoding(LocaleUtil.getSAPLang(request));
     [javac] ERROR:                                        ^
     [javac] ERROR: D:\Lev\work\workspace_dc\.dtc\2\DCs\sap.com\crm\home\shr\ext\_comp\src\packages\ru\sng\isa\isacore\action\Z_UploadFileAction.java:52: cannot resolve symbol
     [javac] ERROR: symbol  : class UploadForm
     [javac] ERROR: location: class ru.sng.isa.isacore.action.Z_UploadFileAction
     [javac] ERROR:                FormFile file = ((UploadForm)form).getChosenFile();
     [javac] ERROR:                                           ^
     [javac] ERROR: D:\Lev\work\workspace_dc\.dtc\2\DCs\sap.com\crm\home\shr\ext\_comp\src\packages\ru\sng\isa\isacore\action\Z_UploadFileAction.java:54: cannot resolve symbol
     [javac] ERROR: symbol  : variable LocaleUtil
     [javac] ERROR: location: class ru.sng.isa.isacore.action.Z_UploadFileAction
     [javac] ERROR:                fileName = LocaleUtil.encodeString(fileName, inputCharset, actualCharset);
     [javac] ERROR:                                    ^
     [javac] ERROR: D:\Lev\work\workspace_dc\.dtc\2\DCs\sap.com\crm\home\shr\ext\_comp\src\packages\ru\sng\isa\isacore\action\Z_UploadFileAction.java:56: cannot resolve symbol
     [javac] ERROR: symbol  : variable LocaleUtil
     [javac] ERROR: location: class ru.sng.isa.isacore.action.Z_UploadFileAction
     [javac] ERROR:                contentType = LocaleUtil.encodeString(contentType, inputCharset, actualCharset);
     [javac] ERROR:                                       ^
     [javac] 7 errors
After that this jar file disappear from Libraries tab. What I should to do?
Regards, Lev

Similar Messages

  • How to merge two java files with InputDialog to select?Please help me!?

    //Addition Java application
    import javax.swing.JOptionPane; // import the class
    public class Addition {
    // main method
    public static void main(String[] args)
    String firstNumber, secondNumber;
    int number1, number2, sum;
    // read the first number
    firstNumber = JOptionPane.showInputDialog("Please enter a integer: ");
    // read the second number
    secondNumber = JOptionPane.showInputDialog("Please enter another integer: ");
    // data type conversion
    number1 = Integer.parseInt(firstNumber);
    number2 = Integer.parseInt(secondNumber);
    sum = number1 + number2;
    // display the result
    JOptionPane.showMessageDialog(null, "The sum is " + sum + ".", "Results", JOptionPane.PLAIN_MESSAGE);
    System.exit(0);
    //Multiplication Java Application
    import javax.swing.JOptionPane;
    public class Multiplication5
    public static void main(String args[])
    int number1, number2, number3, number4, number5, product;
    String firstNumber, secondNumber, thirdNumber, forthNumber, fifthNumber ;
    firstNumber =
    JOptionPane.showInputDialog("Please input an integer");
    secondNumber =
    JOptionPane.showInputDialog("Please input another integer");
    thirdNumber =
    JOptionPane.showInputDialog("Please input the third integer");
    forthNumber =
    JOptionPane.showInputDialog("Please input the forth integer");
    fifthNumber =
    JOptionPane.showInputDialog("Please input the fifth integer");
    number1 = Integer.parseInt(firstNumber);
    number2 = Integer.parseInt(secondNumber);
    number3 = Integer.parseInt(thirdNumber);
    number4 = Integer.parseInt(forthNumber);
    number5 = Integer.parseInt(fifthNumber);
    product = number1 * number2 * number3 * number4 * number5;
    JOptionPane.showMessageDialog(null, "The product is " + product, "Results", JOptionPane.PLAIN_MESSAGE);
    System.exit(0);
    I seek for help to merge above two java application files.
    I need to call JoptionPane.showInputDialog to prompt the user to input the operation, 1 for addition, 2 for multiplication. In this dialog, the user is expected to enter the integer of 1 or 2 for the calculation.
    Please help me ! Thank you!

    Hi CRay,
    You just need to call the main methods of the 2 classes according to "1" or "2" entered.
    It is better if the "multiplication" and "addition" are declared as methods rather than in main methods.
    Example:-
    public static void Addition()
    Then call
    Addition.addition();
    than
    Addition.main(new String[]{});
    as shown below.
    import javax.swing.JOptionPane; // import the class
    public class Test{
        public static void main(String[] args){
            // read which  operation to perform
            String operation = JOptionPane.showInputDialog("Please enter which operation : ");
            if(operation.equals("1")){
                Addition.main(new String[]{});
            else{
                Multiplication5.main(new String[]{});
    }Rose

  • After installing Firefox 3.6 I click on the icon to open it and get the error message "Windows cannot find 'C\Program Files\Mozilla Firefox\firefox.exe' " can anyone help?

    This has happened after uninstalling Firefox, twice and downloading it twice.

    Did you check if the Firefox file is in that location?
    If it isn't there then do a clean (re)install:
    * Download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data if you uninstall the current version.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere (not in the Firefox program folder) and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    If the file is there then do a malware check with some malware scan programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • This is a common question, and i apologize, but I have yet to see an answer.  I'm in the UK.  I have bought an Airport Extreme.  I need to buy a moden (not a combined router/modem, presumably.)  I cannot find one in stores or on the web.  Please help.

    I need a modem to go with my new Airport Extreme.  I assume I cannot connect with my existing Router/Modem.  I can't find a product either in stores or on the net.  I know this is a common question, but I have yet to find a suitable answer.  Any advice for a fairly low tech guy?
    David

    I'm glad you're able to use your current router. Sorry I can't help with your new issue, but I just wanted to add for the benefit of anyone else reading this thread - the X-Modem M3 still seems to be available from the manufacturers, this is the site I originally got it from and it's still for sale there:
    http://www.adslnation.com/phpapps/catalog/index.php?cPath=29
    Thought I'd mention, as when I got my Airport I spent ages looking for a really small neat modem to use with it and this was the best I could find so other people might be interested too.

  • Have cd to download, have redemption number (on back of cd).  Cannot find the serial number to complete my apllication. Please help soonest

    I have all that I need, the program, box it came in, and it shows the redemtion number. When I try to put it in, it says invalid. I don't have a serial number, or if I do I can't find it. Need Help.

    You use the redemption code to get your serial number:
    Redemption Code Help

  • I cannot get Firefox to come up. It says it is running but cannot find it. I have uninstalled and reinstalled. Please help.

    When I try to bring Firefox up it does not show that it is. If I shut my computer down it will come up the first time and as long as I leave it open it is okay. When I log out it does not come back up the next time. I am not having trouble with Chrome or Explorer.

    The Firefox Home app for iOS is not the Firefox browser but rather for to synce with your desktop Firefox to have your Firefox desktop history, bookmarks and open tabs on your iPhone/iPad.
    http://www.mozilla.org/en-US/mobile/home/
    http://www.mozilla.org/en-US/mobile/home/faq/
    https://wiki.mozilla.org/Mobile/Platforms#Other_Platforms
    iPhone/iPad/iPod
    We have no plans to release the full Firefox browser for iOS. The iOS SDK agreement requires apps to use Apple's own JavaScript engine (or none at all, like Opera Mini which downloads pre-rendered pages from Opera's servers and cannot run JavaScript code in the client). Because of this, we have no supported way to distribute Firefox's rendering and JavaScript engine to iPhone users.

  • Jdev 10.1.2  JBO-33001: Cannot find the configuration file bc4j.xcfg in cla

    Hi all,
    i have a ear application containing a web app and a bc4j module deployed on the embedded oc4j instance inside JDeveloper 10.1.2 (build 1929). Inside the model i have a topic durable subscriber that, when a message is sent, invoke, by reflection, a java class to perform the job. Inside the java class i need an Application Module so i write
    ApplicationModule am = Configuration.createRootApplicationModule(fullClassName, configuration);
    but i get the error in the subject.
    Here is a piece of the stack trace
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /it/despa
    r/orderplatform/model/services/common/bc4j.xcfg in the classpath
    at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:
    358)
    at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:281)
    at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:482)
    at oracle.jbo.common.ampool.ContextPoolManager.findPool(ContextPoolManag
    er.java:165)
    at oracle.jbo.client.Configuration.createRootApplicationModule(Configura
    tion.java:1457)
    at oracle.jbo.client.Configuration.createRootApplicationModule(Configura
    tion.java:1435)
    at it.despar.orderplatform.task.GenericTask.getApplicationModule(Generic
    Task.java:40)
    at it.despar.orderplatform.task.trasmission.ValidateTrasmissionTask.<ini
    t>(ValidateTrasmissionTask.java:38)
    at it.despar.orderplatform.jms.utils.TaskInvoker.invoke(TaskInvoker.java
    :27)
    at it.despar.orderplatform.jms.listener.TextListener.onMessage(TextListe
    ner.java:60)
    at com.seebeyond.jms.client.STCMessageConsumer.onMessage(STCMessageConsu
    mer.java:529)
    at com.seebeyond.jms.client.STCSession.onMessage(STCSession.java:259)
    at com.seebeyond.jms.sockets.ConsumerSocket.deliverMessage(ConsumerSocke
    t.java:346)
    at com.seebeyond.jms.sockets.ThreadPerConnectionMgr$ConnThread.run(Threa
    dPerConnectionMgr.java:230)
    If i invoke the java class (the task) by command line inside jdev all works fine.
    I've read all the stuff about this exception but they do not apply to mi problem (I run the adf runtime installer, i try with an oc4j extended and standalone....)
    Please help us. Thanks
    Any ideas?
    Suggestion?

    This program is an example of basically what ADFBC will be trying to do to open/parse the bc4j.xcfg file. Can you incorporate the same lines into your test program to see if it also behaves the same in your JMS-initiated Java class ?
    Of course, you'll need to substitute "sample/common/bc4j.xcfg" with your relevant path name.
    package sample;
    import java.io.IOException;
    import oracle.xml.parser.v2.DOMParser;
    import oracle.xml.parser.v2.XMLDocument;
    import oracle.xml.parser.v2.XMLParseException;
    import org.xml.sax.SAXException;
    public class Class1 {
      public static void main(String[] args) throws XMLParseException,
                                                      SAXException, IOException {
        DOMParser d = new DOMParser();
       d.parse(Thread.currentThread().getContextClassLoader().getResource("sample/common/bc4j.xcfg"));
        XMLDocument doc = d.getDocument();
        doc.print(System.out);
    }

  • Cannot find the configuration file in classpath

    Cannot find the configuration file /oracle/apps/prc/po/....applicationModule/common/bc4j.xcfg in the classpath.
    Hi!
    I'm trying to run the following code:
    String appModule = "oracle.apps.prc.po.manageDocument.uiModel.viewDocument.applicationModule.ViewPurchasingDocumentApplicationModule";
    String cfg = "ViewPurchasingDocumentApplicationModuleLocal";
    ApplicationModule applicationModule = (ApplicationModule)Configuration.createRootApplicationModule(appModule, cfg);
    I get this error message:
    Exception in thread "main" oracle.jbo.ConfigException: JBO-33001: Cannot find the configuration file /oracle/apps/prc/po/manageDocument/uiModel/viewDocument/applicationModule/common/bc4j.xcfg in the classpath
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:430)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:293)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:557)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1334)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1312)
         at oracle.apps.prc.po.manageDocument.model.viewPdf.generateXml.getXMLData(generateXml.java:26)
         at oracle.apps.prc.po.manageDocument.model.viewPdf.generateXml.main(generateXml.java:39)
    I have checked and the config file does exist in the correct directory, and I can see it in my Application Module - Configurations. Any idea why this is happening? Am I supposed to configure something specifically for this or add it in my classpath? If so, how am I supposed to do it?
    Thanks
    Mansi
    Edited by: Mansi G on Oct 6, 2008 11:56 AM

    Where is the code you posted? Running in a separate project, I assume? Does that project have a dependency on the project containing the app module specified?
    And just to check (although by default, JDev should do this for you)--the app module project has been compiled since adding the configuration, right? You need to check to make sure the config exists not only under Project/src, but under Project/classes.
    Edited by: Avrom Roy-Faderman on Oct 6, 2008 2:02 PM
    Oh, and BTW--I assume this is not a typical ADF application, right? In a standard ADF application, you would very rarely need to instantiate an application module in code like this; you could just let the data binding facility do it for you. The technique like the one you're using is most appropriate for purely programmatic, no-UI cases. (e.g., once I tried to implement an SMTP server backed by business components. That was an appropriate case for ditching databindings and doing the sort of thing you're doing, because it had no view layer (because it had no UI to render).

  • Cannot find some .TOC file in TDSHL homogeneous DB copy

    We are at the import stage of a homogeneous DB copy for an ABAP only BW
    system.
    This homogeneous copy is a part of a TDMS shell creation.
    In import_monitor.log we see errors as follows:
    ERROR: 2010-12-29 21:55:19 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDDIM' import package is interrupted with exception.
    java.io.FileNotFoundException: DATA/SAPDDIM.TOC
    at com.sap.inst.migmon.LoadTask.writePathEntry
    (LoadTask.java:1029)
    at com.sap.inst.migmon.LoadTask.createCommandFile
    (LoadTask.java:736)
    at com.sap.inst.migmon.LoadTask.processPackage
    (LoadTask.java:318)
    at com.sap.inst.migmon.LoadTask.run(LoadTask.java:195)
    at java.lang.Thread.run(Thread.java:534)
    at com.sap.inst.lib.util.ThreadDispatcher$ThreadWrapper.run
    (ThreadDispatcher.java:113)
    ERROR: 2010-12-29 21:55:19 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDFACT' import package is interrupted with exception.
    java.io.FileNotFoundException: DATA/SAPDFACT.TOC
    at com.sap.inst.migmon.LoadTask.writePathEntry
    (LoadTask.java:1029)
    at com.sap.inst.migmon.LoadTask.createCommandFile
    (LoadTask.java:736)
    at com.sap.inst.migmon.LoadTask.processPackage
    (LoadTask.java:318)
    at com.sap.inst.migmon.LoadTask.run(LoadTask.java:195)
    at java.lang.Thread.run(Thread.java:534)
    at com.sap.inst.lib.util.ThreadDispatcher$ThreadWrapper.run
    (ThreadDispatcher.java:113)
    In the exported dump directory, we truly cannot find above TOC files.
    We did not have any ERROR during the export phase.
    According to my experience, this might be caused by the fact that this ABAP BW system has a JAVA add-on
    on a different server with a dfferent SID than the ABAP SID -- but the JAVA DB is in the same database as the ABAP but with a different schema. Therefore when we do export source system->central system->ABAP based, those TOC files could not be created. However I do not have the document created in my previous project, I cannot verify my impression.
    Are SAPDDIM and SAPDFACT standard SAP objects?
    Please help  input your opinions.
    Thanks!

    Pankaj and Anoop:
    1) I have removed all lines starting with 'D ' in the problem *.TSK files and run again.
    However, it's still looking for the non-existing *.TOC file. Here is the log:
    /usr/sap/QAS/SYS/exe/run/R3load: START OF LOG: 20101231190309
    /usr/sap/QAS/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/701_REL/src/R3ld/R3load/
    R3ldmain.c#5 $ SAP
    /usr/sap/QAS/SYS/exe/run/R3load: version R7.01/V1.4
    Compiled Feb 24 2009 21:41:52
    /usr/sap/QAS/SYS/exe/run/R3load -i SAPZPVAL.cmd -dbcodepage 1100 -l SAPZPVAL.log
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (TFH) ERROR: Unable to open /shellexport/ABAP/DATA/SAPZPVAL.TOC
    (TFH) ERROR: OS error message: No such file or directory
    /usr/sap/QAS/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/QAS/SYS/exe/run/R3load: END OF LOG: 20101231190309
    2) Therefore I create a dummy file as follows:
    touch /shellexport/ABAP/DATA/SAPZPVAL.TOC
    However, it fails again with logs as follows:
    /usr/sap/QAS/SYS/exe/run/R3load: START OF LOG: 20101231190359
    /usr/sap/QAS/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/701_REL/src/R3ld/R3load/
    R3ldmain.c#5 $ SAP
    /usr/sap/QAS/SYS/exe/run/R3load: version R7.01/V1.4
    Compiled Feb 24 2009 21:41:52
    /usr/sap/QAS/SYS/exe/run/R3load -i SAPZPVAL.cmd -dbcodepage 1100 -l SAPZPVAL.log
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (RD) ERROR: unexpected end of file "/shellexport/ABAP/DATA/SAPZPVAL.TOC"
    /usr/sap/QAS/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/QAS/SYS/exe/run/R3load: END OF LOG: 20101231190359
    3) here is the TSK file
    more SAPZPVAL.TSK (new, without lines starting with D)
    T /BIC/AZPD_IVAL00 C xeq
    P /BIC/AZPD_IVAL00~0 C xeq
    T /BIC/AZPD_IVAL40 C xeq
    P /BIC/AZPD_IVAL40~0 C xeq
    more backup_TSK/SAPZPVAL.TSK (old,  w/ the lines starting with D)
    T /BIC/AZPD_IVAL00 C xeq
    D /BIC/AZPD_IVAL00 I xeq
    P /BIC/AZPD_IVAL00~0 C xeq
    T /BIC/AZPD_IVAL40 C xeq
    D /BIC/AZPD_IVAL40 I xeq
    P /BIC/AZPD_IVAL40~0 C xeq
    In the import_monitor.log, we see:
    TRACE: 2011-01-02 18:21:29 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPZPVAL' import package is started.
    INFO: 2011-01-02 18:21:29 com.sap.inst.migmon.LoadTask processPackage
    Task file '/oracle/backup2/W7C/sapinst_instdir/SAPZPVAL.TSK' from package 'SAPZP
    VAL' contains no tasks with data type (D).
    4) We have multiple packages with the same ERROR. So far none of them is fixed by removing the D lines.
        Above are just examples.
    5) BTW, DbSl Trace: ORA-1403 when accessing table SAPUSER  is NOT a concern here because the logs
       of some successfully imported packages also have the same message.
    Could you please tell whether you had the same situation? ?
    Thanks!

  • Cannot find the configuration file .../dataModel/common/bc4j.xcfg?

    Hi!
    I'm using Jdeveper 10.1.3 EA, when i run my application i meet error:
    Exception in thread main
    oracle.jbo.ConfigException: JBO-33001: Cannot find the configuration file /com/fss/isp/admin/dataModel/common/bc4j.xcfg in the classpath
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:365)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:281)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:482)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:144)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:250)
         at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:73)
         at oracle.adf.model.BindingContext.get(BindingContext.java:454)
         at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)
         at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)
         at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)
         at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:129)
         at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:59)
         at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87)
         at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51)
         at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:225)
         at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:295)
         at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:424)
         at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54)
         at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:43)
         at oracle.adf.model.BindingContext.get(BindingContext.java:480)
         at oracle.jbo.uicli.jui.JUPanelBinding.setup(JUPanelBinding.java:93)
         at oracle.jbo.uicli.controls.JUTestFrame.createBindingCtxAndSetUpMenu(JUTestFrame.java:168)
         at oracle.jbo.uicli.controls.JUTestFrame.<init>(JUTestFrame.java:121)
         at oracle.jbo.uicli.controls.JUTestFrame.startTestFrame(JUTestFrame.java:84)
         at com.fss.isp.admin.view.PanelGroup.main(PanelGroup.java:113)
    Process exited with exit code 1.
    How to can i fix problem?
    thanks!

    Refer
    New to JDeveloper - cannot find the configuration file
    Re: JBO-33001: Cannot find the configuration file /model/common/bc4j.xcfg

  • BUG: JBO-33001: Cannot find the configuration file bc4j.xcfg

    Hi,
    I get the exception JBO-33001: Cannot find the configuration file com\trivadis\adf\demos\login\model\common\bc4j.xcfg in the classpath
    after I have edited the file outside of JDev9052. Why? Because I followed the instructions of the help document "Modifying the JClient Login Dialog for JDBC". To get the JCLoginDialog you have to remove some lines in the bc4j.xcfg file.
    I have deleted the classes directory, rebuild the complete workspace, but I still get the exception.
    Any comments?
    Thanks,
    Markus
    Complete stacktrace:
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file com\trivadis\adf\demos\login\model\common\bc4j.xcfg in the classpath
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:369)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:272)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:473)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:135)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:220)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:97)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:612)
         at com.trivadis.adf.demos.login.view.FormDeptView1.main(FormDeptView1.java:325)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-33000: Cannot find the configuration file registerConnectionsFromDocument
         at oracle.jbo.client.Configuration.registerConnectionsFromDocument(Configuration.java:1052)
         at oracle.jbo.client.Configuration.loadFromStream(Configuration.java:264)
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:352)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:272)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:473)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:135)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:220)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:97)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:612)
         at com.trivadis.adf.demos.login.view.FormDeptView1.main(FormDeptView1.java:325)
    ## Detail 0 ##
    java.lang.NullPointerException
         at oracle.jbo.client.Configuration.registerConnectionsFromDocument(Configuration.java:1026)
         at oracle.jbo.client.Configuration.loadFromStream(Configuration.java:264)
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:352)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:272)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:473)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:135)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:220)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:97)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:612)
         at com.trivadis.adf.demos.login.view.FormDeptView1.main(FormDeptView1.java:325)

    Repost.
    The original post date was Sep 05 2004, not Aug 17 2001. :-)

  • JBO-33001: Cannot find the configuration file /Procref/common/bc4j.xcfg

    Migrating project from Jdev 9.031 to Jdev 10.1.2.
    After the migration the app works fine on Jdev 10.1.2, but when deployed to local stand alone OC4J it throws the JBO 33001 error.
    I added dependency of view to the model.
    Checked the existense of bc4j.xcfg in the classes.
    I also ran the ADF Runtime installer as per the recommendations.
    Any suggestions.....
    The complete statck trace of the error is
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /Procref/common/bc4j.xcfg in the classpath
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:358)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:281)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:482)
         at oracle.jbo.common.ampool.ContextPoolManager.findPool(ContextPoolManager.java:165)
         at oracle.jbo.http.HttpContainer.findSessionCookie(HttpContainer.java:817)
         at oracle.jbo.html.jsp.datatags.ApplicationModuleTag.doStartTag(ApplicationModuleTag.java:169)
         at index.jspService(_index.java:73)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:220)
         at gov.mi.mdch.procref.MainController.processRequest(MainController.java:53)
         at gov.mi.mdch.procref.MainController.doPost(MainController.java:39)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)

    This is the same problem I am having. The "Model" product contains the AppModule and it's entity and view objects.
    I right-clicked on the AppModule and chose "Business Components Deployment". This created in the Resources folder a Model.bcdeploy, which contained ModelMiddleTier1.deploy and ModelCommon1.deploy.
    When I went to the project properties of my "WS" project in the same workspace, in the Dependencies panel, Model.bcdeploy and its 2 .deploy files were now listed bewas now listed beneath model.jpr. There is a check mark beside model.jpr. I thought this would do it.
    I then recreated the "J2EE Web Service" from class file in the WS project, and deployed to the external OC4J.
    When I test the web service using OC4J's test facility, I still get the same JBO-33001 error complaining that the adfws/model/common/bc4j.xcfg file is not in the classpath.
    Does something else need done to get it to be found at run time?
    This is JDev 10.1.3.
    Thanks for any ideas.
    Morga

  • New to JDeveloper - cannot find the configuration file

    Hello,
    I'm new to JDeveloper and have been following a couple of the tutorials on OTN. I have just been through one called Business Components Programmatic Client Tutorial which attempts to teach you how to create a batch client for some customer orders. I've got a workspace with two projects. One holds the business components and the other holds a Java application. Basically, when I try to run it, I get the following errors :
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /OnlineOrder/common/bc4j.xcfg in the classpath
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:237)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:192)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:348)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:951)
         at bcbatch.Batch.main(Batch.java:21)
    Exception in thread "main"
    Process exited with exit code 1.
    I know that the createRootApplicationModule procedure is trying to instanciate an an application module of the type specified and the configuration file exists at :
    E:\JDeveloper\jdev\mywork\bcbatch\OnlineOrder\src\OnlineOrder\common\bc4j.xcfg
    My classpath is set to :
    E:\<Oracle_home>\jdev\mywork\bcbatch\OnlineOrder\src
    so its hard to see why it can't find \OnlineOrder\common\bc4j.xcfg from there.
    Any help would be greatly appreciated.
    Regards,
    Joe

    Make sure your bc4j application project is compiled. To verify see that the .xcfg file exists in the classpath of the "client-project" / outpath of the Bc4j project.

  • Cannot find the class file

    Hi All,
    Can any one help me regarding the issue?
    Error:
    package com.support.misc.feedback
    I am getting the following error for the above line. But I have created the Hierarchy in folder structure. But still it is throwing the error.
    1. Cannot find the class file for com.sapportals.htmlb.page.DynPage
    2. This compilation unit indirectly references the missing type com.sapportals.htmlb.page.DynPage (typically some required class file is referencing a type outside the class path)     FeedbackBean.java
    Thanks in Advance.
    Message was edited by: Gowsika Kannan

    Hi Gowsika,
    the class needed is located in htmlb.jar which can be found under <irj-root>/WEB-INF/portal/portalapps/com.sap.portal.htmlb/lib
    You need to integrate this jar in your .classpath
    Hope this helps,
    Robert
    PS: Please do not post the same question 3 times

  • Cannot find the class file for com.sap.portal.services.api.connectorgateway

    Hi,
    I was trying the "How to BI JAVA SDK in a Portal iView and get the following error.
    The project was not built since its classpath is incomplete. Cannot find the class file for com.sap.portal.services.api.connectorgateway.IConnectorGatewayService. Fix the classpath and try rebuilding this project.
    I have the following in my portalapp.xml file
    <property name="SharingReference" value="com.sap.portal.ivs.connectorservice"/>
    and i have also added the jar file "com.sap.portal.ivs.connectorservice_api" in the set of lib's
    Has some faced a similar issue? or can someone suggest how I could possibly resolve this.
    Thanks,
    Smitha

    Hi Smitha:
       My webdynpro dc was build failed for "This compilation unit indirectly references the missing type com.sap.engine.services.webservices.espbase.client.dynamic.content.GenericObject (typically some required class file is referencing a type outside the classpath)".
    How should i do?  Thank you!

Maybe you are looking for

  • How to retrieve the data stored in BLOB field in MySql using java?

    Hi all! i stored a file content into the MySql database in BLOB field. and i now want retrieve the data...... Please help me out in doing the task........... Thanx...........

  • XMII query against a SAP NetWeaver database

    Hi all, I have set up a data server for a SAP NetWeaver MSSQL database (DX1 on SAPSRV03) for SAP Web AS 6.40. The status of this data source shows OK. I try to create a new query template. In the SQL Query details, I can see the list of the tables an

  • Quality of video clip noticably reduced when Burning Dvd

    Hello everyone, When I Burn a Dvd or veiw my video in the dvd simulator the quality gets significantly reduced. The video looks great before I bring it into Dvd studio pro but then gets somewhat distorted and the video almost seems to ripple in some

  • No video and music synch

    I have a 30GB video. i am not able to copy any videos to my ipod. The video is the right format which can be played on other pods. Also i am not able to play songs from my ipod from itunes. its only when i disconnect the ipod, i can listen to the son

  • Flash 10 movie cannot Firefox 3

    Hello All, my web site http://www.aykandogac.com/ada/index.html to top menu is flash but cannot play Firefox 3. ie and chrome is ok. but firefox 3 is not runnig. please look my flash code. thank you all..