Causes of invalidated package

Hi,
I've found on the forums some information about why a package could become invalidated.
We are encountering the 'ORA-04068: existing state of packages has been discarded' error (see stack trace at the bottom of this message).
We get this error at random (not at a specific moment in time). And always with the same package.
I found on the forums that a cause could be:
- a view, used in the package, that gets renamed (this is not the case).
- package level variables (I can not check this myself. Our client, who runs the Oracle instance, is doing that now).
1. Are there any other causes of a package becomming invalid?
2. Related: does a synonym become invalid when it's underlying package is invalid, or can a synonym be invalid, while it's underlying package is not?
3. Can our client, who is reluctant in accepting the fact that the problem lies with their Oracle database (i.e. packages being invalidated), check the exact reason of the invalidation in more detail (logs, ...)?
Thanks in advance for any insights,
Vincent
Stack:
ORA-04068: existing state of packages has been discarded
ORA-04061: existing state of package body "MYCLIENT.THEPACKAGE" has been invalidated
ORA-04065: not executed, altered or dropped package body "MYCLIENT.THEPACKAGE"
ORA-06508: PL/SQL: could not find program unit being called
ORA-06512: at line 1

Packages become invalidated when any database object (table, view etc.) that that package has dependecies on is altered in any way.
When a Package is being used it is loaded into memory and a "session state" is created for that package. This session state holds all of the package level variables for that session (different sessions running the same package will have their own copy of the package variables). If a dependency object is altered then the package is invalidated automatically by Oracle. If the package doesn't have any package level variables then Oracle will automatically recompile the package when the next call is made to anything within it by the session in question, but if variables exist then Oracle determines that these variables are now out of date because of the need for it to recompile the package. Because of this it has to discard the session state, which is why you get the error saying that the state has been discarded.
One way to get around this is to not have any package level variables.
If you need to have some variables (constants and types too) that are accessible by many procs/fns inside your package then a way to do this is to create another package spec containing these variables and alter the package to reference them in that package. That way, the package that has the dependencies and needs recompiling can do so without having any "state" to worry about being discarded and the variables in the other package are just variables and don't have any dependencies so that other package doesn't get invalidated or need recompiling.
Hope that's clear.
Edit:
Examples...
With package variables in dependency package...
SQL> create table a (x number);
Table created.
SQL> create package pkg_a is
  2    procedure mydependantproc;
  3  end;
  4  /
Package created.
SQL> create package body pkg_a is
  2    state_var number;
  3    procedure mydependantproc is
  4      local_var number;
  5    begin
  6      select x into local_var from a;
  7      state_var := local_var;
  8    end;
  9  end;
10  /
Package body created.
SQL> insert into a values (1);
1 row created.
SQL> exec pkg_a.mydependantproc;
PL/SQL procedure successfully completed.
SQL> alter table a add (y number);
Table altered.
SQL> exec pkg_a.mydependantproc;
BEGIN pkg_a.mydependantproc; END;
ERROR at line 1:
ORA-04068: existing state of packages has been discarded
ORA-04061: existing state of package body "CRISP_INTELL.PKG_A" has been invalidated
ORA-06508: PL/SQL: could not find program unit being called: "CRISP_INTELL.PKG_A"
ORA-06512: at line 1
SQL>And with the package variables dissassociated into another package spec...
SQL> create table a (x number);
Table created.
SQL> create package pkg_a is
  2    procedure mydependantproc;
  3  end;
  4  /
Package created.
SQL> create package pkg_b is
  2    state_var number;
  3  end;
  4  /
Package created.
SQL> create package body pkg_a is
  2    procedure mydependantproc is
  3      local_var number;
  4    begin
  5      select x into local_var from a;
  6      pkg_b.state_var := local_var;
  7    end;
  8  end;
  9  /
Package body created.
SQL> insert into a values (1);
1 row created.
SQL> exec pkg_a.mydependantproc;
PL/SQL procedure successfully completed.
SQL> alter table a add (y number);
Table altered.
SQL> exec pkg_a.mydependantproc;
PL/SQL procedure successfully completed.
SQL>;)
Message was edited by:
blushadow

