Announcement

Collapse
No announcement yet.

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

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

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

    Hallo Zusammen.

    Ich habe folgendes Problem:

    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /common/bc4j.xcfg in the classpath

    Wie es zu dem Fehler kommt.

    Ich habe einen Workspace. Darin habe ich 2 Projekte.

    In Projekt 1 sind nur BC4J Objekte wie Entity Objekte und View Objekte. In diesem Projekt ist auch das Applikations Modul sowie die vermeindlich benötigte Config Datei bc4j.xcfg .

    In Projekt 2 habe ich eine Strutsanwendung mit JSPs, Beans und Actions realisiert.

    Nun Versuche ich in einer JSP von Projekt 2 folgendes:

    Code:
    <!-- Instanziieren von Applikations Modul und Datenquelle -->
            <jbo:ApplicationModule id="am" configname="*.*.*.bc4j.ReportingModule" releasemode="Stateful" />
            <jbo: DataSource id="ds" appid="am" viewobject="*.*.*.bc4j.HilfeTexteView" />
            
            <!-- Erzeugen von RowsetIterate und Durchlauf mit ShowValue -->
            <select name="TEXT" size="1">
              <option value="-1" selected>sonstiges</option>
                <jbo:RowsetIterate datasource="ds" changecurrentrow="true">
                  <option value="<jbo:ShowValue datasource="ds" dataitem="TEXT"></jbo:ShowValue>">
                  <jbo:ShowValue datasource="ds" dataitem="AUTOR"></jbo:ShowValue>
                  </option>
                </jbo:RowsetIterate>
            </select>
            
            <!-- Schließt den Datenzugriff ab -->
            <jbo:ReleasePageResources releasemode="Stateful" appid="am" />

    Compilieren läuft fehlerfrei! Beim Starten der JSP kommt oben beschriebener Fehler.

    Ich vermute, dass er meckert, weil diese Config Datei in Projekt 1 ist und ich in Projekt 2 daran will.

    Was muss ich machen, damit das läuft?

    Vielen Dank und beste Grüße

    René
Working...
X