Pointbase Database with OC4J, JDeveloper

Has any one connected Pointbase Database with OC4J with the help of JDeveloper
If yes Please post the code data-source.xml, ejb-jar.xml orion-jar.xml
Thanking you in advance.
Regards
Prem Kumar

System.out.println(o.getClass());
returns
class com.evermind.naming.SubContext
I do not know what it means

Similar Messages

  • Servlets Not Working with PointBase Database

    Hello All,
    Background (This is more of a PointBase Question): I am developing a web application and am attempting to integrate a PointBase database with the app to capture my data.
    Issue: While attempting to start and populate my database, I receive an error which reads (Class Not Found: JBDC driver com.pointbase.jdbc.jdbcUniversalDriver could not be loaded)
    Question: Has anyone ever encountered this issue and resolved it?...or have any ideas about what could be the problem. Thanks for any assistance. RodneyM
    Detail: I have the pbclient.jar file in the tomcat\common\lib directory.
    My ant build.xml script is below....as well as my db schema.
    <!-- =================== Web.xml DATABASE TARGETS =============================== -->
    <target name="createUserData">
    <input message="Please enter username for table: "
    addproperty="table.username" />
    <copy file="db/data_template.sql" tofile="db/data.sql">
    <filterset>
    <filter token="username" value="${table.username}"/>
    </filterset>
    </copy>
    </target>
    <target name="createSchema">
    <sql
    driver="com.pointbase.jdbc.jdbcUniversalDriver"
    url="jdbc:pointbase://localhost/dvdlibrary,new"
    userid="PBPUBLIC"
    password="PBPUBLIC"
    classpath="${pointbase.home}/lib/pbclient.jar"
    onerror="continue"
    src="db/schema.sql"
    />
    </target>
    <target name="populateDatabase" depends="createSchema,createUserData">
    <sql
    driver="com.pointbase.jdbc.jdbcUniversalDriver"
    url="jdbc:pointbase://localhost/dvdlibrary"
    userid="PBPUBLIC"
    password="PBPUBLIC"
    classpath="${pointbase.home}/lib/pbclient.jar"
    onerror="continue"
    autocommit="true"
    print="true"
    src="db/data.sql"
    />
    </target>
    <!-- =================== END DATABASE TARGETS =============================== -->
    <!-- =================== SCHEMA =============================== -->
    -- This is the Database Schema for the DVD Library Application.
    -- Clear out the old table.
    DROP TABLE ObjectIDs;
    DROP TABLE Item;
    -- This table represents the "next" object_ID for a given table.
    CREATE TABLE ObjectIDs (
    -- PRIMARY KEY --
    table_name VARCHAR(30) PRIMARY KEY,
    -- DATA FIELDS --
    id INTEGER NOT NULL
    -- This table represents the DVD Items
    CREATE TABLE Item (
    -- PRIMARY KEY --
    id INTEGER PRIMARY KEY,
    -- DATA FIELDS --
    username VARCHAR(20) NOT NULL,
    title VARCHAR(100) NOT NULL,
    year CHAR(4) NOT NULL,
    genre VARCHAR(20) NOT NULL
    COMMIT;

    Yeah. Millions of Java programmers have had the problem where something isn't in their classpath, and gone on to resolve it. In fact it's a rare Java programmer who hasn't had that problem.
    Perhaps there's a conflict between this statement:"I have the pbclient.jar file in the tomcat\common\lib directory."And this configuration option:classpath="${pointbase.home}/lib/pbclient.jar"

  • JDeveloper 903 with OC4J 904 container

    I have JDeveloper 9.0.3 with OC4J container 9.0.4.
    Is this an oracle supported configuration?

    In it I have some problem.
    Not stable Run of the project in Jdev 9.0.3.2 (c embedded OC4J 9.0.4)
    Thanks
    Alexandre

  • Database Lite and JDeveloper / ADF

    Hello,
    I'm planning to create a small application which will run on mobile PC in an off-line mode, having synchronization with master DB once connected to the proper network.
    The main architecture on the target PC may be :
    - Oracle Lite
    - GlassFish
    - ADF application
    I downloaded JDeveloper 11.1.1.3.0 and the latest version of Oracle Lite (10.3.0.3).
    I'm looking the tutorials but none of them are talking about the JDeveloper 11g version, they all speak about BC4J/OC4J. Since I'm new to Oracle's product I don't know these "products" (framework ?) and in the 11g version this seems to have disappeared.
    Are those versions compatible with each other ?
    Will the tutorial work ?
    Regards
    PS: the same thread is present on the JDeveloper forum

    The main thread will be the one on JDeveloper section :)
    ==> Database Lite and JDeveloper / ADF

  • TopLink CMP for OC4j/JDeveloper/BC4J

    1) TopLink has CMP integration with WebSphere & Weblogic. When is tight integration with OC4J planned for?
    2) When is tight integration with JDeveloper planned for?
    3) Is TopLink a replacement for BC4J? If not, how do they integrate/supplement each other?
    Thanks!
    - nik

    1) TopLink has CMP integration with WebSphere & Weblogic. When is tight integration with OC4J planned for?
    Work is well underway to provide TopLink CMP within OC4J. The current plan is to have this available in the second quarter of 2003.
    2) When is tight integration with JDeveloper planned for?
    JDeveloper is currently being extended to support TopLink mappings. This release is targeted to coincide with the OC4J-TopLink-CMP release. TopLink's Mapping Workbench will continue to be available as a stand-alone application to support other development processes and tools.
    3) Is TopLink a replacement for BC4J? If not, how do they integrate/supplement each other?
    No, TopLink is not a replacement for BC4J.
    Oracle9iAS TopLink provides an advanced Java persistence architecture for rapid development, deployment and execution of enterprise Java applications with relational databases.
    Business Components For Java (BC4J)is an application development framework that simplifies delivering enterprise applications by generating functional business components that implement J2EE design patterns.
    It is our intention to leverage TopLink within BC4J in an upcoming release.
    So, in summary:
    [list]
    [*]Consider toplink when you need a persistence architecture for your existing application framework, and
    [*]Consider BC4J when you want a complete J2EE application framework to avoid having to write your own.
    [list]
    Doug Clarke
    Product Manager
    Oracle9iAS TopLink

  • Can I use two different database with DBSystemLoginModule?

    Finally I can login with Database user id by DBSystemLoginModule on Embedded oc4j server.
    But I confused between [b]jazn-data.xml and system-jazn-data.xml.
    Which xml do I have to edit for jdbcUrl and jdbcDriver?
    Now I would like to use two different database(such as only sid is different).
    In this case I want to show specific database name as realm name.
    What should I do?
    When I use DBSystemLoginModule, I edit JdbcUrl in system-jazn-data.xml.
    So can I pass the parameter for sid programmatically?
    And also I tried to run my application with other database with DBSystemLoginModule on Embedded oc4j server.
    I changed few things(jdbcUrl at system-jazn-data.xml,jazn-data.xml in embedded-oc4j-server/config and database connection for BusinessComponents at Project Properties of Model/ViewController.
    But I got some error.
    Did I miss something?
    ----< my error messgae >------
    500 Internal Server Error
    JBO-30003: The application pool (customer.model.datamodel.CMAppModuleLocal) failed to checkout an application module due to the following exception:oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NullPointerException, msg=null     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)     Message was edited by:
    Message was edited by:
    sdcsdc

    I think I understand now, you are modifing the custom login modules configuration within the system-jazn-data.xml file. This is a bit dangerous! Didn't you register the login module in your orion-application.xml? For example, this is the way I do it:
    <web-module id="customProv-web" path="customProv-web.war" />
    <persistence path="persistence" />
    <!--data-sources path="./data-sources.xml"/-->
    <security-role-mapping name="sr_developer">
    <group name="developers" />
    </security-role-mapping>
    <security-role-mapping name="sr_manager">
    <group name="managers" />
    </security-role-mapping>
    <jazn provider="XML">
    <property name="custom.loginmodule.provider" value="true"/>
    <property name="role.mapping.dynamic" value="true"/>
    <property name="role.compare.ignorecase" value="true"/>
    </jazn>
    <!-- Configuring a Login Module in an Application EAR file. -->
    <jazn-loginconfig>
    <application>
    <name>customProv</name>
    <login-modules>
    <login-module>
    <class>oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule</class>
    <control-flag>required</control-flag>
    <options>
    <option>
    <name>data_source_name</name>
    <value>jdbc/OracleDS2</value>
    </option>
    <option>
    <name>roles_fk_column</name>
    <value>userName</value>
    </option>
    <option>
    <name>table</name>
    <value>userinfo</value>
    </option>
    <option>
    <name>groupMembershipTableName</name>
    <value>groupinfo</value>
    </option>
    <option>
    <name>groupMembershipGroupFieldName</name>
    <value>role</value>
    </option>
    <option>
    <name>usernameField</name>
    <value>userName</value>
    </option>
    <option>
    <name>user_pk_column</name>
    <value>username</value>
    </option>
    <option>
    <name>passwordField</name>
    <value>passWord</value>
    </option>
    </options>
    </login-module>
    </login-modules>
    </application>
    </jazn-loginconfig>
    <log>
    <file path="application.log" />
    </log>
    <namespace-access>
    <read-access>
    <namespace-resource root="">
    <security-role-mapping name="<jndi-user-role>">
    <group name="administrators" />
    </security-role-mapping>
    </namespace-resource>
    </read-access>
    <write-access>
    <namespace-resource root="">
    <security-role-mapping name="<jndi-user-role>">
    <group name="administrators" />
    </security-role-mapping>
    </namespace-resource>
    </write-access>
    </namespace-access>
    </orion-application>

  • CONNECTING ORACLE 9I OR 10G DATABASE WITH ORACLE 10G FORMS AND REPORTS

    pls tell how to connect oracle 9i or 10g database with oracle developer suite 10g . though the forms are getting connected but not running with error as
    FRM-10142 the HTTP listner is not running on pls start the listner or check your runtime preferences.
    now pls tell how to start listner and how to chage runtime preferences.
    though i have worked with oracle 9i and forms 6i where we used to copy the tnsnames.ora from network/admin of oracle to forms 6i tnsnames.ora.
    thank you, you may be thinking such a long question.....

    sir
    By server i mean the computer where oc4j and backend database are running is one one of the client pc not a dedicated server..., these database and 10g dev suite are installed in one of the client machine,
    all the clients are using same internet explorer as browser.
    no message is being displyed on some of the client machine where these forms are not being uploaded on browser instead it displays as done in status bar without actually showing anything at all...
    sir so far as jinitiator or JRE is concered i have seen on the client machine (where my forms are running on internet explorer) a pop up is displyed telling one activex control is required to run this program and click to install it..
    after clicking it download jinitiator from server and after installing jinitiator my forms are loaded and start functioning...
    what i feel is as i said this machine where oc4j and database is running is one of the client machine so some other clients do not have acess to this machine, so this might be the reason why those clints are not able to run the said forms on the internet explorer.... can it be so... kindly tell..
    thank you for your patience for reading the question

  • Can I use DBTableOraDataSourceLoginModule with OC4J/OAS 10.1.3.0  ?

    Hi,
    I am implementing security as described in Frank's docs :
    http://www.oracle.com/technology/products/jdev/howtos/1013/oc4jjaas/oc4j_jaas_login_module.htm
    I am using JDeveloper 10.1.3.1 and OC4J 10.1.3.0 / OAS 10.1.3.0.
    The question is :
    1) Will DBTableOraDataSourceLoginModule work with OC4J/OAS 10.1.3.0 ?
    2) The docs above ONLY describe about deploying to OC4J Stand Alone, what about deploying to OAS 10.1.3.0 (Red Hat Linux) ??
    Thank you,
    xtanto

    Hi John,
    I am using DBTableOraDataSourceLoginModule that is included in jazncore.jar.
    I have overridden the original jazncore.jar in <oracle_home>\j2ee\home of my OAS 10.1.3.0 with jazncore.jar that comes with JDeveloper 10.1.3.1.
    When I deploy to OAS with its enterprise manager, I have done this :
    - Select Security Provider, Security Provider = Custom
    Add Login Module, JAAS Login Module Class = oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule
    - When I press Deploy, I get this error message :
    [Jun 11, 2007 6:15:39 PM] Initializing ClassLoader(s)
    [Jun 11, 2007 6:15:39 PM] Initializing EJB container
    [Jun 11, 2007 6:15:39 PM] Loading connector(s)
    [Jun 11, 2007 6:15:40 PM] application : XPajakApp is in failed state
    [Jun 11, 2007 6:15:40 PM] Operation failed with error: java.lang.InstantiationException
    Is this related to class path ?
    Since the LoginModule class is located in : <oracle_home>\j2ee\home\jazncore.jar, isn't it already in classpath ?
    If no, how can I set it ?
    Thank you,
    xtanto

  • BUG: Database Modeling in JDeveloper 11.1.2.1.0

    Hello,
    I'm defining a foreign key constraint in a database diagram in JDeveloper 11.1.2.1.0 with several columns, and within the Edit Constraint dialog in the Associations list the local columns names does not match the referenced columns names in the grid, although the associations are well defined internally. The same occurs in the Foreign Keys section of the Edit Table dialog, so I would like to know if there is any service pack or something that fixes this,
    Thanks in advance.

    Hi,
    Shay is correct that what you are trying to do requires JDeveloper 12c.
    Frank

  • Using Maven with OC4J libraries?

    Well its my turn for a return question to the fine folks on this forum.
    Is anyone out there using Maven with OC4J? I've been using it lately, but there's one area that I'd like to see ideas on how to best approach.
    <p>When developing Ant scripts to build projects, I typically create a j2ee.classpath PATH and add to it various jar files from the OC4J distribution.
    </p>
    <p>However in Maven, I'm not sure how to best approach this with the OC4J JAR files since several of them have declared dependencies in their META-INF/MANIFEST.MF Class-Path fields -- so they aren't really standalone JAR files. </p>
    Take a look at the j2ee/home/admin_client.jar file and its manifest.mf:
    <p>
    Class-Path: lib/adminclient.jar oc4jclient.jar ../../webservices/lib/wsserver.jar lib/ejb.jar
    lib/mx4j-jmx.jar lib/jmxri.jar lib/jmx_remote_api.jar lib/jaas.jar ../../lib/xmlparserv2.jar
    ../../oracle/lib/xmlparserv2.jar lib/javax77.jar lib/javax88.jar ../../diagnostics/lib/ojdl.jar
    ../../oracle/lib/dms.jar ../../oracle/jlib/dms.jar ../../lib/dms.jar ../../jlib/dms.jar lib/jta.jar
    lib/jms.jar lib/connector.jar ../../opmn/lib/optic.jar ../../oracle/jlib/oraclepki.jar ../../jlib
    oraclepki.jar ../../oracle/jlib/ojpse.jar ../../oracle/jdbc/lib/ojdbc14dms.jar ../../oracle/jdbc/lib
    ocrs12.jar ../../oracle/rdbms/jlib/aqapi.jar ../../jlib/ojpse.jar</p>
    So if I want to make use admin_client.jar in a maven project, I really need all the other libraries it in turn references -- and they are all specified as relative paths. If I wanted to load admin_client.jar into a local Maven repository, how would it be done? How would these paths be expressed/maintained?
    -steve-

    Kristen:
    You can use iPhoto Library Manager to copy that album to one library so that all of the files will be in one library to use.
    with iPLM you can split libraries up by roll or album or both. Jusgt figure out which library which albums will belong to.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Programming the Oracle Database with Java and Web Services: sample chapter

    This will be the first book devoted to Java in the Oracle Database: read the sample chapter @ http://www.oracle.com/technology/books/pdfs/mensah_ch1.pdf
    This book also covers the latest Oracle JDBC, Oracle SQLJ, JPublisher and Database Web Services A brief description @
    http://www.elsevier.com/wps/find/bookdescription.cws_home/706089/description#description
    Thanks, Kuassi

    Hi Kuassi,
    Thanks for letting us know that your book is available. I have been following one of your articles about "Virtualize Your Oracle Database with Web Services". More specifically "The Database as Web Services Consumer". I think that this is an area that has in the past been under estimated as to the potential benefits.
    I am currently trying to develop a solution that consumes several interfaces with a couple of them being published web services, so an ideal solution. I have then spent the last three weeks having to read up about the architecture of Java in the database, Jpublisher and make sense of how it all works together.
    I have got very close to getting one of the web services to work but failed due to using 10gR2 where all the java & libraries has moved to version 1.5. The solution is to load the jdk1.4.2 and configure jpublisher to use this. So far so good except this is not available on some platforms, Windows - 64 bit (not itanium).
    The configuration is proving very challenging but will hopefully reap rewards.
    (Thought I would give you some background to my experience).
    Anyway my question to you is having looked at Jdeveloper it appears to do almost anything except consume services into the database, also with Java now being at version 1.5 outside the database for 10gR2 and supporting 1.4 inside, do you see some alignment of these in future database releases?
    Finally off to buy your book now as no doubt there is a huge amount more to learn.
    Kind Regards
    David O'Donnell

  • Can you access non-Oracle database with HTML DB?

    Can you access non-Oracle database with HTML DB? If not, will this be possible in the future?
    I realize HTML DB is not an open-source product. However, it is necessary sometimes to get non-Oracle database info. JDeveloper supports this. It does not appear to me that HTML DB does. This is a major drawback to it being a product for more potential applications that rely on other database technology such as MySQL, etc.
    If it is possible, is this brain surgery to do it. HTML DB offers fast simplified development and it would be good if it was built in. Does anyone know of an example of accessing non-Oracle database that is available?

    12282,
    In general, HTML DB gives you access to Oracle database facilities. These include heterogeneous services. Please search this forum for keyword "heterogeneous" and you can follow the threads that interest you.
    As for the comparison with brain surgery, I'd rank them about the same in terms of raw thrill.
    Scott

  • Database connections in JDeveloper 10g

    I love the integrated database browsing of JDeveloper, but there is one problem with it. When creating new connections you have to supply the user name and password. For security reasons this is not always recommended. It would be better if JDeveloper could prompt me for the user name and password when I try to open a connection. It used to be like this in earlier versions of JDeveloper I think. At least this should happen if no password is stored with the connection. Where security is not a concern I can store a default user name and password for a connection, but it should always be possible to override it. The user name as well so I don't have to create a connection for each user in each database.

    I logged an er (3649694) to track this request. Thanks for the feedback!
    -- Brian

  • Problems pinging pointbase Database

    Hello this is my problem
    Im working with the default version of PointBase database that comes with the SJAS boundle. Im trying to access the sample database throgh the jndi service and these are the steps that i did:
    1.- i created a new connection pool with the following data
    Name: myDataSource
    Datasource Classname: com.pointbase.jdbc.jdbcPooledDataSource
    Resource Type: javax.sql.ConnectionPoolDataSource
    and these properties:
    PortNumber:9092
    Password: PBPUBLIC
    ServerName: localhost
    DatabaseName: sample
    User: PBPUBLIC
    At this moment i did a ping to the DB an this is the error tha i get
    "Operation 'pingConnectionPool' failed in 'resources' Config Mbean"
    I did what some messages posted say like to ensure about include the jar's in the classpath prefix (JVM Settings-->Path Settings) in this case i include the exact directory:
    C:\Sun\AppServer\pointbase\lib\pbclient.jar
    C:\Sun\AppServer\pointbase\lib\pbembedded.jar
    restarted the server and the same.
    I copy those jar's to the server lib and to the instance (default) lib and the same. Finally i change the server's log level to FINEST at the <module-log-leves .... connector="FINEST" resource-adapter="FINEST" ....>
    and i get this message
    [#|2006-01-27T20:53:18.453-0600|FINE|sun-appserver-pe8.1_02|javax.enterprise.res
    ource.resourceadapter|_ThreadID=12;|using subject: Asunto:
    Principal: PBPUBLIC
    Credencial privada: javax.resource.spi.security.PasswordCredential@bc8cd
    ab6
    |#]
    [#|2006-01-27T20:53:18.453-0600|WARNING|sun-appserver-pe8.1_02|javax.enterprise.
    resource.resourceadapter|_ThreadID=12;|The log message is null.|#]
    what am i doing wrong?, please help me!
    thank you in advance

    The current jdbc pool properties and values used are incorrect.
    Please create jdbc connection pool for pointbase using these properties and values. Make sure you start pointbase database too in <appserver>/pointbase/tools/serveroption/startserver.sh
    datasource classname=com.pointbase.jdbc.jdbcDataSource
    restype=javax.sql.DataSource
    DatabaseName=jdbc:pointbase:server://localhost:9092
    Password=pbPublic
    User=pbPublic

  • How can I use a 3rd party XML parser such as xerces with OC4J ?

    Hi all tech experts,
    I am using Oracle Application Server 10g Release 2 (10.1.2) and i have
    installed Portal and Wireless and OracleAS Infrastructure on the same
    computer.
    i tried all the solutions on this thread
    Use of Xerces Parser in out application with Oracle App Server 9.0.4
    but still fighting.
    I have also posted this query on OTN on following thread
    How can I use a 3rd party XML parser such as xerces with OC4J?
    but no reply....
    Please help me on this issue.
    Since OC4J is preconfigured to use the Oracle XML parser which is xmlparserv2.jar.
    i have read the following article which states that
    OC4J is preconfigured to use the Oracle XML parser. The Oracle XML parser is fully JAXP 1.1 compatible and will serve the needs of applications which require JAXP functionality. This approach does not require the download, installation, and configuration of additional XML parsers.
    The Oracle XML parser (xmlparserv2.jar) is configured to load as a system level library of OC4J through it's inclusion as an entry in the Class-Path entry of the oc4j.jar Manifest.mf file. This results in the Oracle XML parser being used for all common deployment and packaging situations. You are not permitted to modify the Manifest.mf file of oc4j.jar.
    It must be noted that configuring OC4J to run with any additional XML parser or JDBC library is not a supported configuration. We do know customers who have managed to successfully replace the system level XML parser and the Oracle JDBC drivers that ship with the product, but we do not support this type of configuration due to the possibility of unexpected system behavior and system errors that might occur from replacing the tested and certified libraries.
    If you absolutely must use an additional XML parser such as xerces, then you have to start OC4J such that the xerces.jar file is loaded at a level above the OC4J system classpath. This can be accomplished using the -Xbootclasspath flag of the JRE.
    i have also run the following command
    java -Xbootclasspath/a:d:\xerces\xerces.jar -jar oc4j.jar
    but no success.
    How could i utilize my jar's like xerces.jar and xalan.jar for parsing instead of OC4J in-built parser ?
    All reply will be highly appreciated.
    Thnx in advance to all.
    Neeraj Sidhaye
    try_catch_finally @ Y !

    Hi Neeraj Sidhaye,
    I am trying to deploy a sample xform application to the Oracle Application Server (10.1.3). However, I encountered the class loader issue that is similar to your stuation. I tried all the three solutions but the application is still use the Oracle xml paser class. I am wondering if you have any insight about this?
    Thanks for your help.
    Xingsheng Qian
    iPass Inc.
    Here is the error message I got.
    Message:
    java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
    Stack Trace:
    org.chiba.xml.xforms.exception.XFormsException: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
         at org.chiba.xml.xforms.Container.dispatch(Unknown Source)
         at org.chiba.xml.xforms.Container.dispatch(Unknown Source)
         at org.chiba.xml.xforms.Container.initModels(Unknown Source)
         at org.chiba.xml.xforms.Container.init(Unknown Source)
         at org.chiba.xml.xforms.ChibaBean.init(Unknown Source)
         at org.chiba.adapter.servlet.ServletAdapter.init(ServletAdapter.java:153)
         at org.chiba.adapter.servlet.ChibaServlet.doGet(ChibaServlet.java:303)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
         at org.chiba.xml.xforms.Instance.iterateModelItems(Unknown Source)
         at org.chiba.xml.xforms.Bind.initializeModelItems(Unknown Source)
         at org.chiba.xml.xforms.Bind.init(Unknown Source)
         at org.chiba.xml.xforms.Initializer.initializeBindElements(Unknown Source)
         at org.chiba.xml.xforms.Model.modelConstruct(Unknown Source)
         at org.chiba.xml.xforms.Model.performDefault(Unknown Source)
         at org.chiba.xml.xforms.XFormsDocument.performDefault(Unknown Source)
         at org.chiba.xml.xforms.XFormsDocument.dispatchEvent(Unknown Source)
         at org.apache.xerces.dom.NodeImpl.dispatchEvent(Unknown Source)
         ... 18 more

Maybe you are looking for

  • How to show weather icon on top screen smb talk

    I have bought smartband talk yesterday. I see on review page, on clock sreen, at top,it show weather. But my smb talk,I can't see. Anybody help me? Thanks

  • SAP Source System showing up as BI Source System in RSA1

    I have 2 BW systems and 2 CRM Systems.  In one BW system, when I create a SAP Source system in RSA1, It gets listed as a SAP Sources system along with ECC and all the rest. The Logicial Systems and RFC Connections all appear to be the same between ea

  • Backup Restore after Lion clean install sets invalid user

    I was recylcling an iMac ready for a new staff member and at the same time upgrading it to 10.7 Lion.  So I erased the disk and did a clean install of Lion from the Apple USB drive and then did a partial restore from a Time Machine backup disk - part

  • Last Statement Balance

    Hi Experts, I'm trying to figure out how I can reset or change the Last bank statement balance on the external manual bank reconciliation screen. I've been watching threads that tell you to have a look at OBKN but this is only to process external ban

  • I canu00B4t build a DC that share only classes

    Hi forum:    I want to make a Sharing Reference between two Web Dynpro DC, to share only classes of one project to another. I make the next steps: 1) i created one DC1 project 2) i put a classes that i want to share into the folder  src/packages.3) i