Topic  'resource-env-ref-mapping'

I get the following exception:
javax.naming.NamingException: Error creating context: No resource named 'XXXX/WorkflowControllerTopic' found in resource provider 'QT_Topic'
orion-ejb-jar.xml:
<resource-env-ref-mapping name="jms/MyTopic"
location="java:comp/resource/QT_Topic/XXXX/MYTopic" />
What should I use for 'XXXX'? I've tried the following options
1) Topics
2) Topic
3) Queues
Regards,
Marteyn

Hello Sugu,
I've made a spelling mistake:
WorkflowContollerTopic vs WorkflowControllerTopic
This works:
java:comp/resource/QT_Topic/Topics/WorkflowContollerTopic
Therefore your 'Topics' solution is correct (Thanks!).
But now I've got a new problem:
ORA-06550: Regel 1, kolom 7:
PLS-00306: Onjuist aantal of type argumenten in aanroep naar 'AQ$_JMS_ENQUEUE_OBJECT_MESSAGE'..
ORA-06550: Regel 1, kolom 7:
PL/SQL: Statement ignored.
I've executed the following script (ignore the spelling error):
BEGIN
DBMS_AQADM.CREATE_QUEUE_TABLE(
Queue_table => 'QT_Topic',
Queue_payload_type => 'SYS.AQ$_JMS_MESSAGE',
multiple_consumers => true);
END;
EXEC DBMS_AQADM.CREATE_QUEUE(
'WorkflowContollerTopic','QT_Topic');
EXEC DBMS_AQADM.ADD_SUBSCRIBER(
'WorkflowContollerTopic', sys.aq$_agent('MDSUB', null, null));
EXEC DBMS_AQADM.START_QUEUE ('WorkflowContollerTopic');
Regards,
Marteyn Heijlaerts

