Error in configuring Richfaces in JDeveloper 11g

Error in installing/configuring Richfaces in JDev 11g - while I try to add a jsp, I get the following error, can you please help?
Error:
Feb 20, 2010 1:53:54 PM javax.enterprise.resource.webcontainer.jsf.taglib
WARNING: Can't leverage base class
java.lang.NullPointerException
     at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:607)
     at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1142)
     at com.sun.faces.taglib.jsf_core.ViewTag.doStartTag(ViewTag.java:199)
     at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspTagInfo$5.invoke(DesignTimeJspTagInfo.java:245)
     at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspTagInfo._invokeInWebAppContext(DesignTimeJspTagInfo.java:381)
     at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspTagInfo.doStartTag(DesignTimeJspTagInfo.java:240)
     at oracle.jdevimpl.webapp.design.renderer.JspTagRenderImpl.doStartTag(JspTagRenderImpl.java:1144)
     at oracle.jdevimpl.webapp.design.renderer.JspTagRenderImpl.executeTag(JspTagRenderImpl.java:932)
     at oracle.jdevimpl.webapp.design.renderer.JspTagRenderImpl.renderTag(JspTagRenderImpl.java:621)
     at oracle.jdevimpl.webapp.design.renderer.DesignTimeTagRenderer.render(DesignTimeTagRenderer.java:291)
     at oracle.jdevimpl.webapp.design.renderer.context.RendererRenderContext.renderImpl(RendererRenderContext.java:67)
     at oracle.jdevimpl.webapp.design.renderer.context.JspTagRendererRenderContext.renderImpl(JspTagRendererRenderContext.java:94)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.render(RenderContext.java:234)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.renderChildren(RenderContext.java:427)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.renderImpl(RenderContext.java:365)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.render(RenderContext.java:234)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.renderChildren(RenderContext.java:427)
     at oracle.jdevimpl.webapp.design.DesignTimeRenderer.render(DesignTimeRenderer.java:605)
     at oracle.jdevimpl.webapp.jsp.renderers.JSPCoreSyntaxRenderer.render(JSPCoreSyntaxRenderer.java:507)
     at oracle.jdevimpl.webapp.design.renderer.context.RendererRenderContext.renderImpl(RendererRenderContext.java:67)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.render(RenderContext.java:234)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.renderChildren(RenderContext.java:427)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.renderImpl(RenderContext.java:365)
     at oracle.jdevimpl.webapp.design.renderer.context.RenderContext.render(RenderContext.java:234)
     at oracle.jdevimpl.webapp.design.DesignTimeDocumentContext.render(DesignTimeDocumentContext.java:3050)
     at oracle.jdevimpl.webapp.design.support.RenderSupport._renderSource(RenderSupport.java:84)
     at oracle.jdevimpl.webapp.design.support.RenderSupport.render(RenderSupport.java:67)
     at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspServlet.serviceJsp(DesignTimeJspServlet.java:134)
     at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspServlet.service(DesignTimeJspServlet.java:73)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
     at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletInfo._service(DesignTimeServletInfo.java:287)
     at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletInfo.service(DesignTimeServletInfo.java:191)
     at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher.dispatch(DesignTimeRequestDispatcher.java:332)
     at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher.request(DesignTimeRequestDispatcher.java:112)
     at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext._fallback(DesignTimeServletContainerContext.java:1022)
     at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext._service(DesignTimeServletContainerContext.java:897)
     at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext.service(DesignTimeServletContainerContext.java:786)
     at oracle.jdevimpl.webapp.design.DesignTimeWebApp._renderViewDocument(DesignTimeWebApp.java:1361)
     at oracle.jdevim
JDev version:
J2EE Edition Version 11.1.1.2.0
Build JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
JDev Managed Library (Richfaces) has : -
richfaces-api-3.3.2.SR1
richfaces-impl-3.3.2.SR1
richfaces-ui-3.3.2.SR1
web.xml
<?xml version = '1.0' encoding = 'windows-1252'?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>
<context-param>
<param-name>org.richfaces.SKIN</param-name>
<param-value>blueSky</param-value>
</context-param>
<context-param>
<param-name>org.richfaces.CONTROL_SKINNING</param-name>
<param-value>enable</param-value>
</context-param>
<filter>
<display-name>RichFaces Filter</display-name>
<filter-name>richfaces</filter-name>
<filter-class>org.ajax4jsf.Filter</filter-class>
</filter>
<filter-mapping>
<filter-name>richfaces</filter-name>
<servlet-name>Faces Servlet</servlet-name>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
</web-app>

