Reformat issue in JDeveloper 10.1.3

We are trying to migrate from JDeveloper 9.04 to 10.1.3. It appears that REFORMAT does not handle comments nicely.
Here is what we are experiencing:
Before Jdeveloper reformat:
* Convert String to integer. Defuault to given d if errors.
* @param str String to be converted.
* @param d default value if errors
* @return Integer value
public static int atoi( String str, int d )
After Jdeveloper reformat:
* Convert String to integer. Defuault to given d if errors.
* @param str String to be converted.
* @param d default value if errors
* @return Integer value
public static int atoi(String str, int d) {
What I expected:
* Convert String to integer. Defuault to given d if errors.
* @param str String to be converted.
* @param d default value if errors
* @return Integer value
public static int atoi(String str, int d) {
Note that comment lines starting with * need 2 more spaces to make it more nicely.
Does anyone else have the same issue? Or is there any parameter set up I can do to correct this problem?
Thanks a lot.

Here is the code repost:
Before Jdeveloper reformat:
   * Convert String to integer. Defuault to given d if errors.
   * @param str   String to be converted.
   * @param d     default value if errors
   * @return      Integer value
  public static int atoi( String str, int d )
After Jdeveloper reformat:
   * Convert String to integer. Defuault to given d if errors.
   * @param str   String to be converted.
   * @param d     default value if errors
   * @return      Integer value
    public static int atoi(String str, int d) {
What I expected:
     * Convert String to integer. Defuault to given d if errors.
     * @param str   String to be converted.
     * @param d     default value if errors
     * @return      Integer value
    public static int atoi(String str, int d) {

Similar Messages

  • Performance issue with Jdeveloper

    Hi Guys,
    I am experiencing strange performance issue with Jdeveloper 10.1.3.3.0.4157. There are many other threads regarding the performance issue in this forum, but the problem I have is a little bit different.
    I have two computers: one is Athlon 3200+ with Vista and another one is P4 dual core 6400 with XP (service pack 2). Both of them have 2GB memory.
    I am running the same simple project on both computer, but only the one with Vista has the problem. The problem is very similar to the problem mentioned in the thread:
    Re: IDE has become extremely slow?
    But it's much worse. It only happens only on JSF pages. Basically, any operations on the JSF pages are very slow. Loading the page, changing the attributes of a button in source editor, or even clicking the items in the design view take forever to run.
    The first weird thing is that it may use 100% CPU, but it never recover, which means the 100% CPU usage never stops or when it stops, the Jdeveloper stops responding.
    The second weird thing is that the project is not big. Actually, it's very small. The problem started to happen since last week. There are not big changes during the period. The only thing I can say is that we created two more JSF pages.
    The third weird thing is that the same project never happened on the P4+XP box. When I open the project on the P4+XP box, it’s always fast and no CPU spike.
    Any advises are welcome!
    Thanks,
    Steven

    Hi Guys,
    I re-made a simple test project for this problem and now I now always reproduce the problem in JDeveloper on both system (XP & Vista). Everytime I open this jspx file in the source editor and try to scroll up/down the source file, or manually delete an attribute, JDeveloepr will hang and the CPU usage is 0%.
    Here is the content of the test file:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
    <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
    doctype-system="http://www.w3.org/TR/html4/loose.dtd"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <afh:html binding="#{backing_streettypedetail.html1}" id="html1">
    <afh:head title="streettypedetail"
    binding="#{backing_streettypedetail.head1}" id="head1">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    </afh:head>
    <afh:body binding="#{backing_streettypedetail.body1}" id="body1">
    <af:messages binding="#{backing_streettypedetail.messages1}"
    id="messages1"/>
    <h:form binding="#{backing_streettypedetail.form1}" id="form1">
    <af:panelForm binding="#{backing_streettypedetail.panelForm1}"
    id="panelForm1">
    <af:inputText value="#{bindings.streetTypeID.inputValue}"
    label="#{bindings.streetTypeID.label}"
    required="#{bindings.streetTypeID.mandatory}"
    columns="#{bindings.streetTypeID.displayWidth}"
    binding="#{backing_streettypedetail.inputText1}"
    id="inputText1">
    <af:validator binding="#{bindings.streetTypeID.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.description.inputValue}"
    label="#{bindings.description.label}"
    required="#{bindings.description.mandatory}"
    columns="#{bindings.description.displayWidth}"
    binding="#{backing_streettypedetail.inputText2}"
    id="inputText2">
    <af:validator binding="#{bindings.description.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.abbr.inputValue}"
    label="#{bindings.abbr.label}"
    required="#{bindings.abbr.mandatory}"
    columns="#{bindings.abbr.displayWidth}"
    binding="#{backing_streettypedetail.inputText3}"
    id="inputText3">
    <af:validator binding="#{bindings.abbr.validator}"/>
    </af:inputText>
    <f:facet name="footer">
    <h:panelGroup binding="#{backing_streettypedetail.panelGroup1}"
    id="panelGroup1">
    <af:commandButton text="Save"
    binding="#{backing_streettypedetail.saveButton}"
    id="saveButton"
    actionListener="#{bindings.mergeEntity.execute}"
    action="#{userState.retrieveReturnNavigationRule}"
    disabled="#{!bindings.mergeEntity.enabled}"
    partialSubmit="false">
    <af:setActionListener from="#{true}"
    to="#{userState.refresh}"/>
    </af:commandButton>
    <af:commandButton text="Cancel"
    binding="#{backing_streettypedetail.cancelButton}"
    action="#{userState.retrieveReturnNavigationRule}"
    id="cancelButton">
    <af:setActionListener from="#{false}"
    to="#{userState.refresh}"/>
    </af:commandButton>
    </h:panelGroup>
    </f:facet>
    </af:panelForm>
    </h:form>
    </afh:body>
    </afh:html>
    </f:view>
    <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_streettypedetail-->
    </jsp:root>
    Can anybody take a look at the file and let me know what's wrong with it?
    Thanks in advance.
    Steven

  • Toplink descriptor migration issues in JDeveloper 10.1.3.5 - 11

    I'm having several projects developed with TL as a PM in JDeveloper 10.1.3.5. Descriptors and toplink-ejb.jar file are parsed correctly, but when I migrate projects to 11G Toplink parsing breaks and it is not able to display EJBs with the following error:
    Local Exception Stack:
    Exception [TOPLINK-6044] (Oracle TopLink - 11g Release 1 (11.1.1.5.0) (Build 110305)): oracle.toplink.exceptions.QueryException
    Exception Description: The primary key read from the row [DatabaseRecord()] during the execution of the query was detected to be null. Primary keys must not contain null.
    Query: ReadAllQuery(oracle.toplink.workbench.mappingsmodel.database.MWLegacyTable)
         at oracle.toplink.exceptions.QueryException.nullPrimaryKeyInBuildingObject(QueryException.java:837)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:418)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildObjectsInto(ObjectBuilder.java:748)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.buildObjectsFromRows(DatabaseQueryMechanism.java:170)
         at oracle.toplink.queryframework.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:477)
         at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:874)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:679)
         at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:835)
         at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:445)
         at oracle.toplink.internal.sessions.AbstractSession.internalExecuteQuery(AbstractSession.java:2265)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1079)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1063)
         at oracle.toplink.internal.indirection.NoIndirectionPolicy.valueFromQuery(NoIndirectionPolicy.java:264)
         at oracle.toplink.mappings.ForeignReferenceMapping.valueFromRowInternal(ForeignReferenceMapping.java:1377)
         at oracle.toplink.mappings.ForeignReferenceMapping.valueFromRow(ForeignReferenceMapping.java:1306)
         at oracle.toplink.mappings.DatabaseMapping.readFromRowIntoObject(DatabaseMapping.java:1117)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildAttributesIntoObject(ObjectBuilder.java:279)
         at oracle.toplink.sdk.SDKAggregateObjectMapping.buildCompositeObject(SDKAggregateObjectMapping.java:58)
         at oracle.toplink.mappings.foundation.AbstractCompositeObjectMapping.valueFromRow(AbstractCompositeObjectMapping.java:231)
         at oracle.toplink.mappings.DatabaseMapping.readFromRowIntoObject(DatabaseMapping.java:1117)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildAttributesIntoObject(ObjectBuilder.java:279)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:584)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:441)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:391)
         at oracle.toplink.queryframework.ObjectLevelReadQuery.buildObject(ObjectLevelReadQuery.java:511)
         at oracle.toplink.queryframework.ReadObjectQuery.executeObjectLevelReadQuery(ReadObjectQuery.java:433)
         at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:874)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:679)
         at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:835)
         at oracle.toplink.queryframework.ReadObjectQuery.execute(ReadObjectQuery.java:397)
         at oracle.toplink.internal.sessions.AbstractSession.internalExecuteQuery(AbstractSession.java:2265)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1079)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1063)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1022)
         at oracle.toplink.internal.sessions.AbstractSession.readObject(AbstractSession.java:2827)
         at oracle.toplink.workbench.mappingsio.legacy.PersistenceTools50.readMWProjectNamed(PersistenceTools50.java:331)
         at oracle.toplink.workbench.mappingsio.legacy.LegacyIOFacade.read50Project(LegacyIOFacade.java:29)
         at oracle.toplink.workbench.mappingsio.ProjectReader.readLegacyProject(ProjectReader.java:296)
         at oracle.toplink.workbench.mappingsio.ProjectReader.read(ProjectReader.java:110)
         at oracle.toplink.workbench.mappingsio.ProjectIOManager.read(ProjectIOManager.java:64)
         at oracle.toplink.workbench.mappingsio.ProjectIOManager.read(ProjectIOManager.java:60)
         at oracle.toplink.workbench.addin.application.ProjectContext.buildProject(ProjectContext.java:160)
         at oracle.toplink.workbench.addin.application.ProjectContext.initialize(ProjectContext.java:440)
         at oracle.toplink.workbench.addin.application.ProjectContext.<init>(ProjectContext.java:106)
         at oracle.toplink.workbench.addin.application.ContextManager.openProject(ContextManager.java:1169)
         at oracle.toplink.workbench.addin.application.ContextManager.openTopLinkMap(ContextManager.java:1218)
         at oracle.toplink.workbench.addin.application.ContextManager.loadProjectContext(ContextManager.java:1068)
         at oracle.toplink.workbench.addin.application.ContextManager.getContext(ContextManager.java:657)
         at oracle.toplink.workbench.addin.ui.view.TopLinkContextViewContextBuilder.topLinkContext(TopLinkContextViewContextBuilder.java:202)
         at oracle.toplink.workbench.addin.ui.view.TopLinkContextViewContextBuilder.openDocument(TopLinkContextViewContextBuilder.java:187)
         at oracle.toplink.workbench.addin.ui.view.ViewContextManager$OpenDocument.run(ViewContextManager.java:1081)
    There was a similar thread here :
    Re: Errors migrating from jDev 10.1.3.4 to jDev 11.2.1
    I did try to migrate to 11.1.1.4.0 and 11.1.1.5.0 - still no luck. All offline databases are present and correctly "connect" to corresponding EJBs in 10.1.3.5.
    Neither I cant find migration matrix/docs that were referred in similar threads. If this is not resolved, we can not chose Jdeveloper as a future IDE at the company...
    Thank you!
    V.

    Hi,
    the web appears to be full of such error messages and some point to the use of named native query vs. named query. So here are some options for you to try
    1. Create a test project in 11g using the same tables and compare the generated code with yours to see a difference
    2. Get a 10.1.3.5 project that you haven't migrated and pass it on to customer support for them to have a try on this.
    +"If this is not resolved, we can not chose Jdeveloper as a future IDE at the company..."+ Actually it doesn't appear to be a JDeveloper issue but a TopLink / EclipseLink issue. Abandoning JDeveloper is like shooting the messenger. Just so you know.
    Frank

  • Issue with JDeveloper 11.1.1.5.1

    Hi guys,
    I recently installed JDeveloper version 11.1.1.5.1 by reading the chapter 2 of this Fusion Application Developer's Guide [http://download.oracle.com/docs/cd/E15586_01/fusionapps.1111/e15524.pd] and setup up Integrated WebLogic Server accoding the instructions. But since the domain setup of WebLogic Server its throwing several errors and warnings while launching.
    Following is the log
    starting weblogic with Java version:
    <MessageLocalizationHelper> <getLocalizedMessage> The resource for bundle "oracle.apps.fnd.applcore.diagnostics.resource.DiagnosticsBundle" with key "DiagnosticsConfigMXBean.getSpecificValidationStatus" cannot be found.
    <MessageLocalizationHelper> <getLocalizedMessage> The resource for bundle "oracle.jrf.i18n.MBeanMessageBundle" with key "oracle.jrf.JRFServiceMBean.checkIfJRFAppliedOnMutipleTargets" cannot be found.
    <Sep 30, 2011 5:06:05 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\jdeveloper\ecsf\modules\oracle.ecsf_11.1.1\oracle.ecsf.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:05 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\jdeveloper\ecsf\modules\oracle.ecsf_11.1.1\oracle.ecsf.service.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:07 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element web-app in the deployment descriptor in C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\tmp\_WL_user\jaxrs-framework-web-lib\829i9k/WEB-INF/web.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:07 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'oracle.bi.integration.adf [LibSpecVersion=1.0,LibImplVersion=11.1.1]' due to error weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: oracle.bi.integration.adf, Specification-Version: 1, Implementation-Version: 11.1.1.2.0, because of conflicting library Manifest values, and library information registered with the server: [Implementation-Version: 11.1.1.2.0 vs. 11.1.1]. Check the library"s MANIFEST.MF file, and correct version info there to match server settings. Or undeploy the misconfigured library..
    weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: oracle.bi.integration.adf, Specification-Version: 1, Implementation-Version: 11.1.1.2.0, because of conflicting library Manifest values, and library information registered with the server: [Implementation-Version: 11.1.1.2.0 vs. 11.1.1]. Check the library"s MANIFEST.MF file, and correct version info there to match server settings. Or undeploy the misconfigured library.
         at weblogic.application.internal.library.LibraryDeploymentFactory.getLibData(LibraryDeploymentFactory.java:113)
         at weblogic.application.internal.library.LibraryDeploymentFactory.createDeployment(LibraryDeploymentFactory.java:48)
         at weblogic.application.internal.DeploymentManagerImpl.createDeployment(DeploymentManagerImpl.java:84)
         at weblogic.deploy.internal.targetserver.BasicDeployment.createDeployment(BasicDeployment.java:149)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:114)
         Truncated. see log file for complete stacktrace
    >
    <Sep 30, 2011 5:06:10 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\jdeveloper\atgpf\modules\oracle.applcp.model_11.1.1\oracle.applcp.model.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:16 PM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.as.scheduler.platform.wls.deploy.ESSApplicationLifecycleListener is ignored because the application ESSAPP is not versioned.>
    <Sep 30, 2011 5:06:19 PM IST> <Warning> <Connector> <BEA-190155> <Compliance checking/validation of the resource adapter C:\Oracle\Middleware\jdeveloper\ess\archives\ess-app\ess-ra.rar resulted in the following warnings:
    The ra.xml <resourceadapter-class> class 'oracle.as.scheduler.adapter.ra.RAImpl' should implement java.io.Serializable but does not.>
    <Sep 30, 2011 5:06:20 PM IST> <Warning> <EJB> <BEA-012035> <The Remote interface method: 'public abstract void oracle.as.scheduler.RuntimeService.updateRequestParameter(oracle.as.scheduler.RuntimeServiceHandle,long,java.lang.String,java.lang.Object) throws oracle.as.scheduler.RequestNotFoundException,oracle.as.scheduler.ValidationException,oracle.as.scheduler.RuntimeServiceException' in EJB 'RuntimeServiceBean' contains a parameter of type: 'java.lang.Object' which is not Serializable. Though the EJB 'RuntimeServiceBean' has call-by-reference set to false, this parameter is not Serializable and hence will be passed by reference. A parameter can be passed using call-by-value only if the parameter type is Serializable.>
    <Sep 30, 2011 5:06:20 PM IST> <Warning> <EJB> <BEA-012035> <The Remote interface method: 'public abstract void oracle.as.scheduler.RuntimeService.setRequestParameter(oracle.as.scheduler.RuntimeServiceHandle,long,java.lang.String,java.lang.Object) throws oracle.as.scheduler.RequestNotFoundException,oracle.as.scheduler.ValidationException,oracle.as.scheduler.RuntimeServiceException' in EJB 'RuntimeServiceBean' contains a parameter of type: 'java.lang.Object' which is not Serializable. Though the EJB 'RuntimeServiceBean' has call-by-reference set to false, this parameter is not Serializable and hence will be passed by reference. A parameter can be passed using call-by-value only if the parameter type is Serializable.>
    <Sep 30, 2011 5:06:20 PM IST> <Warning> <EJB> <BEA-012035> <The Remote interface method: 'public abstract java.util.Enumeration oracle.as.scheduler.MetadataService.filterByPermission(oracle.as.scheduler.MetadataServiceHandle,java.util.Enumeration,oracle.as.scheduler.security.MetadataPermission$Action[]) throws oracle.as.scheduler.MetadataServiceException' in EJB 'MetadataServiceBean' contains a parameter of type: 'java.util.Enumeration' which is not Serializable. Though the EJB 'MetadataServiceBean' has call-by-reference set to false, this parameter is not Serializable and hence will be passed by reference. A parameter can be passed using call-by-value only if the parameter type is Serializable.>
    <Sep 30, 2011 5:06:24 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\tmp\_WL_user\oracle.ecsf\dyxwqt/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:24 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\tmp\_WL_user\oracle.ecsf\dyxwqt/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:24 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\tmp\_WL_user\oracle.applcp.model\f7pg9o/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:24 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\tmp\_WL_user\oracle.applcp.model\f7pg9o/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:24 PM IST> <Warning> <J2EE> <BEA-160140> <Unresolved optional package references (in META-INF/MANIFEST.MF): [Extension-Name: oracle.apps.common.resource, referenced from: C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\tmp\_WL_user\oracle.webcenter.framework\owur7d]. Make sure the referenced optional package has been deployed as a library.>
    <Sep 30, 2011 5:06:29 PM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.as.scheduler.platform.wls.deploy.ESSApplicationLifecycleListener is ignored because the application EssCentralUiApp is not versioned.>
    <JpsDstCredential> <setCredential> Cannot migrate credential folder/key EssCentralUIApp.oracle.apps.applcp.centralui/anonymous#FusionAppsContentRepositoryExtApp_SHARED.Reason oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: The credential with map EssCentralUIApp.oracle.apps.applcp.centralui and key anonymous#FusionAppsContentRepositoryExtApp_SHARED already exists..
    <Sep 30, 2011 5:06:30 PM IST> <Warning> <EJB> <BEA-012035> <The Remote interface method: 'public abstract void oracle.as.scheduler.RuntimeService.updateRequestParameter(oracle.as.scheduler.RuntimeServiceHandle,long,java.lang.String,java.lang.Object) throws oracle.as.scheduler.RequestNotFoundException,oracle.as.scheduler.ValidationException,oracle.as.scheduler.RuntimeServiceException' in EJB 'RuntimeServiceBean' contains a parameter of type: 'java.lang.Object' which is not Serializable. Though the EJB 'RuntimeServiceBean' has call-by-reference set to false, this parameter is not Serializable and hence will be passed by reference. A parameter can be passed using call-by-value only if the parameter type is Serializable.>
    <Sep 30, 2011 5:06:30 PM IST> <Warning> <EJB> <BEA-012035> <The Remote interface method: 'public abstract void oracle.as.scheduler.RuntimeService.setRequestParameter(oracle.as.scheduler.RuntimeServiceHandle,long,java.lang.String,java.lang.Object) throws oracle.as.scheduler.RequestNotFoundException,oracle.as.scheduler.ValidationException,oracle.as.scheduler.RuntimeServiceException' in EJB 'RuntimeServiceBean' contains a parameter of type: 'java.lang.Object' which is not Serializable. Though the EJB 'RuntimeServiceBean' has call-by-reference set to false, this parameter is not Serializable and hence will be passed by reference. A parameter can be passed using call-by-value only if the parameter type is Serializable.>
    <Sep 30, 2011 5:06:30 PM IST> <Warning> <EJB> <BEA-012035> <The Remote interface method: 'public abstract java.util.Enumeration oracle.as.scheduler.MetadataService.filterByPermission(oracle.as.scheduler.MetadataServiceHandle,java.util.Enumeration,oracle.as.scheduler.security.MetadataPermission$Action[]) throws oracle.as.scheduler.MetadataServiceException' in EJB 'MetadataServiceBean' contains a parameter of type: 'java.util.Enumeration' which is not Serializable. Though the EJB 'MetadataServiceBean' has call-by-reference set to false, this parameter is not Serializable and hence will be passed by reference. A parameter can be passed using call-by-value only if the parameter type is Serializable.>
    <Sep 30, 2011 5:06:31 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element web-app in the deployment descriptor in C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\tmp\_WL_user\jaxrs-framework-web-lib\829i9k\WEB-INF\web.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:40 PM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element web-app in the deployment descriptor in C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\tmp\_WL_user\jaxrs-framework-web-lib\829i9k\WEB-INF\web.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Sep 30, 2011 5:06:47 PM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application AppsLoggerService is not versioned.>
    log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.ChangeAwareClassLoader@c54366 finder: weblogic.utils.classloaders.CodeGenClassFinder@8001b annotation: consoleapp@console.
    log4j: Trying to find [log4j.xml] using weblogic.utils.classloaders.GenericClassLoader@11c5bb0 finder: weblogic.utils.classloaders.CodeGenClassFinder@1d021b6 annotation: consoleapp@ class loader.
    log4j: Trying to find [log4j.xml] using ClassLoader.getSystemResource().
    log4j: Trying to find [log4j.properties] using context classloader weblogic.utils.classloaders.ChangeAwareClassLoader@c54366 finder: weblogic.utils.classloaders.CodeGenClassFinder@8001b annotation: consoleapp@console.
    log4j: Using URL [zip:C:/Oracle/MIDDLE~1/WLSERV~1.3/server/lib/consoleapp/webapp/WEB-INF/lib/console.jar!/log4j.properties] for automatic log4j configuration.
    log4j: Reading configuration from URL zip:C:/Oracle/MIDDLE~1/WLSERV~1.3/server/lib/consoleapp/webapp/WEB-INF/lib/console.jar!/log4j.properties
    log4j: Parsing for [root] with value=[WARN, stdout].
    log4j: Level token is [WARN].
    log4j: Category root set to WARN
    log4j: Parsing appender named "stdout".
    log4j: Parsed "stdout" options.
    log4j: Parsing for [org.apache.struts.validator] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category org.apache.struts.validator set to ERROR
    log4j: Handling log4j.additivity.org.apache.struts.validator=[null]
    log4j: Parsing for [com.bea.console.utils.MBeanUtils] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.utils.MBeanUtils set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.utils.MBeanUtils=[null]
    log4j: Parsing for [com.bea.console.utils.ConsoleMessagesBackingFile] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.utils.ConsoleMessagesBackingFile set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.utils.ConsoleMessagesBackingFile=[null]
    log4j: Parsing for [org.apache.beehive.netui.pageflow.internal.AdapterManager] with value=[FATAL].
    log4j: Level token is [FATAL].
    log4j: Category org.apache.beehive.netui.pageflow.internal.AdapterManager set to FATAL
    log4j: Handling log4j.additivity.org.apache.beehive.netui.pageflow.internal.AdapterManager=[null]
    log4j: Parsing for [org.apache] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category org.apache set to ERROR
    log4j: Handling log4j.additivity.org.apache=[null]
    log4j: Parsing for [com.bea.console.actions.BaseConsoleAction] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.actions.BaseConsoleAction set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.actions.BaseConsoleAction=[null]
    log4j: Parsing for [com.bea.console.actions] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.actions set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.actions=[null]
    log4j: Parsing for [com.bea.console.actions.messages.MessagesAction] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.actions.messages.MessagesAction set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.actions.messages.MessagesAction=[null]
    log4j: Parsing for [com.bea.console.utils.MBeanChangeManager] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.utils.MBeanChangeManager set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.utils.MBeanChangeManager=[null]
    log4j: Parsing for [org.apache.beehive.netui.pageflow.scoping.internal] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category org.apache.beehive.netui.pageflow.scoping.internal set to ERROR
    log4j: Handling log4j.additivity.org.apache.beehive.netui.pageflow.scoping.internal=[null]
    log4j: Parsing for [com.bea.console.utils] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.utils set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.utils=[null]
    log4j: Parsing for [com.bea.console.internal] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.internal set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.internal=[null]
    log4j: Parsing for [com.bea.console.utils.MasterControlProgram] with value=[ERROR].
    log4j: Level token is [ERROR].
    log4j: Category com.bea.console.utils.MasterControlProgram set to ERROR
    log4j: Handling log4j.additivity.com.bea.console.utils.MasterControlProgram=[null]
    log4j: Finished configuring.
    <Logger> <error> ServletContainerAdapter manager not initialized correctly.
    <MBeanAttributeInfoMappingMetaData> <<init>> No annotation should be put on attribute mutator parameter "public abstract void oracle.adf.mbean.share.connection.ess.EssConnectionMXBean.setRequestFileDirectory(java.lang.String)".
    <MBeanAttributeInfoMappingMetaData> <<init>> No annotation should be put on attribute mutator parameter "public abstract void oracle.adf.mbean.share.connection.ess.EssConnectionMXBean.setFilePersistenceMode(java.lang.String)".
    <ADFContext> <getCurrent> Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST
    <null> <null> Namespace mapping for "/oracle/webcenter/lifecycle/importexport" is overridden by namespace mapping for "/oracle/webcenter/lifecycle"; the first mapping is not used.
    <null> <null> Namespace mapping for "/oracle/webcenter/lifecycle/importexport" is overridden by namespace mapping for "/oracle/webcenter/lifecycle"; the first mapping is not used.
    <null> <null> Namespace mapping for "/oracle/webcenter/lifecycle/importexport" is overridden by namespace mapping for "/oracle/webcenter/lifecycle"; the first mapping is not used.
    <null> <null> Namespace mapping for "/oracle/webcenter/lifecycle/importexport" is overridden by namespace mapping for "/oracle/webcenter/lifecycle"; the first mapping is not used.
    INFO: Found persistence provider "org.eclipse.persistence.jpa.PersistenceProvider". OpenJPA will not be used.
    INFO: Found persistence provider "org.eclipse.persistence.jpa.PersistenceProvider". OpenJPA will not be used.
    <EclipseLinkLogger> <basicLog> 2011-09-30 17:07:25.272--ServerSession(13572820)--PersistenceUnitInfo ServiceFrameworkPUnit has transactionType RESOURCE_LOCAL and therefore jtaDataSource will be ignored
    <ADFContext> <getCurrent> Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST
    <LoggerHelper> <log> Cannot map nonserializable type "interface oracle.adf.mbean.share.config.runtime.resourcebundle.BundleListType" to Open MBean Type for mbean interface oracle.adf.mbean.share.config.runtime.resourcebundle.AdfResourceBundleConfigMXBean, attribute BundleList.
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmnls.oracle.com/oracle/apps/fnd/applcore/profiles/profileService/}ProfileService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmnls.oracle.com/oracle/apps/fnd/applcore/profiles/profileService/}ProfileService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {oracle/apps/topologyManager/model/applicationModule/common/}TopologyEndPointService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {oracle/apps/topologyManager/model/applicationModule/common/}TopologyEndPointService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmnls.oracle.com/oracle/apps/fnd/applcore/trees/service/}TreeService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmnls.oracle.com/oracle/apps/fnd/applcore/trees/service/}TreeService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmlns.oracle.com/apps/fnd/applcore/common/}ApplSessionService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmlns.oracle.com/apps/fnd/applcore/common/}ApplSessionService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmnls.oracle.com/oracle/apps/fnd/applcore/trees/service/}TreeNodeService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmnls.oracle.com/oracle/apps/fnd/applcore/trees/service/}TreeNodeService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmlns.oracle.com/oracle/apps/fnd/applcore/flex/deployment/service/model/}FlexDeploymentService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmlns.oracle.com/oracle/apps/fnd/applcore/flex/deployment/service/model/}FlexDeploymentService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmnls.oracle.com/oracle/apps/fnd/applcore/trees/service/}TreeStructureService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmnls.oracle.com/oracle/apps/fnd/applcore/trees/service/}TreeStructureService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmlns.oracle.com/topologyManager/endpoint/}TopologyEndPointService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmlns.oracle.com/topologyManager/endpoint/}TopologyEndPointService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmlns.oracle.com/topologyManager/}ProvisionConfigurationService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmlns.oracle.com/topologyManager/}ProvisionConfigurationService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmlns.oracle.com/apps/fnd/applcore/log/service/}AppsLoggerService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmlns.oracle.com/apps/fnd/applcore/log/service/}AppsLoggerService
    <ConnectionsRuntimeMXBeanImpl> <registerBean> Failed to create connection for {http://xmlns.oracle.com/topologyManager/provision/}ProvisionConfigurationService
    <ConnectionsRuntimeMXBeanImpl> <configObjectReloaded> Failed to create connection for {http://xmlns.oracle.com/topologyManager/provision/}ProvisionConfigurationService
    <ADFContext> <getCurrent> Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST
    <ADFContext> <getCurrent> Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST
    <ADFContext> <getCurrent> Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST
    <ADFContext> <getCurrent> Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST
    <Sep 30, 2011 5:08:10 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Sep 30, 2011 5:08:10 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00012. Log messages will continue to be logged in C:\JDeveloper\system11.1.1.5.37.61.08\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Sep 30, 2011 5:08:10 PM IST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Sep 30, 2011 5:08:10 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Sep 30, 2011 5:08:10 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Sep 30, 2011 5:08:11 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[5]" is now listening on 0:0:0:0:0:0:0:1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Sep 30, 2011 5:08:11 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[4]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Sep 30, 2011 5:08:11 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on fe80:0:0:0:7489:5bb:3c11:f111:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Sep 30, 2011 5:08:11 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:0:100:7f:fffe:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Sep 30, 2011 5:08:11 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on fe80:0:0:0:0:5efe:a0a:a30:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Sep 30, 2011 5:08:11 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.10.10.48:7101 for protocols iiop, t3, ldap, snmp, http.>
    Anybody knows whats wrong with this ? Though the Weblogic Server manages to run its quite slow and even while wokring on the project the JDevleoper randomly throws several exceptions

    Hi,
    sorry, but this forum cannot assist in issues that include Oracle Fusion Applications as we don't have the same JDeveloper version publicly available.
    Frank

  • Issues with JDeveloper 11.1.2.1.0

    Hi all,
    I'm using JDeveloper 11.1.2.1.0 version
    i am facing the below three issues with the latest version
    Recently i had migrated from 11.1.1.4.0 to 11.1.2.1.0
    1) deployed application in integrated server and then changed the '.jspx/.jsff' content if i give save, it will update the file in the deployed application in the integrated weblogic and everything works fine. (I can see the updates immediately in the application).
    When I updated a .java file, after compiling, it has shown "Redefined all recompiled classes that are loaded in the debuggee process"
    which means the application on the integrated weblogic server is updated too, however, when I try clicking the page, it has shown NPE(please look at below error message )
    Just hope to ask if manually undeploy/deploy the whole application is needed after updating a .java (class) file or it's just some configuration issue?
    Error 500--Internal Server Error
    java.lang.NullPointerException
         at java.io.File.(File.java:222)
         at oracle.jsp.runtimev2.JspServlet.initPageTable(JspServlet.java:913)
         at oracle.jsp.runtimev2.JspServlet.init(JspServlet.java:449)
         at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
         at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
         at weblogic.servlet.internal.StubLifecycleHelper.(StubLifecycleHelper.java:48)
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
         at weblogic.servlet.internal.ServletStubImpl.checkForReload(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:240)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:546)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at oracle.adfinternal.view.faces.config.rich.RecordRequestAttributesDuringDispatch.dispatch(RecordRequestAttributesDuringDispatch.java:44)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:167)
         at com.sun.faces.application.view.JspViewHandlingStrategy.executePageToBuildView(JspViewHandlingStrategy.java:363)
         at com.sun.faces.application.view.JspViewHandlingStrategy.buildView(JspViewHandlingStrategy.java:154)
         at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.buildView(ViewDeclarationLanguageFactoryImpl.java:341)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:982)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:334)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:232)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:313)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    2)In ui fragment if i create binding for the component or method action by default it is not apending respective scope although i had declared it in BTF
    this feature is available in 4.0 but it is missing in latest version
    3) when i maximize docable windows its happening correctly but in case of minimization reshuffling is happening and it setting to default configurations of jdeveloper but what ever i had customized i was not able to hold,in 4.0 its working fine
    do i need to configure some settings in jdevloper or these are known issues with latest jdeveloper version..?
    Thanks a lot!
    Bhargav K

    hi rakesh,
    i am getting below error if i do ctrl+f9 after making some change in java file eg: adding some code inside a method.
    hi experts why this redefinition of java classes is not available in integrated server instance...?
    Error 500--Internal Server Error
    java.lang.ClassCastException: oracle.adfinternal.view.faces.webapp.rich.RichWindowManagerFactory$WindowIdProviderAdapter cannot be cast to org.apache.myfaces.trinidad.event.WindowLifecycleListener
         at oracle.adfinternal.view.faces.webapp.rich.RichWindowManagerFactory$ApplicationWindowListeners.processWindowLifecylce(RichWindowManagerFactory.java:244)
         at oracle.adfinternal.view.faces.webapp.rich.RichWindowManager._fireWindowLifecycleEvent(RichWindowManager.java:496)
         at oracle.adfinternal.view.faces.webapp.rich.RichWindowManager._handleWindowOpened(RichWindowManager.java:539)
         at oracle.adfinternal.view.faces.webapp.rich.RichWindowManager.renderLoopbackPage(RichWindowManager.java:946)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:110)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Thanks a lot!
    Bhargav K

  • Deploy issue from JDeveloper 10.1.3.5 to OAS 10.1.2

    I have written an application using ADF on JDeveloper 10.1.3.5 and need to deploy it to our OAS 10.1.2. I have run the adfinstaller on the linux server to upgrade the ADF libraries to the correct versions, updated the web.xml files to have the correct versions, changed to J2SE 1.4.2_19 for the application and have still got deployment issues.
    Error
    An error occurred while redeploying application "FormsSiebelIntegration". See base exception for details.
    Resolution:
    See base exception for details.
    Base Exception:
    java.lang.UnsupportedClassVersionError
    com/sun/faces/application/ApplicationAssociate (Unsupported major.minor version 49.0). com/sun/faces/application/ApplicationAssociate (Unsupported major.minor version 49.0)
    Removing the jsf-impl.jar file allows the application to deploy, but when running on the app server I get the following errors:
    OracleJSP: oracle.jsp.parse.JspParseException:
    /codename.jspx: Line # 6, <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces" xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
    Help! I'm starting to have total mind block as to what to do next.
    Error: Unable to load taghandler class: http://java.sun.com/jsf/html

    I had already applied all of this before trying to deploy.
    The error seems to be a versioning error in the jsf-impl.jar file as the ApplicationAssociate class is found there. I have changed the JDK and J2EE to 1.4.2 and 1.3 respectively, rebuilt everything, updated all the settings to the right versions for 10.1.2 but it still keeps failing on the deploy.

  • Issue with Jdeveloper 11.1.1.2 while Running ADF Application - Reg

    Hi All,
    We are facing an issue while running an application in our Jdeveloper version 11.2 . The error is as follows :
    oracle.rc.asadapter.weblogic.context.spi.AppDeploymentProvider$1: Cannot establish connection.
         at oracle.rc.asadapter.weblogic.context.spi.AppDeploymentProvider.listBindingsImpl(AppDeploymentProvider.java:109)
         at oracle.rc.asadapter.context.spi.AbstractContextProvider.listBindings(AbstractContextProvider.java:133)
         at oracle.rc.asadapter.context.spi.DefaultMutableAppServerContext$ContextProviderSupport$3.method(DefaultMutableAppServerContext.java:384)
         at oracle.rc.asadapter.context.spi.DefaultMutableAppServerContext$ContextProviderSupport$MethodCall.invoke(DefaultMutableAppServerContext.java:421)
         at oracle.rc.asadapter.context.spi.DefaultMutableAppServerContext$ContextProviderSupport.listBindings(DefaultMutableAppServerContext.java:381)
         at oracle.rc.asadapter.context.spi.DefaultMutableAppServerContext$ContextProviderSupport.access$500(DefaultMutableAppServerContext.java:314)
         at oracle.rc.asadapter.context.spi.DefaultMutableAppServerContext.localListBindings(DefaultMutableAppServerContext.java:207)
         at oracle.rc.asadapter.context.spi.AbstractEventDirContext.listBindings(AbstractEventDirContext.java:185)
         at oracle.adf.rc.spi.jndi.AbstractDirContext.listBindings(AbstractDirContext.java:214)
         at oracle.rc.asadapter.context.spi.DefaultAppServerManageableContext.getManageables(DefaultAppServerManageableContext.java:58)
         at oracle.jdeveloper.asnav.nodes.DefaultManageableFolder.loadChildren(DefaultManageableFolder.java:327)
         at oracle.jdeveloper.asnav.nodes.DefaultManageableFolder$4.run(DefaultManageableFolder.java:288)
    Caused by: oracle.rc.asadapter.connection.ConnectionException: Cannot establish connection.
         at oracle.rc.asadapter.weblogic.connection.spi.Weblogic10Jsr160Provider.getPresentation(Weblogic10Jsr160Provider.java:73)
         at oracle.rc.asadapter.connection.AppServerConnectionImpl$PM.getPresentation(AppServerConnectionImpl.java:171)
         at oracle.rc.asadapter.weblogic.connection.spi.Weblogic10ServerMBeanModelImpl.getDomainRuntimeService(Weblogic10ServerMBeanModelImpl.java:59)
         at oracle.rc.asadapter.weblogic.context.spi.AppDeploymentProvider.listBindingsImpl(AppDeploymentProvider.java:71)
         ... 11 more
    Caused by: java.io.IOException
         at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:187)
         at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:81)
         at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:338)
         at oracle.rc.asadapter.weblogic.connection.spi.Weblogic10Jsr160Provider.getPresentation(Weblogic10Jsr160Provider.java:67)
         ... 14 more
    Caused by: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://127.0.0.1:7101: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection refused: connect; No available router to destination]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:40)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:783)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:365)
         at weblogic.jndi.Environment.getContext(Environment.java:315)
         at weblogic.jndi.Environment.getContext(Environment.java:285)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:169)
         ... 17 more
    Caused by: java.net.ConnectException: t3://127.0.0.1:7101: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection refused: connect; No available router to destination
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:216)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
         at weblogic.jndi.WLInitialContextFactoryDelegate$1.run(WLInitialContextFactoryDelegate.java:344)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:339)
         ... 25 more
    Caused by: java.rmi.ConnectException: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection refused: connect; No available router to destination
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:464)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:315)
         at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:251)
         at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:194)
         at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238)
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:200)
         ... 31 more
    Pointers in resolving this issue would help us a lot.
    Regards,
    Ramnath
    Edited by: Ramanatha Sharma on Aug 24, 2010 3:22 PM

    Hi,
    We have remove the file which you have specified ..but still having the issue..when we try to start the Integrated WLS server for the Jdev.Changed my subject line also..
    [Waiting for the domain to finish building...]
    [03:25:40 PM] Creating Integrated Weblogic domain...
    [03:26:25 PM] Error processing Integrated Weblogic domain:The Server Instance cannot be started because the Integrated Weblogic domain was not built successfully.
    The Server Instance cannot be started because the Integrated Weblogic domain was not built successfully.
    Regards,
    Ramnath

  • JDBC Data Sources: Potential Issue with JDeveloper 10.1.3.4

    I think I found a bug or issue with the latest JDeveloper 10.1.3.4 release when using JDBC Data Sources on the Embedded OC4J container.
    To state the issule bluntly, If I use a JDBC Data Source in an ADF Faces application, I get the following error on the screen when I run my application if I create a simple page using a Form layout for database data:
    [http://cs.uwindsor.ca/~ruston7/jdbcError.jpg]
    Or if I use a simple drag and drop ADF Faces Table:
    javax.faces.el.PropertyNotFoundException: Error testing property '<<FIRST_FIELD_ON_THE_PAGE>>' in bean of type null
        at com.sun.faces.el.PropertyResolverImpl.isReadOnly(PropertyResolverImpl.java:274)
        at oracle.adfinternal.view.faces.model.FacesPropertyResolver.isReadOnly(FacesPropertyResolver.java:124)
        at com.sun.faces.el.impl.ArraySuffix.isReadOnly(ArraySuffix.java:236)
        at com.sun.faces.el.impl.ComplexValue.isReadOnly(ComplexValue.java:209)
        at com.sun.faces.el.ValueBindingImpl.isReadOnly(ValueBindingImpl.java:266)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:211)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.FormElementRenderer.renderAsElement(FormElementRenderer.java:155)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.getLabelFor(InputLabelAndMessageRenderer.java:53)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer$Label.getForId(LabelAndMessageRenderer.java:500)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.OutputLabelRenderer.encodeAll(OutputLabelRenderer.java:69)
        at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.delegateRenderer(CoreRenderer.java:281)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer.encodeAll(LabelAndMessageRenderer.java:123)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.encodeAll(InputLabelAndMessageRenderer.java:94)
        at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)
        at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)
        at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:246)When I change my Application Module connection to a JDBC URL, this all works perfectly. Also, everything works fine when I deploy to our Oracle AS 10.1.3 application servers.
    I also tried this on a different computer using a fresh install of JDeveloper just to make sure that the copy of JDeveloper that I downloaded didn't have a fluke in it.
    Thanks!

    M. Ruston,
    It must be something on your side. i just tried the same thing using the employees table from the HR sample schema (it has a date column). It works with JDBC URL and datasource both.
    Just out of curiosity - if you look at the properties for your Business Components project at the business components section, what does it show for the SQL Flavor and Type Map?
    John

  • Packaging Issue in jdeveloper

    Hi,
    I have created a build.xml for my project through Jdeveloper's "Buildfile from Project" option. I am using ojdeploy for packaging.
    I have created a new Deployment profile for my project (WAR profile) and using the ant target "all" to compile and deploy my profile.
    This creates a WAR file, but i am unable to see the pagedef files packaged in the WAR file.
    If i use the Default deployment profile created by Jdeveloper, i can see the pagedef files.
    Can anyone help?
    Thanks
    Ajay

    The issue is resolved now.
    The adfmsrc folder where the pagedef files are present are not copied to the classes directory if you use the build.xml generated by Jdeveloper.
    So you should manually add the <copy> target for this folder.
    Thanks
    Ajay

  • Issue with Jdeveloper 11g R1

    Hi All,
    I am using Jdeveloper 11.1.1.6.0 version installed in Windows 7.
    The problem i am facing is - any changes made in my application is not reflecting. I am able to generate the EAR file successfully and able to deploy to the weblogic server successfully. But when i run the application its showing up the previous application and my recent changes are not reflected.
    I have done following to resolve it. But no luck.
    1) closed the jdeveloper.
    2) uninstalled jdeveloper.
    3) Removed the folder "c:\oracle\Middleware" . so that it gets created again.
    4) Removed the folder "<myuserprofile>\appdata\roaming\jdeveloper". so that it gets created again.
    5) Installed Jdeveloper
    6) Increased memory of c:\oracle\Middleware\jdeveloper \jdev\bin\jdev.conf from -XX:MaxPermSize=256M to -XX:MaxPermSize=512M
    7) Increased memory of c:\oracle\Middleware\jdeveloper\ide\bin\ide.conf from -Xmx640M to -Xmx925M
    8) Restarted the system.
    9) Opened Jdeveloper.
    10) Added the application to the Jdeveloper
    11) Built the application and deployed to the server.
    12) Tested the application
    But its still showing up the old application.
    Somewhere the data is getting picked up from the previous application.
    Can any one quickly help me and make me resolve the issue please :(
    Thanks,
    Sneha

    Vinay,
    After undeploying the application, checked in the weblogic console -> deployment. My application does not exists. Hence no issue in this.
    Timo,
    Removed all the "classes" folders of all the projects in the application, rebuild and deployed.
    But no luck. The problem retained.
    Now, just trying to restart the weblogic server. Do you recommend anything else that need to be done at the weblogic server?
    And, I have one question. Can you please explain me what is the exact impact of the "CleanAll" and "MakeAll" options under the menu item "Build"? and when exactly we have to go for it?
    Sneha
    Edited by: 1002482 on May 23, 2013 7:56 AM
    Edited by: 1002482 on May 23, 2013 8:00 AM
    Edited by: 1002482 on May 23, 2013 8:10 AM
    Edited by: 1002482 on May 23, 2013 8:16 AM

  • Windows 7 compatibility issue with JDeveloper 10.1.3.3

    I am using JDeveloper 10.1.3.3 on Windows 7 Professional(32-bit OS).
    Whenever I start JDev, I get message that the *"color scheme has been changed to Windows 7 basic"*. Again, when I scroll the development pane/structure pane/application navigator pane, the fonts appears to be broken and the problem gets corrected :
    1) When I minimise and then maximise the JDev, everything seems to be correct.
    2) When I click on the respective panes
    How can I resolve it or rather get a workaround ?
    Regards
    Rohit

    Check out this thread for solutions: The specified item was not found.
    Have you tried searching the forum for similar issues? ?:|

  • Reformat Problem on Jdeveloper 11.1.2.0.0 (11gR2)

    Hi All,
    I am using the Jdeveloper 11.1.2.0.0.
    I am trying below option in Jdeveloper 11.1.2.0.0.
    Tools --> Preference -->Code Editor --> Code Style -->Right side Edit Buuton --> Naming Tab -->Parameter Prefix --> p
    Above option when ill reflect into our java code ?.
    While reformating the file,that change is reflect?
    Suppose my paramerter is display(String name) means ,after reformat automatically change parameter like this display(String pname) ?
    Thanks,
    Rengasamy.A
    Edited by: Vass on Nov 24, 2011 2:59 AM

    Hi Timo,
    Thanks for your reply. affects new code means when i create a new method that time ?
    That time how it ill be reflect ? it showing any error or warning?
    Thanks,
    Vass Lee

  • Low-level Reformatting Issue

    Thanks for reading my post.
    Summary: I'm trying to do a low-level reformat of two identical drives. One took 2 hours to complete and the other says it will take 14 hours... and it's already been going for 3 hours. Why the difference?
    *Longer version:* I have two identical drives from the same manufacturer that I use in RAID-0 for Photoshop and Video scratch. A few months ago, one of the drives started to act up and I got an I/O error message. I broke up the RAID and reformatted the drives but never put them back into RAID; I wound up using them individually as short term storage drives. After I reformatted them, they both passed drive tests and there has been no problems since.
    I usually do computer house-keeping over the holidays and decided to put the two drives back into RAID-0 for a fast scratch disk (I don't store longterm data on them). I have a big project coming up and need a fast scratch disk. Anyway, I decided to zero out the disks to make sure any bad blocks that have deveoped over time are mapped out. The first drive zeroed out in a bit over 2 hours. The second has been going for 3 hours and it says that it's going to take 14 hours more! I thought that maybe I selected the more advanced reformat that requires multiple passes so I stopped the formatting to double check. Nope, it's set on basic one pass zeros.
    Sorry for the long post, but does anyone know what might be going on here? Do you think the drive is defective? I ran a simple reformat and drive check before I started the low level format and the drive passed. Even if it passes the reformat, I'm left wondering if there is a major issue with the drive that isn't showing up in tests. 16 hours++ to zero out a 320GB drive is insane! Especially when the other exact model drive only took 2 hours.
    Thanks for any insight you can provide!

    I like to see:
    What you used (Apple DU?) and zero a drive is not really LLF.
    Make/model etc of the drive(s).
    The best way to map out or recertify is with the vendor's own Windows utility, sorry; or, I've read good things about freeware SMART Utility for finding and mapping out weak sectors (they aren't black/white yes/no but can require or exceed threshold for I/O retries and errors).
    Drive Tests: don't rely on Apple.
    Zero-all 'may' but does not really guarantee, and often fails, at mapping out. 7-way write erase is better.
    If a drive is taking too long or excessive, I'd just junk it or RMA and get a new pair (Samsung F3, SSD, V-Raptor....)

  • Issue with Jdeveloper when import the extension for Code Compliance Inspector

    With Jdeveloper 11.1.1.7 oracle provides a new feature CCI.
    I have imported the CCI in my jdeveloper
    but when i try to check any of the code a pop up comes up with the below error
    org.apache.xerces.dom.ElementNSImpl.setUserData(Ljava/lang/String;Ljava/lang/Object;Lorg/w3c/dom/UserDataHandler;)Ljava/lang/Object;
    Please let me know if any one have faced this issue earlier and have a resolution.

    I am having the same issue. I have imported Code Compliance Inspector and when I try to run it I am getting the following error,
    org.apache.xerces.dom.ElementNSImpl.setUserData(Ljava/lang/String;Ljava/lang/Object;Lorg/w3c/dom/UserDataHandler;)Ljava/lang/Object;
    I am having the same problem on Jdeveloper on my host and on Jdeveloper inside an Oracle Linux Virtual Machine  as well.  Has anyone else experienced this? From what I ahve read so far, when this error appears in other applications it appears to be something to do with Xerces causing a classpath confilict

  • JSF project migration issue in jdeveloper R1

    Dear Experts,
    We are trying to migrate an existing JSF project into JDeveloper 11g R1. We are having some compilation errors which we are trying to resolve.
    The doubt we have is that out project used jsf-api.jar and jsf-impl.jar however when I select JSF library in JDeveloper it uses some glassfish jsf jars. Is that the reason for the issues?
    Please share your valuable inputs.

    Some of the methods that were used from JSF jars used are not available in glassfish jars.
    For e.g. com.sun.faces.util.Util.getValueBinding is not available.
    Need your expert advice should we continue fixing the issues and use the jars available by default or is it better to use the jsf jars. However, in case we upgrade the jsf version we may face certain issues and we are aware of the scenario.
    Thanks in advance.

Maybe you are looking for

  • Cancel Vendor Consigment Goods Issue document

    We are in the process of implementing Vendor Consignment and are unsure about one piece of the process.  This is the scenario: a) end user draws 2 parts out of Consigned stock b) MRKO will create a liability to the vendor c) end user only needed one

  • IWeb Install Question

    Hello. I was wondering if I can install all the features of iLife EXCEPT iMovie, and have iWeb still work? I want to use it and I also want to use iPhoto and the new iDVD. But I don't want to install or use iMovie because I heard that it's much worse

  • Saprouter configuration

    Hi, I am getting follwing error C:\saprouter\ntintel>sapgenpse get_pse -v -r certreq -p local.pse "CN=solman, OU =0000731019, OU=SAProuter, O=SAP,C=DE" Got absolute PSE path "C:/saprouter/ \local.pse". Please enter PIN: Please reenter PIN: Supplied d

  • Retrieving dynamic textfield values

    hi all, i have a frame that contains a button.On clicking the button i create a textfield.Since i am creating it dynamically, i cannot get the value entered into it using "txtfieldobj.getText()" method.Is there any other way to get the value in the t

  • Do you deliver to Puerto Rico?

    I am interested in this MacBook Pro 13", and I want it diliver to Puerto Rico is it posible or can I pick it up at an apple store. 2.4GHz Dual-core Intel Core i5 8GB 1333MHz DDR3 SDRAM - 2x4GB 500GB Serial ATA Drive @ 5400 rpm SuperDrive 8x (DVD±R DL