Similar Messages

  • Orion-web.xml and resource-env-ref-mapping correct usage

    What happened to resource-env-ref-mapping element in orion-web.xml? I have a 9.0.4.1 server running several .EAR files containing web applications using this attribute to configure JMS related items. But when deploying the .EAR to newer versions (9.0.5.2) of the server this attribute doesn't appear to be valid any longer?
    Here it is in the 9.0.4 documentation:
    http://strogoff.unex.es/oradoc/form_y_report_10g/web.904/b10322/apdx_a.htm
    Any help would be appreciated?

    I should have been more clear about the issue. The error only occurs when running inside the embedded OC4J container of JDeveloper 10.1.2 build 1913. The error does NOT occur in JDeveloper 9.0.3. The application also runs fine when deployed to a 10.1.2 Enterprise application server. The error only occurs in JDeveloper.
    The following error occurs when validating my orion-web.xml file. The entry is:
    orion-web.xml:
    <orion-web-app>
    <resource-ref-mapping name="jms/mQueueConnectionFactory" location="jms/matchingQueueConnectionFactory"/>
    <resource-env-ref-mapping name="jms/mQueue" location="jms/matchingQueue"/>
    </orion-web-app>
    web.xml
    <resource-env-ref>
    <resource-env-ref-name>jms/mQueue</resource-env-ref-name>
    <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
    </resource-env-ref>
    java.lang.IllegalArgumentException: Unrecognized parent-elem combination: interface oracle.jdeveloper.xml.oc4j.war.OrionWebApp - resource-env-ref-mapping
         at oracle.javatools.xml.bind.XMLBinding.throwUnrecognizedElem(XMLBinding.java:127)
         at oracle.jdeveloper.xml.j2ee.war.WebAppBinding.elem2intImpl(WebAppBinding.java:637)
         at oracle.javatools.xml.bind.XMLBinding.elem2int(XMLBinding.java:104)
         at oracle.javatools.xml.bind.XMLBinding.insertBetween(XMLBinding.java:88)
         at oracle.javatools.xml.bind.BindingContext.insertNewElement(BindingContext.java:121)
         at oracle.javatools.xml.bind.BindingContext.insertElem(BindingContext.java:95)
         at oracle.javatools.xml.bind.BindingContext.setElement(BindingContext.java:71)
         at oracle.javatools.xml.bind.SetImpl.callSetterForUniqueElem(SetImpl.java:66)
         at oracle.javatools.xml.bind.SetImpl.callSetter(SetImpl.java:57)
         at oracle.javatools.xml.bind.SetImpl.invoke(SetImpl.java:26)
         at oracle.javatools.xml.bind.ElementProxy.invoke(ElementProxy.java:35)
         at $Proxy10.setWebApp(Unknown Source)
         at oracle.jdevimpl.runner.oc4j.Oc4jWorkspaceConfig.ensureLocalPageReposRootIsSet(Oc4jWorkspaceConfig.java:633)
         at oracle.jdevimpl.runner.oc4j.Oc4jWorkspaceConfig.transmogrifyConfigFiles(Oc4jWorkspaceConfig.java:269)
         at oracle.jdevimpl.runner.oc4j.Oc4jWorkspaceConfig.configureAll(Oc4jWorkspaceConfig.java:114)
         at oracle.jdevimpl.runner.oc4j.Oc4jStarter.preStart(Oc4jStarter.java:618)
         at oracle.jdevimpl.runner.oc4j.Oc4jStarter.start(Oc4jStarter.java:268)
         at oracle.ide.runner.RunProcess.startTarget(RunProcess.java:756)
         at oracle.jdeveloper.runner.JRunProcess.startTarget(JRunProcess.java:461)
         at oracle.ide.runner.RunProcess$2.run(RunProcess.java:699)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

  • Resource-env-ref

    Hi,
              in a servlet's war.xml I define a resource-env reference. But how do I
              specify that in the assiciated weblogic.xml?
              web.xml:
              <resource-env-ref>
                   <resource-env-ref-name>jms/EventTopic</resource-env-ref-name>
                   <resource-env-ref-type>javax.jms.Topic</resource-env-ref-type>
              </resource-env-ref>
              the dtd for weblogic.xml
              (http://www.bea.com/servers/wls610/dtd/weblogic-web-jar.dtd) only
              defines resource reference and ejb reference.
              <!ELEMENT reference-descriptor (resource-description*,
              ejb-reference-description*)>
              <!ELEMENT resource-description (res-ref-name, jndi-name)>
              <!ELEMENT ejb-reference-description (ejb-ref-name, jndi-name)>
              while the dtd for web.xml (http://java.sun.com/dtd/web-app_2_3.dtd) also
              defines resource-env-ref, resource-ref, env-entry, ejb-ref, ejb-local-ref:
              <!ELEMENT web-app (icon?, display-name?, description?, distributable?,
              context-param*, filter*, filter-mapping*, listener*, servlet*,
              servlet-mapping*, session-config?, mime-mapping*, welcome-file-list?,
              error-page*, taglib*, resource-env-ref*, resource-ref*,
              security-constraint*, login-config?, security-role*, env-entry*,
              ejb-ref*, ejb-local-ref*)>
              Having said that I just read the servlet-spec (2.3 pfd2, page 68), where
              only env-entry, ejb-ref and resource-ref are mentioned! weired ...
              "The env-entry element contains information to set up basic environment
              entry names relative to the java:comp/env context, the expected Java
              type of the environment entry value (the type of object returned from
              the JNDI lookup method), and an optional environment entry value. The
              ejb-ref element contains the information needed to allow a servlet to
              locate the home interfaces of a enter-prise bean. The resource-ref
              element contains the information needed to set up a resource factory."
              >>>
              >>>So defining a resource-env-ref is possibly not possible?!
              >>>Why are they then defined in the dtd?
              >>>
              For the log: my code is:
              Context myNamingContext = new javax.naming.InitialContext();
              System.out.println("NamingContext: "+myNamingContext);
              System.out.println("Event Topic" +
              myNamingContext.lookup("java:comp/env/jms/EventTopic").toString());
              and the Exception is:
              javax.naming.NameNotFoundException: Unable to resolve
              comp/env/jms/EventTopic/ Resolved: 'comp/env/jms'
              Unresolved:'EventTopic' ; remaining name ''
              Thanks for your help,
              Andreas Ebbert
              

    the quotes from "more servlets and java server pages":
    The resource-env-ref element declares an administered object associated with a resource. It
    consists of an optional description element, a resource-env-ref-name element (a JNDI name
    relative to the java:comp/env context), and a resource-env-type element (the fully qualified
    class designating the type of the resource), as below.
    <resource-env-ref>
    <resource-env-ref-name>
    jms/StockQueue
    </resource-env-ref-name>
    <resource-env-ref-type>
    javax.jms.Queue
    </resource-env-ref-type>
    </resource-env-ref>
    The resource-ref element declares an external resource used with a resource factory. It
    consists of an optional description element, a res-ref-name element (the resource manager
    connection-factory reference name), a res-type element (the fully qualified class name of the
    factory type), a res-auth element (the type of authentication used� Application or
    Container), and an optional res-sharing-scope element (a specification of the shareability of
    connections obtained from the resource� Shareable or Unshareable). Here is an example.
    <resource-ref>
    <res-ref-name>jdbc/EmployeeAppDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope
    </resource-ref>
    Hope it helps.

  • Use of resource-env-ref tag

    Hi,
    Can anybody tell me what is the use of the resource-env-ref tag. I am using resourec-ref tag where I have specified a jdbc datasource configuration. But I do not know what does resource-env-ref do? Does it add any extra feature to the resource-ref tag? I know the use of env-entry tag. Is it similar to env-entry tag?
    Please give an example.
    Thanking in advance.

    * <env-entry> - Environment entry, a single-value
    parameter that can be used to configure how the
    application will operate.
    * <resource-ref> - Resource reference, which is
    typically to an object factory for resources such as
    a JDBC DataSource, a JavaMail Session, or custom
    object factories
    * <resource-env-ref> - Resource environment
    reference, a new variation of resource-ref added in
    Servlet 2.3 that is simpler to configure for
    resources that do not require authentication
    information.Ok, u mean to say that i can use either resource-ref or resource-env-ref tag depending on whether i require authentication or not, right?
    Also, please tell me what does the web container do with these configurations? Does it load these resources at container start-up or it simply
    creates the environment where resources can be accessed through a name like, say java:comp/env/jdbc/MyDataSource where this is again mapped to a jndi name?
    I know that using this type of configuration helps make changes to the jndi name without recompiling our servlets.
    Also, could u please tell me can we use ejbs the same way as above (using resourec-ref or resource-env-ref tag) or I must use the ejb-ref tag. Since ejbs are also bound to jndi names, they should be accessible throught the above tags and not only through the ejb-ref tag.

  • Difference between resource-ref and resource-env-ref ?

    Hello,
    Can anyone tell me what the difference is between <resource-ref> and <resource-env-ref>? (in ejb-jar.xml)
    Thanks in advance,
    Julien Martin.

    Check out this URL. You will find out your answer.
    http://docs.sun.com/source/816-7156-10/agj2eres.html
    Thanks

  • resource-env-description can't be set in weblogic.xml

    hi guys , i've been troubled with this configuration problem. i am trying a very simple example to send messages from a servlet to a weblogic queue, but i cant configure the weblogic.xml properly. i've been reading a lot of information but i cant find it.:
    this is my web.xml
    <resource-ref>
              <res-ref-name>jms/ConnectionFactory1</res-ref-name>
              <res-type>javax.jms.QueueConnectionFactory</res-type>
              <res-auth>Container</res-auth>
              <res-sharing-scope>Shareable</res-sharing-scope>
         </resource-ref>
         <resource-env-ref>
              <resource-env-ref-name>jms/colaIN</resource-env-ref-name>
              <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
         </resource-env-ref>
         <resource-env-ref>
              <resource-env-ref-name>jms/colaOUT</resource-env-ref-name>
              <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
         </resource-env-ref>
    this work fine, but when i try to create the weblogic.xml , it doesn;t work:
    <weblogic-web-app>
         <reference-descriptor>
                   <resource-description>     
                        <res-ref-name>jms/ConnectionFactory1</res-ref-name>
                        <jndi-name>weblogic.jms.ConnectionFactory</jndi-name>
                   </resource-description>
         </reference-descriptor>
         <resource-env-description>
                        <res-ref-name>jms/colaIN</res-ref-name>
                        <jndi-name>weblogic.jms.Queue</jndi-name>
                   </resource-env-description>
    </weblogic-web-app>
    what am i doing wrong? . i try to set resource-env-description in weblogic-ejb-jar.xml but it didn't work either? some ideas?

    Is your workflow looking for publishing infrastructure to be turned on at site collection and site level?
    Is this a 2013 WF? is WF management service connected?
    Stacy Simpkins | MCSE SharePoint | www.sharepointpapa.com

  • Ejb-ref-mapping in orion-ejb.jar missing location attribute after deployment

    I have noticed that on several of my entity beans that after deployment the <ebj-ref-mapping location="JNDIName" name="LocalName"/> is missing the location attribute. This causes any attempts to lookup the EJBHome for that EJB to fail because the path to the EJBHome in JNDI cannot be found (obviously!). The problem is that this causes me to manually edit the application-deployment/<app>/<ejb.jar>/orion-ejb.zml after each deployment via the admin.jar. This seems like a bug with OC4J and I am wondering if Oracle is aware/doing something to fix this?
    I have noticed that the same problem exists for session beans, however, for some strange reason the EJBHomes can still be resolved in JNDI. In all cases the location in JNDI is different then the <ejb-ref-name> I used in the client EJB.
    Example being I have an entity bean at com.foo.Foo and the session bean uses lookup("java:comp/env/ejb/Foo") it is still able to find the EJB even though the orion-ejb.xml looses the location attribute. If the case is an entity bean referencing another entity bean in the same fashion I get an error because the location attribute is missing.

    If the 'location' value is same as the 'name' value, then even though the location attribute is missing, it is ok and should work. If they are not the same, then you should have defined the ejb-link element in your ejb-jar.xml when defining this ejb-ref and that would make the location attribute appear in the generated orion-ejb-jar.xml.
    If the referenced bean is from a different application (EAR), then you should have used the -parent option when deploying the application.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Kris Trujillo ([email protected]):
    I have noticed that on several of my entity beans that after deployment the <ebj-ref-mapping location="JNDIName" name="LocalName"/> is missing the location attribute. This causes any attempts to lookup the EJBHome for that EJB to fail because the path to the EJBHome in JNDI cannot be found (obviously!). The problem is that this causes me to manually edit the application-deployment/<app>/<ejb.jar>/orion-ejb.zml after each deployment via the admin.jar. This seems like a bug with OC4J and I am wondering if Oracle is aware/doing something to fix this?
    I have noticed that the same problem exists for session beans, however, for some strange reason the EJBHomes can still be resolved in JNDI. In all cases the location in JNDI is different then the <ejb-ref-name> I used in the client EJB.
    Example being I have an entity bean at com.foo.Foo and the session bean uses lookup("java:comp/env/ejb/Foo") it is still able to find the EJB even though the orion-ejb.xml looses the location attribute. If the case is an entity bean referencing another entity bean in the same fashion I get an error because the location attribute is missing.<HR></BLOCKQUOTE>
    null

  • "message-destination-ref-mapping" definition in EJB3.0 style annotation

    Hello,
    Here is how I used to define "resource-ref-mapping" and "message-destination-ref-mapping" in ejb 2.1
    <resource-ref-mapping
    location = "MQJMSRASubcontext/MyQCF"
    name = "jms/MQConnectionFactory"/>
    <message-destination-ref-mapping
    location = "MQJMSRASubcontext/MQQ"
    name = "jms/MQQQueueDestination"/>
    I want to do define these two properties in ejb3.0 using annotation. Any help will be much appreciated.
    Thanks,
    Mustafa

    Hello,
    Here is how I used to define "resource-ref-mapping" and "message-destination-ref-mapping" in ejb 2.1
    <resource-ref-mapping
    location = "MQJMSRASubcontext/MyQCF"
    name = "jms/MQConnectionFactory"/>
    <message-destination-ref-mapping
    location = "MQJMSRASubcontext/MQQ"
    name = "jms/MQQQueueDestination"/>
    I want to do define these two properties in ejb3.0 using annotation. Any help will be much appreciated.
    Thanks,
    Mustafa

  • RH9: Multiple Topics with the Same Map ID

    I'm trying to use the same Map ID with more than one topic, which seems logical to me as a process that contains multiple screens could open an overview of the process, but I get an error that "The map number is already in this project".
    I've tried manually editing the BSSCDefault.h file, but when I go back to RH the second topic is still showing the unique Map ID that I deleting.
    How can I bypass this? Thanks.
    One more thing: I just noticed that in the Edit Map IDs dialog box the Map ID and Topic Name columns use the same topic name (which also appears in the H file). This topic name also appears in the Page Title field of the TOC Properties dialog box, but the Link to field can have a different HTML filename. Is this ok?

    Hi,
    Make an overview topic and assign the map id to the overview topic instead of trying to add it to multiple topics.
    Greet,
    Willam

  • No location set for Topic resource MessageDrivenBean

    i get the following error while trying to run a message driven bean:
    Error deploying file:/E:/jdev1012_base/jdev/mywork/MDB/Model/classes/ homes: No location set for Topic resource MessageDrivenBean MessageDrivenEJB
    Error in application current-workspace-app: Error loading package at file:/E:/jdev1012_base/jdev/mywork/MDB/Model/classes/, Error deploying file:/E:/jdev1012_base/jdev/mywork/MDB/Model/classes/ homes: No location set for Topic resource MessageDrivenBean MessageDrivenEJB
    05/10/24 20:09:32 done.
    05/10/24 20:09:32 Error instantiating application 'current-workspace-app' at file:/E:/jdev1012_base/jdev/mywork/MDB/MDB-oc4j-app.xml: Error initializing ejb-module; Exception Error in application current-workspace-app: Error loading package at file:/E:/jdev1012_base/jdev/mywork/MDB/Model/classes/, Error deploying file:/E:/jdev1012_base/jdev/mywork/MDB/Model/classes/ homes: No location set for Topic resource MessageDrivenBean MessageDrivenEJB
    the bean is initializes after this error. but it seems to be not working.

    To develop Message Driven Beans, select EJB in the Component Palette, and select Message Driven Bean in Component Palette list. A UML diagram, and a Message Driven Bean node gets added. Select the Message Driven Bean node. A EJB Module Editor gets displayed. Select Enterprise JavaBeans>Message Driven Bean in the EJB Module Editor and configure a Message Driven Bean.

  • Resource-Exception while mapping

    Hi,
    I'm getting an error "com.sap.aii.utilxi.misc.api.ResourceException: Connection is invalid" ...
      <Trace level="3" type="T">Creating Java mapping com/sap/vv2/xi/mapping/OutboundMapping.</Trace>
      <Trace level="1" type="T">Connection is invalid.</Trace>
      <Trace level="1" type="T">com.sap.aii.utilxi.misc.api.ResourceException: Connection is invalid. at com.sap.aii.utilxi.sql.api.ReusableStatement.get(ReusableStatement.java:74) at com.sap.aii.utilxi.sql.api.ReusableStatement.bind(ReusableStatement.java:183) at com.sap.aii.utilxi.sql.api.AbstractStatement.bind(AbstractStatement.java:152) at
    and inside the SOAP-Header/ERROR the message is
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Mapping der Request-Message
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="MAPPING">RESOURCE_EXCEPTION</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Fehler beim Datenbankzugriff.</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    (translation:  <SAP:Stack>Error data base access </SAP:Stack> )
    Is it a database problem (e.g. tablespace full,...) or where can I check the reason?
    Thx
    Regards
    Wolfgang Hummel

    Hello,
    I think its related to memory problem, check the below thread.
    Resource Exception   -  Message mapping
    Best regards,
    raj.

  • Env-entry-mapping suppressed

    Hi,
    Did anyone try &lt;env-entry-mapping&gt; in orion-ejb-jar.xml? It seems that it is suppressed during deployment. The orion-ejb-jar.xml being generated into -deploymentDirectory place (specified or default) simply drops these mappings. The effect is that whatever had been specified in ejb-jar.xml prevails, with obvious, bad consequences.
    Besides, I think I read somewhere that Deployer-supplied orion-ejb-jar.xml would only be augmented with missing specifications. This to me implies that nothing should be removed from it. Perhaps, then, THIS IS A BUG.
    ORION TEAM: I'm running 9.0.3.0.0/NT. I'd appreciate your help and 'know-how', especially if you could offer something better than manually editing orion-ejb-jar.xml in -deploymentDirectory AFTER EACH SUCH TIME THE APPLICATION IS DEPLOYED!

    Avi!
    Of course, I had tried it before I wrote the question. I put the modified xml file into the application area. After that AS restarts OC4J instance. And then I find my xml without any changes I made! I tried to do the same thing from the AS console. The same!
    Leonid

  • env-entry-mapping element is removed during deployment process

    I overwrite the variable value defined in ejb-jar.xml by the one defined in orion-ejb-jar.xml using <env-entry-mapping> element. But after my appliocation has deployed I don't find this element in the application orion-ejb-jar.xml. Oracle AS just removes this element from the descriptor!
    ejb-jar.xml:
    <env-entry>
    <env-entry-name>server</env-entry-name>
    <env-entry-type>java.lang.String</env-entry-type>
    <env-entry-value>172.38.48.12</env-entry-value>
    </env-entry>
    orion-ejb-jar.xml:
    <session-deployment name="Inventory" max-instances="-1" location="Inventory">
    <env-entry-mapping name="server">dummy</env-entry-mapping>
    </session-deployment>
    Can anybode help?

    Avi!
    Of course, I had tried it before I wrote the question. I put the modified xml file into the application area. After that AS restarts OC4J instance. And then I find my xml without any changes I made! I tried to do the same thing from the AS console. The same!
    Leonid

  • Env-entry-mapping in orion-application-client not available in JNDI lookup

    I have an application client module in my EAR file that I've configured to auto-start.
    It has a few env-entry defined in it's application-client.xml.
    When I deploy the EAR file to OC4J 10.1.3, the application client module gets started and can access these env-entry properties from its JNDIContext.
    Now, comes the problem. During the deployment process, I edit the Deployment Plan, and change the env-entry property values, and then deploy the application.
    However, the application client module still gets the original values when it does the JNDI lookups of those env-entry names.
    I have checked to see that OC4J creates an orion-application-client.xml during deployment and it shows the env-entry-mapping elements with the updated values.
    Why is the JNDI lookup returning the values from application-client.xml and not the overriden values set in orion-application-client.xml?
    I have tried this on OC4J 10.1.3, as well as 10.1.3.1.0 - got same behavior.
    Is this a bug in OC4J? This seems to work fine with ejb modules, but not application client modules.
    Thanks,
    Kalpak

    Avi!
    Of course, I had tried it before I wrote the question. I put the modified xml file into the application area. After that AS restarts OC4J instance. And then I find my xml without any changes I made! I tried to do the same thing from the AS console. The same!
    Leonid

  • env-entry-mapping

    hi,
    i am using oracle application server 10g,
    when i am trying to override the values of more than one enviroment enteries in enterprise manager web module enviroment page /enviroment entries
    the following error appear:
    Commit Failed - Entity et="system";ei="0",et="application";ei="18",et="WebModule";ei="30",et="orion-web-app";ei="31",et="env-entry-mapping";ei="41"
    cannot have the same key values with its sibling entity et="system";ei="0",et="application";ei="18",et="WebModule";ei="30",et="orion-web-app";ei="31",et="env-entry-mapping";ei="42".
    Resolution: Check key values for the sibling entities.
    any ideas?

    Avi!
    Of course, I had tried it before I wrote the question. I put the modified xml file into the application area. After that AS restarts OC4J instance. And then I find my xml without any changes I made! I tried to do the same thing from the AS console. The same!
    Leonid

Maybe you are looking for

  • How can i delete messages that are saved on imessage

    Hi. I have an iPhone 5s (16gb). I have no storage left on my phone and for some reason whenever I try to send someone who has and who doesn't have an iPhone a message through iMessage, my message send but i don't receive any messages. When I click se

  • 'Space after' style not applying to text in 'preview in browser' (chrome) or export modes.

    Hi all, I seem to run into this issue everytime I have two paragraph style applied within one text container. If I include a heading and apply a paragraph style which includes 'space after' and then some text below with another style it does not appe

  • IPhoto isn't opening, help please

    First of all, I'm using a MacBook with OS 10.6.8 and my iPhoto is version 11 (9.2.3). I just get the spinning screen of iPhoto trying to load images. I've tried the command+option menu items and none of them have done anything. I did do a software up

  • Flash Game Problem

    I've posted in several forums looking for answers and have yet to receive a response.  I've had this problem for over a year and I've yet to figure out the cause. My problem: I have lag in flash games whenever I input a command (ie - push a key to do

  • Exicse Duty in trading

    Hi,           Can anybody help me to map these scenario....... Scenario:- Dealer purchases excisable goods, his item cost includes excise duty as he is not claiming any credits, when he make sale of these items he only collect Vat. Requirements is he