This error is due to the scripts not being run correctly. Read the instructions carefully and run them again. The first script is run as user "sys", the second one as your user you indicate in the parameters to the first script. Make sure you use the _all scripts.
Heidi.

Similar Messages

  • Configuring SOA in Jdeveloper 11g

    Hi,
    I am not able to configure SOA in jdeveloper 11g. I got the following error in the
    startsoa log file
    Jun 25, 2008 3:02:44 PM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    Error in building SOA
    BUILD FAILED
    D:\Project\SOA\jdevstudio1111\install\bpel\build.xml:10: The following error occurred while executing this line:
    D:\Project\SOA\jdevstudio1111\install\bpel\soa-infra-config.xml:48: The following error occurred while executing this line:
    D:\Project\SOA\jdevstudio1111\install\bpel\soa-infra-config.xml:89: ***************************************************
    * Configuring SOA Infrastructure has FAILED.
    * If following log files exists, please check them for possible cause:
    * D:\Project\SOA\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\install\tmp\soa-infra-java.log
    * D:\Project\SOA\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\log\startsoa.log
    Total time: 1 minute 58 seconds

    User,
    Probably best to ask in the 11g forum...
    At any rate, in TP4, you need to download the documentation on how to do this from Metalink.
    John

  • Error in configuring SOA from jdev 11g TP4

    i get an error while configuring SOA from jdev 11g, error is in Test DB setting in first step. These are the details
    DB Connection String : localhost:1521:XE
    DB User Name: adrs_soainfra
    DB Password: welcome1
    error is “There was a problem in establishin a test connection to [localhost:1521:XE]. please review your Database settings and retry(oracle.jdbc.driver.T4CTTIoer processError
    SEVERE: Throwing SQLException: ORA-00942: table or view does not exist
    942
    DB is up and connected via SQLPLUS. All required env parameters are there i.e ORACLE_HOME, PATH, ORACLE_SID

    This error is due to the scripts not being run correctly. Read the instructions carefully and run them again. The first script is run as user "sys", the second one as your user you indicate in the parameters to the first script. Make sure you use the _all scripts.
    Heidi.

  • How to configure my oracle jdeveloper 11g preview 4 with oracle 8i database

    hi every one
    my requrirement is to configure my oracle jdeveloper 11g preview 4 with oracle 8i database with (thin driver)
    thanks in advance

    Prapan,
    JDev 11g TP4 comes with 11g JDBC drivers, which do not support connecting to any database v 9.0.1 or earlier.
    So, back to you... depends upon what you want to do. If you want to write your own code to connect to a database using 11g, get ahold of some JDBC drivers that support 8i and have away. If you're talking about getting the database development stuff (e.g. the embedded SQLDeveloper) to work, you're probably out of luck.
    So, please define "configure my oracle jdeveloper 11g preview 4 with oracle 8i database"
    John

  • Error while configuring SSL in OID 11g - LDAP 50 Insufficient Access rights

    HI,
    I am trying to configure SSL in OID 11g.As per the doc http://download.oracle.com/docs/cd/E12839_01/oid.1111/e10029/ssl.htm#CBHGBGAF ,i tried creating a Self-Signed Wallte using Fusion Middleware control,But i am getting an error LDAP 50: Insufficient access rights".I logged into Fusion Middle Ware control as Weblogic user.Is anybody faced this issue?.Thanks in advance.

    I am not sure how you tried, but I would recommend to do the following...
    1. Add the 'user1' to "OU=Franchisees,ou=People,dc=company,dc=com"
    2. Delete the 'user1' from 'OU=Internal,ou=People,dc=company,dc=com'

  • Error in Compiling FormGraph in jdeveloper 11g

    Hi
    I m trying to compile the new FormsGraph from Bincsoft sites:
    http://www.bincsoft.com/articles/forms-wrapper-for-oracle-data-visualization-components
    I have installed jdeveloper 11g on d:\oracle\middleware and placed the frmall.jar and bigraphbean.jar in the
    D:\Oracle\Middleware\jdeveloper\jdev\lib location and add to the project via project properties but i get the following errors.
    Cannot find class ReferenceObject()
    cannot find variable GraphConstants
    Please help if i m missing something and how to successfully compile this jar file .
    Regards
    Omama Khurshid

    This sounds like a question for the JDev team. Try posting here:
    JDeveloper and ADF
    Unrelated to your current problem, but something you should know... I would not recommend using JDev 11 if you are using Forms 10. Be sure to consider the jdk you are using when creating apps to integrate with Forms. This is mostly relevant for server side, imported java, but should also be considered when building client side beans, although less of an issue as long as the client side is running a JRE that supports that java version.
    Forms 10.x is based on Java 1.3/1.4
    Forms 11.x is based on Java 1.5/1.6

  • Error while configuring channels in B2B 11g

    Hi b2bgurus,
    I am implementing RosettaNet protocol in 11g. 3C3 Invoice Notification. While configuring channels i got this following error:
    "Messages for this page are listed below.
    Acme_Custom_V02.00_Invoice_Notification_Outbound is not valid. Please correct the following errors.
    Error -: B2B-52255: Certificate alias not specified in the secure delivery channel Acme_Channel.
    Error -: B2B-52326: Transport protocol with https url has to have valid keystore location and password in host "
    I get the above error while I provide http url as input. Do we have a protocol where we can provide https url?
    Please explain i am new to B2B.
    Thanks in advance

    get this error when i provide the url while channel creation. SSL is enabled by using BIG IP. Hence preparation of Key store is not requiredYou understanding is not correct. If you are initiating a SSL connection from Oracle B2B (by giving a HTTPS URL in delivery channel), then you have to configure identity and trust store in your Weblogic servers (SOA server) and you have to configure keystore on Oracle B2B console as well. As I mentioned earlier also refer the blog (http://anuj-dwivedi.blogspot.com/2010/10/enabling-ssl-on-oracle-b2b-11g.html) and perform the required steps.
    If you don't configure a keystore then you CAN NOT initiate a SSL connection from Oracle B2B.
    If you want Big IP to handle SSL then from Oracle B2B you have to initiate a plain HTTP connection and at BIG IP you have to route the request to the respective HTTPS channel (which I am not sure is possible though I am not familier with BIG IP)
    Regards,
    Anuj

  • Error in running  application in Jdeveloper 11g

    (oracle.jbo.domain.DataCreationException) JBO-25029: Domain class BigInteger is not found. Please help me to find the solution. I am using Oracle 9i as a back-end.

    Hi,
    This error happens, because EO attribute of java.math.BigInteger type is not correctly auto-generated by ADF BC - type is not specified correctly... Go to the xml and change BigInteger into java.math.BigInteger...
    Andrejus Baranovskis's Blog has the solution... Google would tell you...
    http://andrejusb.blogspot.com.au/2011_06_01_archive.html
    There is a forum entry with the same error...
    Re: Bug: JBO-25029: Domain class BigInteger is not found. JDeveloper11.1.2.0.0
    Cheers,
    Vlad
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts)
    https://forums.oracle.com/forums/ann.jspa?annID=893

  • Error while configuring VM for SOA 11g

    Hi,
    I am getting below error message while running the VM after +" Import the VM (File-->Import Appliance)+
    +Click Choose... to browse the file system and select the file vbox-oel5u4-soabpm-11gr1ps2-bp1-otn.ovf+
    +Click Next "+
    Can someone pls help me on this.
    Error message:-
    Result Code:
    VBOX_E_OBJECT_IN_USE (0x80BB000C)
    Component:
    Medium
    Interface:
    IMedium {9edda847-1279-4b0a-9af7-9d66251ccc18}
    Failed to import appliance C:\Users\bk\Desktop\VMWARE\vbox-oel5u4-soabpm-11gr1ps2-bp1-otn.ovf.
    Medium 'C:\Users\Baljeet Antim\VirtualBox VMs\vbox-oel5u4-soabpm-11gr1ps2-bp1-otn_1\vbox-oel5u4-soabpm-11gr1ps2bp1-root_2.vmdk'
    cannot be closed because it is still attached to 1 virtual machines.
    http://www.oracle.com/technetwork/middleware/soasuite/learnmore/vmsoa-172279.html

    I got the problem - it was due to one of the corrupt file

  • Error in my bean in jdeveloper 11g release 2

    hi i have this method ,am having error method getDBTransaction(). not found what could be the problem,i what this method in my bean
    protected void calproce(String stmt, Object[] bindVars) {
    PreparedStatement st;
    st = null;
    try {
    // 1. Create a JDBC PreparedStatement for
    st = getDBTransaction().createPreparedStatement("begin "+stmt+";end;",0);
    if (bindVars != null) {
    // 2. Loop over values for the bind variables passed in, if any
    for (int z = 0; z < bindVars.length; z++) {
    // 3. Set the value of each bind variable in the statement
    st.setObject(z + 1, bindVars[z]);
    // 4. Execute the statement
    st.executeUpdate();
    catch (SQLException e) {
    throw new JboException(e);
    finally {
    if (st != null) {
    try {
    // 5. Close the statement
    st.close();
    catch (SQLException e) {}
    Edited by: Tshifhiwa on 2012/05/03 1:35 PM
    Edited by: Tshifhiwa on 2012/05/03 11:09 PM

    yes i use ADF BC i have this class also,how can i link to my login button,mybe you can help me,so i must not use bean,now i undestand getDBTransaction is a method you call on an AM not on a VOso how can i use this method in impl class,i what when button press call the public void PerformSdmsLogon method
    package sms0000;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import oracle.jbo.JboException;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Fri Apr 27 16:50:46 CAT 2012
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class LogOnImpl extends ViewObjectImpl {
    * This is the default constructor (do not remove).
    public LogOnImpl() {
    * executeQueryForCollection - overridden for custom java data source support.
    protected void executeQueryForCollection(Object qc, Object[] params, int noUserParams) {
    super.executeQueryForCollection(qc, params, noUserParams);
    * hasNextForCollection - overridden for custom java data source support.
    protected boolean hasNextForCollection(Object qc) {
    boolean bRet = super.hasNextForCollection(qc);
    return bRet;
    * createRowFromResultSet - overridden for custom java data source support.
    protected ViewRowImpl createRowFromResultSet(Object qc, ResultSet resultSet) {
    ViewRowImpl value = super.createRowFromResultSet(qc, resultSet);
    return value;
    * getQueryHitCount - overridden for custom java data source support.
    public long getQueryHitCount(ViewRowSetImpl viewRowSet) {
    long value = super.getQueryHitCount(viewRowSet);
    return value;
    protected void callPerformSdmsLogon(String stmt, Object[] bindVars) {
    PreparedStatement st;
    st = null;
    try {
    // 1. Create a JDBC PreparedStatement for
    st = getDBTransaction().createPreparedStatement("begin "+stmt+";end;",0);
    if (bindVars != null) {
    // 2. Loop over values for the bind variables passed in, if any
    for (int z = 0; z < bindVars.length; z++) {
    // 3. Set the value of each bind variable in the statement
    st.setObject(z + 1, bindVars[z]);
    // 4. Execute the statement
    st.executeUpdate();
    catch (SQLException e) {
    throw new JboException(e);
    finally {
    if (st != null) {
    try {
    // 5. Close the statement
    st.close();
    catch (SQLException e) {}
    Edited by: Tshifhiwa on 2012/05/03 5:26 PM
    Edited by: Tshifhiwa on 2012/05/03 11:16 PM

  • Error occured during Configuring of SOA in Jdeveloper 11g TP4

    Hi,
    I am not able to configure SOA in jdeveloper 11g. I got the following error in the
    startsoa log file
    July 13, 2008 3:02:44 PM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    Error in building SOA
    BUILD FAILED
    D:\Project\SOA\jdevstudio1111\install\bpel\build.xml:10: The following error occurred while executing this line:
    D:\Project\SOA\jdevstudio1111\install\bpel\soa-infra-config.xml:48: The following error occurred while executing this line:
    D:\Project\SOA\jdevstudio1111\install\bpel\soa-infra-config.xml:89: ***************************************************
    * Configuring SOA Infrastructure has FAILED.
    * If following log files exists, please check them for possible cause:
    * D:\Project\SOA\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\install\tmp\soa-infra-java.log
    * D:\Project\SOA\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\log\startsoa.log
    Total time: 1 minute 58 seconds
    Thanks in Advance
    With Regards
    Nishanth
    Message was edited by:
    Nishanth Sodum

    Dear Heidi,
    Thanks for the responding to me. I am not able to find any error in the log. I placed the log messages. please suggest me on this.
    soa-infra-java.log
    08/06/25 14:21:41 Notification ==>Application Deployer for wsm-pm STARTS.
    08/06/25 14:21:41 Notification ==>Undeploy previous deployment
    08/06/25 14:21:41 Notification ==>Initialize D:\Project\SOA\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\applications\wsm-pm.ear begins...
    08/06/25 14:21:41 Notification ==>Initialize D:\Project\SOA\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\applications\wsm-pm.ear ends...
    08/06/25 14:21:41 Notification ==>Starting application : wsm-pm
    08/06/25 14:21:41 Notification ==>Initializing ClassLoader(s)
    08/06/25 14:21:41 Notification ==>Initializing EJB container
    08/06/25 14:21:41 Notification ==>Loading connector(s)
    08/06/25 14:21:41 Notification ==>Starting up resource adapters
    08/06/25 14:21:41 Notification ==>Processing EJB module: wsm-pmserver.jar
    08/06/25 14:21:41 Notification ==>Compiling EJB generated code
    08/06/25 14:21:41 Notification ==>Committing ClassLoader(s)
    08/06/25 14:21:41 Notification ==>Initialize wsm-pmweb begins...
    08/06/25 14:21:41 Notification ==>Initialize wsm-pmweb ends...
    08/06/25 14:21:41 Notification ==>Started application : wsm-pm
    08/06/25 14:21:41 Notification ==>Binding web application(s) to site default-web-site begins...
    08/06/25 14:21:41 Notification ==>Binding web application(s) to site default-web-site ends...
    08/06/25 14:21:41 Notification ==>Application Deployer for wsm-pm COMPLETES. Operation time: 641 msecs
    Startsoa.log file
    Jul 15, 2008 10:29:55 AM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    08/07/15 10:30:24 SEVERE: AbstractInfo.getAnnotation oracle.webservices.annotations.async.AsyncWebService cannot be found in the given classpath.
    08/07/15 10:30:24 SEVERE: AbstractInfo.getAnnotation oracle.webservices.annotations.async.AsyncWebService cannot be found in the given classpath.
    Jul 15, 2008 10:31:11 AM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    WARNING: J2EE JNDI-00002
    Jul 15, 2008 10:31:11 AM oracle.j2ee.util.AnnotatedLogger log
    WARNING: No javax.jms.ConnectionFactory found at null
    Jul 15, 2008 10:31:17 AM oracle.j2ee.deployment.DeploymentMessages warningDuplicateServletMapping
    WARNING: There are multiple mappings for servlet name: WSRPServiceDescriptionService, but only the first one (/portlets/WSRPServiceDescriptionService) will be considered for webservice endpoint
    Jul 15, 2008 10:31:17 AM oracle.j2ee.deployment.DeploymentMessages warningDuplicateServletMapping
    WARNING: There are multiple mappings for servlet name: WSRP_v2_ServiceDescription_Service, but only the first one (/portlets/WSRP_v2_ServiceDescription_Service) will be considered for webservice endpoint
    Jul 15, 2008 10:31:17 AM oracle.j2ee.deployment.DeploymentMessages warningDuplicateServletMapping
    WARNING: There are multiple mappings for servlet name: WSRPServiceDescriptionService, but only the first one (/portlets/WSRPServiceDescriptionService) will be considered for webservice endpoint
    Jul 15, 2008 10:31:17 AM oracle.j2ee.deployment.DeploymentMessages warningDuplicateServletMapping
    WARNING: There are multiple mappings for servlet name: WSRP_v2_ServiceDescription_Service, but only the first one (/portlets/WSRP_v2_ServiceDescription_Service) will be considered for webservice endpoint
    [TopLink Info]: 2008.07.15 10:32:09.077--ServerSession(30990579)--TopLink, version: Oracle TopLink - 11g Technology Preview 4 (11.1.1.0.0) (Build 080422)
    [TopLink Info]: 2008.07.15 10:32:11.109--ServerSession(30990579)--userprefs login successful
    Jul 15, 2008 10:32:41 AM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    Jul 15, 2008 10:32:41 AM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    With Regards,
    Nishanth

  • Jdeveloper 11g install error

    I received the following error when trying to install jdeveloper 11g. I was attempting to install the studio edition for windows.
    Fatal error encountered during file installation. The installer will now cleanup and exit!
    C:\oracle\Middleware\wlser_10.3\server\lib\jms-local-adp.rar (Access is denied)
    This is a windows box that I have been running jdev 10.1.3.3 with no problems.
    Has anyone else encountered this error??

    Hi,
    didn't see anything like this so far. The installation routine between 10.1.3 and 11 has changed and cannot be compared. Did you run the ".exe." installer ? I am asking because I tend using the jar installer that you launh with java -jar <jdev install file>.jar
    Maybe this is an option for you to try (though it might require a new download of JDev ;-(
    Frank

  • RichFaces and JDeveloper

    I'm working on jdeveloper 10.1.3.1 and I want to add richfaces to my application .. I added richfaces-ui-3.2.1.GA.jar file to the libraries but I can't find the richfaces components in the component palette!! .. so if anyone knows what the problem maybe or even has the steps to configure richfaces with jdeveloper, plz reply ..
    thnx alot

    Component palette? Isn't that IDE specific? Better ask this question at the JDeveloper forum over there at Oracle.com.
    In the future, RichFaces related technical questions are better to be asked at their own forum at JBoss.org.

  • Error starting IntegratedWebLogicServer in Jdeveloper 11g 11.1.1.3.0

    Hi everybody, I´m trying to start the IntegratedWebLogicServer in Jdeveloper 11g in Windows XP, but i'm getting this error message:
    Error occurred during initialization of VM
    agent library failed to init: instrument
    Error opening zip file or JAR manifest missing : ../modules/org.eclipse.persistence_1.0.0.0_2-0.jar
    Process exited.
    the file org.eclipse.persistence_1.0.0.0_2-0.jar is present in the Middleware/modules drectory
    the command used by JDeveloper is this one:
    Starting WLS with line:
    D:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=128m -Dweblogic.Name=DefaultServer -Djava.security.policy=D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=D:\Oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -javaagent:../modules/org.eclipse.persistence_1.0.0.0_2-0.jar -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=D:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=D:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=D:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=D:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\sysext_manifest_classpath;D:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    thanks for any advice...

    -javaagent setting is a bit peculiar with windows path right click your project and open the Properties window. At the bottom open Run/Debug/Profile tab and Edit the "Eclipselink JPA Client" configuration. replace ../ with the actual path and do use "/" only...

  • Getting error while configuring WebSphere application server in JDeveloper

    Hi all,
    I have installed Oracle Jdeveloper 11g(11.1.1.5.1) and WebSphere application server 7
    I am trying to create New Application server as "WebSphere" and entered following information.
    Host Name : wkstn90
    SOAP Connector port: 8880
    Server Name: server1
    Target Node: wkstn90Node01
    TargetCell: wkstn90Node01Cell
    wsadmin script file location: C:\Program Files\IBM\WebSphere\AppServer\bin\wsadmin.bat
    So once click on test connection it will comes up with following error,
    Testing WsAdmin ... failed.
    Could not connect to SOAP port 8880 using script C:\Program Files\IBM\WebSphere\AppServer\bin\wsadmin.bat.
    Testing DeploymentConfig ... failed.
    Cell wkstn90Node01Cell was not found on the WebSphere server.
    Please help me how to resolve this issue. Any extra configuration am i need to carry out in WebSphere server.
    Please let me know. Waiting for positive response.
    By,
    sk

    Hi,
    Use the Deployment Manager Soap port not the Application Server port
    Maddy

Maybe you are looking for