Similar Messages

  • Error while installign AIR Application (invalid package signature errorID=5022)

    Hi All,
    I am new to Adobe AIR and facing error while Installing AIR application. This specially happens when in include a folder named "htmls" in the assets directory in my project.
    This folder have lots of html files and others folders. These file names have some special characters as well like ". & - _".
    However I can install the Application when I exclude this folder and everything works fine. Not able to find out the exact problem.
    Looking forward for help !!
    Log contents:
    .airappinstall
    failed while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="invalid package signature" errorID=5022]
    starting cleanup of temporary files
    application installer exiting
    .airinstall
    App installer failed; exit code 7
    begin quitting

    You may have found a bug in the AIR installer or packager. Given that the signature is an XML file, the "&" character seems the most likely culprit.
    The only short-term workaround is to identify which characters cause the problem and avoid using it.
    You should avoid the following characters in any case, since these cannot be used in file names on all platforms:
    Character            Hexcode
    various     0x00 - x1F
    *           x2A
    "           x22
    :           x3A
    >           x3C
    <           x3E
    ?           x3F
    \           x5C
    |           x7C

  • Adobe air invalid package on android 4.2.1

    I have android 4.2.1 on transformer pad tf300t and when I try to update adobe air it says invalid package.

    here's the stack trace from your app.
    E/AndroidRuntime( 2967): FATAL EXCEPTION: main
    E/AndroidRuntime( 2967): java.lang.RuntimeException: Unable to start receiver com.sputnik.wispr.NetworkScanReceiver: java.lang.StringIndexOutOfBoundsException: length=0; index=0
    E/AndroidRuntime( 2967): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2383)
    E/AndroidRuntime( 2967): at android.app.ActivityThread.access$1500(ActivityThread.java:141)
    E/AndroidRuntime( 2967): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1310)
    E/AndroidRuntime( 2967): at android.os.Handler.dispatchMessage(Handler.java:99)
    E/AndroidRuntime( 2967): at android.os.Looper.loop(Looper.java:137)
    E/AndroidRuntime( 2967): at android.app.ActivityThread.main(ActivityThread.java:5039)
    E/AndroidRuntime( 2967): at java.lang.reflect.Method.invokeNative(Native Method)
    E/AndroidRuntime( 2967): at java.lang.reflect.Method.invoke(Method.java:511)
    E/AndroidRuntime( 2967): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
    E/AndroidRuntime( 2967): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
    E/AndroidRuntime( 2967): at dalvik.system.NativeStart.main(Native Method)
    E/AndroidRuntime( 2967): Caused by: java.lang.StringIndexOutOfBoundsException: length=0; index=0
    E/AndroidRuntime( 2967): at com.sputnik.wispr.util.WiFiPrioritisation.QuoteSSID(WiFiPrioritisation.java:65)
    E/AndroidRuntime( 2967): at com.sputnik.wispr.util.WiFiPrioritisation.enablePreferredNetwork(WiFiPrioritisation.java:335)
    E/AndroidRuntime( 2967): at com.sputnik.wispr.NetworkScanReceiver.onReceive(NetworkScanReceiver.java:65)
    E/AndroidRuntime( 2967): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2376)
    E/AndroidRuntime( 2967): ... 10 more
    W/ActivityManager( 574): Force finishing activity com.bt.mnie.wispr/.CoreActivity
    W/ActivityManager( 574): Activity pause timeout for ActivityRecord{4293be88 u0 com.bt.mnie.wispr/.CoreActivity}

  • Package load Failed! Invalid package Title, manifest file cannot be found

    Greetings. I am new to UPK and am seeking guidance on an upgrade to 11.1.
    A little background on what we are trying to do:
    We have two machines:
    Windows 2003 machine in domain 'X' | UPK 11.0.0.1.
    Windows 2008 R2 virtual machine in domain 'Y' | UPK 11.0 on the new machine first, install the 11.0.0.1 patch, and then upgrade to 11.1.
    We are using the same database as the old machine. Developer Server is Standard Authentication, Knowledge Center is Windows authentication.
    ==========================================================================================
    So far we have installed 11.1 with the respective database upgrades, but are lost as to how to migrate the old Content Root data. We have copied all the content to the new Content Root, added it to IIS like the old machine, and verified that the UPK database Content Root path is correct and working.
    For the rest of the post, I am remoted into the server from my local workstation, and then using IE to access KCenter on the server's FQDN, not via localhost.
    Since I am green, so I presumed that I would need to import the titles under Manager in KCenter. I zipped each content folder individually (they are named "1", "9", etc), and then attempted to import each zip file.
    NOTE: At this stage sometimes we are prompted to authenticate again. When it does, sometimes the credentials that we know work, get rejected and we are prompted again. This will repeat until we get a 401 and we have to start over. We have verified that the Windows account currently in session with the site is valid and has administrator authority within KC.
    NOTE2: On the first few tries, .NET complained that maxRequestLength was not large enough. I had our servers team increase it on the actual server in order for us to proceed.
    Provided we don't have to authenticate again, or that it actually accepts our credentials, we get to the 30% mark and then receive the error: *"Package load Failed! Invalid package Title, manifest file cannot be found"*
    Does anyone have any wisdom for this process? The title importation section in the deployment manual is not helping, and the administrator from whom I am taking over this software has not had to deal with this before.
    Thank you,
    Ian
    Edited by: 986290 on Feb 5, 2013 10:21 AM

    Hi Marc, thanks for the post,
    I have gone through an extensive troubleshooting process with Oracle, including their development team, in order to fully complete our project setup. As a supplemental bit of information, we also were having connection errors when attempting to publish directly to the knowledge center.
    As far as the context of this post, here is the solution in brief:
    1) Verify that the package being imported was published from the same version of the Developer Client as the Knowledge Center installation's.
    2) Check for database consistency issues. In our case we were using a database that was built in another domain. After numerous attempts with Oracle support on the line to determine the inconsistency, it was decided to completely reinstall and build a new database from scratch in the new domain.
    3) Check application pool identities and access (while we had some inconsistencies here, correcting them did not change the behavior of the import/publish errors)
    In review, a lot of what we had setup was correct. Our primary point of failure, we feel, was using the old database. Technically this should not have been a problem, but Murphy likes to get his way sometimes.
    Cheers,
    Ian

  • JAVA caused an invalid page fault in module KERNEL32.DLL at 016f:bff7b9a6

    Hi All,
    This problem is bugging me for last two days. Actually I am trying to embed Internet Explorer inside Java application. Everything is working fine till I dont close the application window. But just when I close the window everything goes down. I am working on win98 platform and not sure if it is this reason. The exact error message I am getting is:
    JAVA caused an invalid page fault in
    module KERNEL32.DLL at 016f:bff7b9a6.
    Registers:
    EAX=00000000 CS=016f EIP=bff7b9a6 EFLGS=00000246
    EBX=00000001 SS=0177 ESP=0c08fb7c EBP=653cfbd0
    ECX=004271ec DS=0177 ESI=653cfbd0 FS=443f
    EDX=00427310 ES=0177 EDI=0042701c GS=0000
    Bytes at CS:EIP:
    ff 76 04 e8 13 89 ff ff 5e c2 04 00 56 8b 74 24
    Stack dump:
    004272e4 653a8f88 653cfbd0 0042701c 004272e4 004271fc 00000000 653aaf7b 0042701c 0b1df32c 5f3ed308 0c08fc70 00000000 5f3e5adc 004272e4 5f3ed6d8
    Also since JVM is also crashing it is creating a log file which reads:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D0670CD
    Function=[Unknown.]
    Library=(N/A)
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at sun.awt.windows.WToolkit.eventLoop(Native Method)
         at sun.awt.windows.WToolkit.run(WToolkit.java:240)
         at java.lang.Thread.run(Thread.java:536)
    Dynamic libraries:
    0x7CC00000 - 0x7CC1D000      C:\WINDOWS\SYSTEM\IMAGEHLP.DLL
    Local Time = Tue May 14 18:46:45 2002
    Elapsed Time = 616
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.0-b92 mixed mode)
    I am not getting any clue about this error. Please help me out. :-(

    aman ghus jao bans balli bamboo lekar..

  • F50DBG32 caused an invalid page fault in module MSVCRT40.DLL at 0167:7967d7f0.

    HI all,
    I trying to run a multi-tabbed form built in forms 5.0 with Oracle 8.1.7 db running on a solaris m/c.
    The client m/c os is windows '98.
    but when trying to run it, i get the following error:
    F50DBG32 caused an invalid page fault in
    module MSVCRT40.DLL at 0167:7967d7f0.
    Registers:
    EAX=796aadff CS=0167 EIP=7967d7f0 EFLGS=00010286
    EBX=00aef3f4 SS=016f ESP=00aef284 EBP=00aef290
    ECX=008e56c0 DS=016f ESI=00357365 FS=586f
    EDX=0000001f ES=016f EDI=008e579c GS=0000
    Bytes at CS:EIP:
    8a 06 46 8a 27 47 38 c4 74 f2 2c 41 3c 1a 1a c9
    Stack dump:
    00aef3f4 00aef43c ffffffff 00aef2a8 617e7573 008e579c 00357365 008e56c0 008e56a8 00aef3a8 617d8bae 0101343c 008e56c0 00aef43c 00000001 00aef3f4
    . The problem is tat the same form runs fine in a Win-NT machine.
    Unfortunately, we have a mixed group of users for this form. some of them have NT and some others have Win95/98...
    Any help?
    Regards
    -Sree Ram

    Hi all,
    Found the prob' or atleast the workaound for this...
    APart from setting the fill property of the canvases to Transparent, set the same for all the DB blocks too...
    Now my form is working fine in both OS.
    Regards
    -Sree Ram

  • Invalid Package error (limits?) - SQL*Loader

    I seem to have reached a limit on SQL*Loader in 8.1.6 on the number of columns I am trying to load. The table has 97 columns - if I try to specify more than 92 columns I get an invalid package error - it doesn't matter which column I pick. The row width is close to 2K bytes. Does anyone know the max size - and is there a default that can be increased somehow?

    It maybe your BUFFER size.
    Buffer Size = Rows in Array * Max row size
    this is the formula to estimate your BUFFER size for the import.
    Look in your Parameter File for 'INCTYPE' this is the parameter name for Buffer for importing with SQL*Loader.
    Hope this helps.
    Tony

  • _INS5567 caused an invalid page fault in module PFMODINTL.DLL at 0167:01651

    Can someone help me with this I had to reinstall windows 98se and because of that I had to reinstall the drivers for my sound blaster pci28 sound card and that error comes up every time it trys to install the drivers for it, it happens when it gets to the 00% mark of the setup for the installation. This is the full error's details.
    _INS5576 caused an invalid page fault inmodule PFMODINTL.DLL at 067:065e0.
    Registers:EAX=005b0000 CS=067 EIP=065e0 EFLGS=0000202EBX=003037 SS=06f ESP=006bf78c EBP=006bfcb8ECX=2000690 DS=06f ESI=00000000 FS=447EDX=006bf7a8 ES=06f EDI=00000000 GS=0000Bytes at CS:EIP:8b 08 52 56 50 ff 5 40 85 c0 7c 0a 39 5c 24 44 Stack dump:006bf7dc 006bf7a4 00000000 00000000 005b0000 0980c20 00000000 0700000 006bf7d0 0044790 0054afc2 00000004 00040005 0054ad8 00440004 003037
    please if you can help me with this please do thank you.

    Hi all,
    Found the prob' or atleast the workaound for this...
    APart from setting the fill property of the canvases to Transparent, set the same for all the DB blocks too...
    Now my form is working fine in both OS.
    Regards
    -Sree Ram

  • NIMAX caused an invalid page fault in module PDM.DLL at 0167:4a01259d

    When I closed the MAX 2.2 and get the following problem~~
    NIMAX caused an invalid page fault in
    module PDM.DLL at 0167:4a01259d.
    Registers:
    EAX=00000000 CS=0167 EIP=4a01259d EFLGS=00010246
    EBX=00761f04 SS=016f ESP=022cfe44 EBP=00000000
    ECX=007700b0 DS=016f ESI=00781a10 FS=3f87
    EDX=00000004 ES=016f EDI=00761ef4 GS=0000
    Bytes at CS:EIP:
    8b 10 ff 52 08 83 c6 04 eb c9 53 ff 15 f4 00 02
    Stack dump:
    00000000 00849070 00761ee8 00000001 4a01275a 00761ee4 00849070 00000000 4a012fed 00761ee8 4a012b06 0084a020 00000000 00000000 00000000 00760630
    Can anyone help me to solve this problem?

    Hello Ivan ,
    Thank you for your inquiry regarding problems closing MAX 2.2. It sounds like MAX crashes causing an invalid page fault in module PDM.DLL. This problem can happen when Microsoft Visual Studio is installed. The following link is a great resource when dealing with this issue.
    http://digital.ni.com/public.nsf/websearch/1F1B0B6A05772B6A86256BC1005634D3?OpenDocument
    Other resources similar to this can be found on the ni.com website by clicking the support tab at the top of the home page. Then search for �PDM.DLL� from Technical Resources at the top of the page or topics similar to this. I hope these resources help. Let me know if I can further assist you.
    Shea C.
    Applications Engineering

  • Package owner - invalid packages

    Hello guys,
    I have this problem: I have two DB schemes A and B. I modified the code in both schemes. After compilation, many packages were invalidated. So I compiled all invalid packages, no compilation errors, everything ok.
    Now if I run this query in scheme A:
    SELECT *
    FROM ALL_OBJECTS
    WHERE OBJECT_TYPE IN ('PACKAGE', 'PACKAGE BODY')
    AND STATUS = 'INVALID';I get two records.
    The first one shows an invalid package where owner is scheme C - this is ok, because in scheme C is really such invalid package which has granted execute to scheme A.
    The second one shows an invalid package body, where owner is scheme A. But in scheme A, there is no such package. The "invalid" package is in fact in scheme B, it is in fact not invalid and it has no grants at all. So scheme A has no access to that package at all.
    Recompilation of this package in scheme B has no impact on the result. Why is the package marked as invalid and why is scheme A assigned as an owner???
    Now I run exactly same query in scheme B and get one record.
    One package is marked as invalid where owner is scheme B. However this package is in scheme A and scheme A is the owner of this package. Again the package is not invalid and recompilation of that package has no impact... In this case the package has granted execute to scheme B, so scheme B has the access to this package.
    Can anyone help me with this?
    Thanks, Dan

    I found the problem...
    After I did those changes to that packages, I first compiled the bodies to wrong schemes. So the bodies were created without specifications. I didn't see those packages because SQL Developer doesn't display them in such case...
    So I droped them now.

  • Invalid package bodies in SYS

    I have a couple of package bodies that will not compile. One of these is sys.dbms_aqadm_sys which get the error "PLS-00753: malformed or corrupted wrapped unit" when compile is run.
    Is there a way to recreate the package bodies since the compile will be work? Does anyone have a better solution?

    Do not know how this happened. I am reviewing invalid packages to prepare for a DB upgrade. I do have other databases with the same version.
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production

  • Getting invalid packages when installing support for stored java objects

    I am getting invalid packages notices when installing support for stored java objects in Forms 9i that can with the Oracle 9iDS Suite. In the post installation notes it says to locate a few SQL files, PLB files and a JAR file and run them. On executing the SQL package that will install the rest , I am logged in as SYSTEM as the instructions stated, I get an error when it tries to load the PLB files ( which are encrypted from Oracle). Any one else have this problem or know of a solution?
    If you need more information please let me know and I will try to respond promptly.
    Thanks
    Chad Leath

    The PLB package is called ORA_DE_REFLECTION. I forgot to mention this in the previous post.

  • Compile all invalid packages together + connect as sysdba only

    Hi
    I've installed a Ora 10.2, and imported a dump. This dump contained some users, a lot of tables and stored procs.
    My first question: There is an imported user with I can connect as sysdba only. I can't connect as normal... it is problem because there is an application upper the db and I can't tell the applicataion that connect as sysdba. (it is only a sandbox for me...) What should I modify on this user to connect as normal user?
    The second question: The schema (upper) contains lot of invalid packages. I have only the free Toad and I can't compile all of them only step by step... (I don't want do this step by step because there are about 300 packages...). How could I complile all of them e.g. from Sqlplus? Any other solution?
    Thanks in advance!
    Alex

    ok, there is a user e.g. "xxxx"
    I can connect with this user as sysdba only. "CONNECT xxxx/yyyy@db as sysdba". Without "as sysdba" I got "ORA-01017: invalid username/password; logon denied" So I can connect only as sysdba... but this is a simple user so I don't want to connect as sysdba...

  • Invalid package declaration:

    If you read my post a few messages down, I asked how to add a package in NetBeans. Solved (THANKS).
    But now I get this error when I mouseover the items in the package. Can I get an exact walkthrough on what to do to enable a package to work in NetBeans?
    l'll be more specific. I downloaded the jpb package from http://knking.com/books/java/ (Near the bottom)
    NetBeans saves my projects in C:\Documents and Settings\Administrator. So (In accordance with the instructions given in the book) I made the dir. C:\Documents and Settings\Administartor\jpb and inserted 3 .java files in it (SimpleIO.java Convert.java and DrawableFrame.java). From this point, what do I do so that (in netbeans) I can type import jpb.* and not get any errors?
    THANKS AGAIN FOR EVERYONE WHO HELPS

    You must compile these files, and I suggest you to
    create a jar library:
    New project -> General -> Java Class Library
    Copy your sources in it and build project. This will
    generate a .jar in the dist folder in mounted
    filesystem.
    Now add this builded jar in your project library as
    commented before.
    mariOHey there, I'm also a newb facing a similar error...
    I backed up a package by copy - pasting it and now i mounted it. However, when i mouseover any of its classes it says "Invalid package declaration" and i can't solve it....
    pls help
    THX!!!

  • RUL-01014 (Root Cause: javac: invalid flag)

    Hello,
    I am trying to create XML fact but I am getting the error bellow. Can someone help?
    Cannot perform operation. 'RUL-01014: Unable to add XML schema path D:\My Documents\download\Application1\Project1\event.xsd into data model. Please see the base exception for resolution. Root Cause: javac: invalid flag: Documents\download\Application1\Project1
    j
    ava.lang.Exception: javac: invalid flag: Documents\download\Application1\Project1 at oracle.rules.sdk.datamodel.impl.DataModelUtil.compileJavaFile(DataModelUtil.java:497) at oracle.rules.sdk.datamodel.DataModelManager.addXMLSchemaPath(DataModelManager.java:984) at oracle.rules.sdk.mapper.RuleObjectHelper.addSchemapath(RuleObjectHelper.java:2759) at oracle.rules.ra.uix.mvc.SchemaSelectorEH.addSchema(SchemaSelectorEH.java:138) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at oracle.rules.ra.uix.mvc.BeanEH.genericHandleEvent(BeanEH.java:869) at oracle.rules.ra.uix.mvc.BeanEH.handleEvent(BeanEH.java:838) at oracle.cabo.servlet.event.TableEventHandler.handleEvent(Unknown Source) at oracle.cabo.servlet.event.TableEventHandler.handleEvent(Unknown Source) at oracle.cabo.servlet.event.BasePageFlowEngine.handleRequest(Unknown Source) at oracle.cabo.servlet.AbstractPageBroker.handleRequest(Unknown Source) at oracle.cabo.servlet.ui.BaseUIPageBroker.handleRequest(Unknown Source) at oracle.cabo.servlet.PageBrokerHandler.handleRequest(Unknown Source) at oracle.cabo.servlet.UIXServlet.doGet(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:743) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64) at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:436) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448) at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239) at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)

    Hi Everyone,
    I am also facing same problem. My error is as fallows
    Cannot perform operation. 'RUL-01014: Unable to add XML schema path E:\Jdeveloper\Conditional_BPELProcess.xsd into data model. Root Cause: collision in class name mapping at node "{0}". '
    java.lang.Exception: collision in class name mapping at node "{0}". at oracle.xml.jaxb.JaxbSchemaCompiler.putBindingSchema
    Please help me.
    Thanks in Advance.
    Regards

Maybe you are looking for