Invoke or Invokel - error on argument mapping

Hi...
I'm trying to call a bpm method (witch receives 1 arg) from my jsp page, running from a Global Interactive, and i`m getting the error below
The task could not be successfully executed.
Reason: 'fuego.web.execution.exception.InternalForwardException: UnExpected error during internal forward process.'.
Caused by: UnExpected error during internal forward process.
Caused by: Ambiguos method. There are more than one method of name 'getTeste' with '1' arguments.
fuego.lang.ComponentExecutionException: The task could not be successfully executed.
Reason: 'fuego.web.execution.exception.InternalForwardException: UnExpected error during internal forward process.'.
THERE IS ONLY ONE METHOD NAMED getTeste ON MY BPM OBJECT
I believe i'm doing something stupid here, but i can't figure it out.
How should I have called this method? should be static? If should, how to call it from jsp?
JSP code:
<c:set var="qtde" scope="page" value="0"/>
<f:invokel var="${filtro}" methodName="getTeste" retAttName="qtde" args="0"/>
<c:out value="${qtde}"/>
thanks for your help
Edited by: Alexandre MF on 07/05/2010 16:02

I found an workaround to this problem.
<c:set var="qtde" scope="page" value="0"/>
<f:invoke var="${filtro}" methodName="getTeste" retAttName="qtde">
<f:jarg value="mesmo" className="java.lang.String"/>
</f:invoke>
<c:out value="${qtde}"/>
using jarg with full class name mapping it works...

Similar Messages

  • ORA-00600: internal error code, arguments: [kglpin-bad-lock], [0x70000062E067FC8], [], [], [], [], [], [], [], [], [], []

    Hi,
    Using owb 11.2.0.3 and encountering
    ORA-00600: internal error code, arguments: [kglpin-bad-lock], [0x70000062E067FC8], [], [], [], [], [], [], [], [], [], []
    this error when a proces sflow runs a mapping.
    It fails and data remains unchanged.
    When proces sflow next runs it succeeds.
    Any ideas?
    Thanks

    Don't multipost, please. Stay in your original thread ORA-00600: internal error code, arguments: [kglpin-bad-lock], [0x70000062E067FC8], [], [], [], [], [], [], [], [], [], […
    Mod: locking.

  • ORA-00600: internal error code, arguments: [qctcte1]

    Hi All,
    While executing a mapping I got the following error message:
    Starting Execution MAP39_FACT
    Starting Task MAP39_FACT
    ORA-00600: internal error code, arguments: [qctcte1], [0], [], [], [], [], [], []
    ORA-06512: at "SBI_TARGET_P2.MAP39_FACT", line 12
    ORA-06512: at "SBI_TARGET_P2.MAP39_FACT", line 8997
    ORA-06512: at "SBI_TARGET_P2.MAP39_FACT", line 9486
    ORA-06512: at "SBI_TARGET_P2.MAP39_FACT", line 12000
    ORA-06512: at line 1
    Completing Task MAP39_FACT
    Completing Execution MAP39_FACT
    When I trace the Alert log I find the error to be of a mismatch data type .But there arent any mismatch in any of the operators in my mapping.
    As a rescue I tried making an altogether new mapping but m still getting the same error. All the other mappings in my project are running fine.
    Any Solutions??

    Hello,
    Accoding to metalink info this ORA-600 could be reported as a result of several bugs, depending on your RDBMS version and mapping schema.
    The note 248095.1 is entry point. Find below the exclusion from the note:
    Known Issues:
    Bug# 3963092 See Note 3963092.8
    OERI[qctcte1] compiling SQL with ORDER BY .. DESC
    Fixed: 10.1.0.4, 10.2.0.1
    Bug# 3730166 See Note 3730166.8
    OERI [qctcte1] / [kghssgcop2] from ANSI outer joins with binds
    Fixed: 10.1.0.5, 10.2.0.1
    Bug# 3557906 See Note 3557906.8
    OERI[qctcte1] from predicate move around
    Fixed: 9.2.0.6, 10.1.0.4, 10.2.0.1
    Bug# 3216046 See Note 3216046.8
    OERI:qctcte1 running a query with a subquery in SELECT list
    Fixed: 9.2.0.5, 10.1.0.2
    Bug# 3121670 See Note 3121670.8
    OERI:qctcte1 can occur on VIEW with HAVING clause with STAR transformation
    Fixed: 9.2.0.5, 10.1.0.2
    Bug# 3110923 See Note 3110923.8
    Dump (in qmxtrxopt) using ORDER BY .. DESC on a CONSTANT column
    Fixed: 9.2.0.5
    Bug# 2458655 See Note 2458655.8
    OERI[QCTCTE1] from FULL OUTER JOIN with BIND variable in subquery
    Fixed: 9.2.0.3, 10.1.0.2
    Bug# 2357784 See Note 2357784.8
    OERI[QCTCTE1] parsing ANSI OUTER JOIN with a VIEW with a SET operation (eg: UNION ALL)
    Fixed: 9.2.0.2
    Bug# 2105452 See Note 2105452.8
    OERI:QCTCTE1 possible from inline UNION view with binds
    Fixed: 9.0.1.4, 9.2.0.1
    Bug# 2100837 See Note 2100837.8
    OERI:QCTCTE1 possible using INLIST predicates
    Fixed: 9.0.1.3, 9.2.0.1
    Bug# 2092554 See Note 2092554.8
    OERI:qctcte1 / ORA-979 from multi-hierarchy query using materialized view
    Fixed: 9.0.1.3, 9.2.0.1
    Bug# 1970507 See Note 1970507.8
    OERI:18096 from OUTER JOIN in MERGE USING clause in PLSQL
    Fixed: 9.0.1.2, 9.2.0.1

  • Java.rmi.MarshalException: error marshalling arguments

    I've two class Client and Main. Eventnotify is implemented in class Client using RMI techniques. Here is sample
    public interface EventNotify extends Remote {
    void SendNotification (String str) throws RemoteException;
    public class Client implements EventNotify {
         //implementation of EventNotify
         public void SendNotification(String str) {
         System.out.println("from srver: ..." +str);
    class Main {
    public static void main(String[] args) {
    Client clnt = new Client();
    int val = stub.register_client(host, clnt); //THE ERROR IS HERE
    The idea is to pass remote objects from client to a server. I've a server program running continously, but the problem is on passing objects of type Client. I'm facing marshaling problem.
    AND THE ERROR IS
    Client exception: java.rmi.MarshalException: error marshalling arguments; nested exception is:
         java.io.NotSerializableException: Client
    java.rmi.MarshalException: error marshalling arguments; nested exception is:
         java.io.NotSerializableException: Client
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:156)
         at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:195)
         at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:149)
         at $Proxy0.register_client(Unknown Source)
         at Main.main(Client.java:74)
    Thanks for helping.
    Caused by: java.io.NotSerializableException: Client
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1173)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:343)
         at sun.rmi.server.UnicastRef.marshalValue(UnicastRef.java:292)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:151)

    Probably I have a similar problem while calling remote object's method with parameter looks like that :
    public class ParamClass extends AbstractParamClass implements Runnable,
            java.io.Serializable {
        private NodeList field1; // part of crimson's tree
        private NamedNodeMap field2 = null;// part of crimson's tree
    public class RmiRemote extends AbstractRemote  { // Remote Object Class
    @Override
    public  Object remoteMethod1() throws RemoteException{
    ParamClass param = new  ParamClass("build with crimson");
    CustomInterface stub = (CustomInterface) registry.lookup(name);
    stub.callRemoteMethod(param); // exception here
    java.rmi.MarshalException: error marshalling arguments; nested exception is:
            java.io.NotSerializableException: org.apache.crimson.tree.AttributeSet
            at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:138)
            at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:178)when I build param object with xerces - no exception occurs . Other methods of remote object doing well. Remote object extends AbstractRemote superclass derived from UnicastRemoteObject. How can I avoid this problem and call method with crimson's tree fields parameter?
    Thank you.

  • How do I cast an heir in an argument mapping?

    I'd like to be able to use a generalization of an instance variable in my main process flow but inside of a subprocess or screenflow to use a specialization(heir) of the variable. I've tried every combination of cast or conversion syntax in the argument mapping but it will not allow me to save. I've also tried the inverse with a specialization cast into the generalization with no luck.
    Is this possible? Is there another mechanism to accomplish this?
    -Matt
    Edited by: Matt Pichette on Apr 30, 2009 2:06 PM

    Hi Matt,
    Even with inheritance, I don't think you'll be able to cast an incoming argument variable BPM Object to an instance variable that is a BPM Object of another type.
    Know you know this, but if you have defined a "Person" BPM Object; you might also have a "Client" BPM Object. You can make the Client object inherit the attributes and methods from the Person object if you double click the Client object in the catalog -> click the "Properties" tab in the upper right corner -> change the "Type Inheritance" to "Type" and change the "Inherits Type" to "Person". If you're creating the inheritance by right mouse clicking the Person object and clicking "Create Heir" you're doing almost the same thing except you're creating the Client object with "Behavior" inheritance.
    When you write the logic that sets the Client object to the Person object everything looks like it's okie dokie:
    <pre class="jive-pre"><p />p as Person
    c as ClientType
    p.id = "1234"
    if c is Person then
    display "Hey I'm a person"
    if c is ClientType then
    display "Hey I'm also a client!"
    // try casting the pup right here (this is going to cause an error at runtime)
    c = ClientType(p)
    end
    end
    display c.id</pre>
    If you defined the Client object with Behavior inheritance you'll have syntax error in the statement that casts the person object into the Client (the "c = ClientType(p)" statement). If you used Type inheritance, you won't have a syntax error, but when you try running this the logic you will instead get a runtime error.
    Sure you've probably already thought of these, but here are a couple ideas.
    (1) Consider creating the Client object without inheritance and instead add the Person object as an attribute of the Client. This would have the advantage of easily setting all the parent's attributes inside the Client with just one line of logic:
    <pre class="jive-pre"><p />p as Person
    c as Client
    c.person = p</pre>
    (be sure to set the "person" attribute to the Person object's constructor inside the Client object's constructor).
    The obvious drawback to this approach is that it's not using inheritance, but the advantages are that
    a) you're still able to use the attributes and methods of the Person object
    b) you're able to set (not cast) the Person attribute in a single line of logic ("c.person = p") and
    c) as additional attributes get added to the Person object you will not have to edit this logic to set the additional attributes.
    (2) (you're going to hate this idea) Consider biting the bullet and forget casting. Keep the inheritance, but set each of the individual attribute in the Client object to the corresponding attribute in the Person object.
    The drawback to this is significant. You're going to have a line of code to set each individual attribute. If you add more attributes to the Person object, you'd have to remember to add more lines of code to set these new individual attributes as well in the Client.
    Sorry - wish I had a better answer for you,
    Dan

  • ORA-00600: internal error code, arguments: [LibraryCacheNotEmptyOnClose], [

    Hello!
    After googling a lot, I really don't know what may have caused this problem when I'm shutting the DB, as It's a generic one.. Any suggestions?
    I'm running oracle on version 10.2.0.3.0 on Win Server 2003 Enterprise SP2.
    Part of the alert.log:
    Mon Sep 26 07:00:49 2011
    Starting background process EMN0
    EMN0 started with pid=27, OS id=5192
    Mon Sep 26 07:00:49 2011
    Shutting down instance: further logons disabled
    Mon Sep 26 07:00:50 2011
    Stopping background process QMNC
    Mon Sep 26 07:00:51 2011
    Stopping background process CJQ0
    Mon Sep 26 07:00:51 2011
    Stopping background process MMNL
    Mon Sep 26 07:00:52 2011
    Stopping background process MMON
    Mon Sep 26 07:00:53 2011
    Shutting down instance (immediate)
    License high water mark = 26
    Mon Sep 26 07:00:53 2011
    Stopping Job queue slave processes
    Mon Sep 26 07:00:53 2011
    Job queue slave processes stopped
    Waiting for shared server 'S000' to die
    Waiting for shared server 'S001' to die
    Waiting for shared server 'S002' to die
    Waiting for shared server 'S003' to die
    Mon Sep 26 07:01:04 2011
    Waiting for shared server 'S004' to die
    Mon Sep 26 07:01:23 2011
    All dispatchers and shared servers shutdown
    Mon Sep 26 07:01:23 2011
    alter database close normal
    Mon Sep 26 07:01:24 2011
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Mon Sep 26 07:01:24 2011
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thread 1 closed at log sequence 4300
    Successful close of redo thread 1
    Mon Sep 26 07:01:25 2011
    Completed: alter database close normal
    Mon Sep 26 07:01:25 2011
    alter database dismount
    Completed: alter database dismount
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    System State dumped to trace file c:\oracle\product\admin\teste\udump\teste_ora_5000.trc
    Mon Sep 26 07:01:35 2011
    Errors in file c:\oracle\product\admin\teste\udump\teste_ora_5000.trc:
    *ORA-00600: internal error code, arguments: [LibraryCacheNotEmptyOnClose], [], [], [], [], [], [], []*Dump file c:\oracle\product\admin\teste\bdump\alert_teste.log
    Mon Sep 26 07:09:49 2011
    ORACLE V10.2.0.3.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU : 2 - type 586, 2 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:1617M/2047M, Ph+PgF:3114M/3437M, VA:1938M/2047M
    Mon Sep 26 07:09:49 2011
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    Part of the file teste_ora_5000.trc:
    FREELIST CHUNK COUNT:3192 OBJECT SIZE:36
    LATCH:1 TOTAL SPACE: 114912
    FREELIST CHUNK COUNT:3190 OBJECT SIZE:36
    LATCH:2 TOTAL SPACE: 119016
    FREELIST CHUNK COUNT:3306 OBJECT SIZE:36
    BUCKET 10240:
    LIBRARY OBJECT HANDLE: handle=341a4de8 mtx=341A4E9C(0) cdp=0
    name=XDB.mime-mapping-type32_T
    hash=bfce5ac8b2228d568d457016dd2a2800 timestamp=11-19-2006 11:07:38
    namespace=TABL flags=KGHP/TIM/SML/[02000000]
    kkkk-dddd-llll=0000-0000-0000 lock=0 pin=0 latch#=2 hpc=0132 hlc=0132
    lwt=341A4E44[341A4E44,341A4E44] ltm=341A4E4C[341A4E4C,341A4E4C]
    pwt=341A4E28[341A4E28,341A4E28] ptm=341A4E30[341A4E30,341A4E30]
    ref=341A4E64[341A4E64,341A4E64] lnd=341A4E70[341A4D18,32B481F8]
    LIBRARY OBJECT last freed from HPD addn data CBK
    BUCKET 10240 total object count=1
    BUCKET 40441:
    LIBRARY OBJECT HANDLE: handle=341a4c90 mtx=341A4D44(0) cdp=0
    name=XDB.mime-mapping34_COLL
    hash=4fd0f011144ed13e64cf519ed06c9df9 timestamp=11-19-2006 11:07:38
    namespace=TABL flags=KGHP/TIM/SML/[02000000]
    kkkk-dddd-llll=0000-0000-0000 lock=0 pin=0 latch#=2 hpc=0004 hlc=0004
    lwt=341A4CEC[341A4CEC,341A4CEC] ltm=341A4CF4[341A4CF4,341A4CF4]
    pwt=341A4CD0[341A4CD0,341A4CD0] ptm=341A4CD8[341A4CD8,341A4CD8]
    ref=341A4D0C[341A4D0C,341A4D0C] lnd=341A4D18[32B481F8,341A4E70]
    LIBRARY OBJECT last freed from HPD addn data CBK
    BUCKET 40441 total object count=1
    ANONYMOUS LIST:
    LIST OF HANDLES WITH DEPENDENTS:
    LATCH=0 unpin_call_count=3072 hd_count=0 hd_unpinned_count=3284
    LATCH=1 unpin_call_count=3069 hd_count=2 hd_unpinned_count=3263
    341a4de8 -> 341a4c90
    LATCH=2 unpin_call_count=3085 hd_count=0 hd_unpinned_count=3503
    *** 2011-09-26 07:01:35.445
    ksedmp: internal or fatal error
    *ORA-00600: internal error code, arguments: [LibraryCacheNotEmptyOnClose], [], [], [], [], [], [], []*Current SQL information unavailable - no session.
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    ksedst+38           CALLrel  ksedst1+0 0 1
    ksedmp+898          CALLrel  ksedst+0 0
    ksfdmp+14           CALLrel  ksedmp+0 3
    _kgerinv+140         CALLreg  00000000             B158D30 3
    kgeasnmierr+19      CALLrel  kgerinv+0 B158D30 9CB1F64 607AAD14 0
    A19CDA4
    __VInfreq__kglshu+4 CALLrel _kgeasnmierr+0       B158D30 9CB1F64 607AAD14 0
    6 B158D30 4
    kqlnfy+641          CALLrel  kglshu+0 B158D30 0
    _kscnfy+1334         CALLreg  00000000             18 0
    ksmshu+273          CALLrel  kscnfy+0
    opistpreal+1038 CALLrel _ksmshu+0            0
    opistp+267          CALLrel  opistp_real+0 31 2 A19F68C
    _opiodr+1099         CALLreg  00000000             31 2 A19F68C
    _ttcpip+996          CALLreg  00000000             31 2 A19F68C 0
    _opitsk+1080         CALL???  00000000            
    opiino+1087         CALLrel  opitsk+0 0 0
    _opiodr+1099         CALLreg  00000000             3C 4 A19FC28
    opidrv+819          CALLrel  opiodr+0 3C 4 A19FC28 0
    sou2o+45            CALLrel  opidrv+0 3C 4 A19FC28
    opimaireal+112 CALLrel _sou2o+0             A19FC1C 3C 4 A19FC28
    opimai+92           CALLrel  opimai_real+0 2 A19FC54
    OracleThreadStart@  CALLrel  opimai+0
    4+726
    77E6482C CALLreg 00000000
    --------------------- Binary Stack Dump ---------------------
    ========== FRAME [1] (_ksedst+38 -> _ksedst1+0) ==========
    Dump of memory from 0x0A19CC78 to 0x0A19CC88
    A19CC70 0A19CC88 0040490B [.....I@.]
    A19CC80 00000000 00000001 [........]
    ========== FRAME [2] (_ksedmp+898 -> _ksedst+0) ==========
    Dump of memory from 0x0A19CC88 to 0x0A19CD48
    A19CC80 0A19CD48 00403303 [H....3@.]
    A19CC90 00000000 00000258 0A19CCA0 004238A0 [....X........8B.]
    A19CCA0 0A19CCA8 0043CB08 0B1591B8 60731B40 [[email protected]`]
    A19CCB0 0B1591BD 607AAD14 0000001B 00000000 [......z`........]
    Thanks in advance!!

    Hi;
    ORA-00600: internal error code, You are getting oracle internal error(ORA 600) which mean you could need to work wiht oracle support team. Please see below note, if its not help than i suggest log a sr:
    Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool [ID 153788.1]
    Regard
    Helios

  • ORA-00600: internal error code, arguments: [ktsircinfo_num1]

    While taking export of a table received EXP error and while dropping/selecting the same gor ora-600 errors.
    . . exporting table TEST4
    EXP-00003: no storage definition found for segment(29, 371385)
    SQL >Drop table test4 cascade;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    sql> Desc test4;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    I dont want to log TAR with oracle right now... I tried dropping and recreating Undo tablespace but still did not help much . Database version is 9204

    hi
    read metalink ID - 153788.1
    CHeers

  • ORA-00600: internal error code, arguments: [unable to load XDB library]

    hi everybody ;
    i have 9.2.0.7 db runs on SLES9 on host A. and i take full rman database backup to make a new database on different host ( host B ) with different file structure. ( sid is the same ) i had already 1 database on host B. after this duplicate now there are 2 database on host B.
    i take daily full database rman backup on the new host for my new database and there is no problem. when i try to take extra full export backup i get an error ;
    Dynamic link error: libxdb.so: cannot open shared object file: No such file or directory
    *** 2010-08-05 09:46:12.868
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [unable to load XDB library], [], [], [], [], [], [], []
    as i search ; i have to stop the database and listener and set the LD_LIBRARY_PATH variable. how can i make this without make any mistake for the first database runs on Host B.
    because 2 database must be up and running on host B. can you explaın these operation step by step ?
    thank you ....

    craft wrote:
    any idea ?
    >any idea ?
    your database is out off support you should consider to upgrade. ORA-00600 indicate for bug

  • Import Manager 'Error 5611520 - Error Saving Key Mapping'

    I am using CREDITOR_EXTRACT in R/3 to send Vendor IDoc to XI and use CREMDM04 type.  XI generates an XML file that I load into MDM using a client that is set up for Inbound/Outbound.  The key mappings have been turned on for the Vendor repository.
    In IM, I use the standard map CREMDM04 and the system maps the incoming XML file to the vendor main table.  There are few values that I have to map manually - fine.  Next, when I click Import, I get a error pop-up message 'Error Saving Key Mapping - Errno 5611520'.
    Has anybody experienced this when using all standard content (schemas and maps) for Vendor?
    Thanks in advance.

    Subbu,
    Found another system that has the same versions as you do.  This particular error did not appear, but we got some internal IM error.  Also, the SAP training demos are on the same versions as mine.
    I am using MDC R/3 as the client and the CREMDM04 schema map.  Not using MDM inbound ports for now.  Just loading XML file generated by XI based on CREMDM04. Do you think that I need to define a Qualified Range for this client in the Console or can it be left blank?
    Thanks.

  • Data source cannot be created : MAPVIEWER-00011: Error creating a map data

    Hi everyone,
    i am getting an error meaasge while creating datasource
    " Data source cannot be created : MAPVIEWER-00011: Error creating a map data source."
    pls help

    You should assign only one value to jdbc_sid. Try with this
    <map_data_source name="mvdemo"
    jdbc_host="localhost"
    jdbc_sid="orcl"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="!mvdemo"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="false"
    />
    Make sure that oracle sid is 'ORCL'
    Sujnan

  • Err#-600 msg ORA-00600: internal error code, arguments: [4000], [7089]

    Hi All,
    I am getting the error "Err#-600 msg ORA-00600: internal error code, arguments: [4000], [7089]" while running a package. Could not able to get detailed info on this. Please someone help in resolving the above error.
    Thanks,
    Karthi

    http://orafaq.com/wiki/ORA-00600
    You can follow Nikolay's advice or try to find a workaround yourself by rewriting your query using a somehow different approach
    Regards
    Etbin

  • Exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPExcept

    Hi all,
    I am getting below error while invoking Siebel web service from BPEL service,
    <fault>
    -<remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: text/html; charset=UTF-8
    </summary>
    </part>
    </remoteFault>
    </fault
    Please help me to resolve this issue.
    Thanks,
    Santosh M E

    Resolved, I was invoking an external Web service which is an Asynchronous 2 way.
    Didn't capture the reply back from the Async service.

  • ORA-00600: internal error code, arguments: [25012], [19], [21], [], [], [],

    when i execute dbcheck in db13, i receive this message:
    ORA-00600: internal error code, arguments: [25012], [19], [21], [], [], [], [], []  
    i have Oracle 9.2.0 and i don't find any note in the OSS notes.

    This may point you in the right direction?
    Look at Note 758563 - Oracle Metalink access for SAP customers.
    Oracle Metalink WebSite is:
    https://metalink.oracle.com/metalink/plsql/f?p=200:101:5428529246127535152
    Metalink Username and Password deleted by Moderator.
    Please do not post this kind of information in the forum.
    Thanks.
    Then do a search on ORA-00600: internal error code, arguments: [25012]
    This should get you started.
    Message was edited by: Christian Graf

  • ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0xB1B59D

    Can anyone please try check out this ORA-600 error, ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0xB1B59DA4],
    [2], [], [], [], [], [].
    My db went down abruptly due to power source ....now the database mounts successfully but when u try opening the db i.e. alter database open; it comes up with the error. Plz kindly treat urgently.Thanks

    For all kind of internal errors, you should open SR (Service Request) in metalink. You need to contact Oracle Support
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • ORA-00600: internal error code, arguments: [kksscl-inf-inl-loop], [2500]

    Hi people,
    Do you have any idea about this error: ORA-00600: internal error code, arguments: [kksscl-inf-inl-loop], [2500], [6], [40], [85], [85], [], [].
    Thanks in advance.
    Marcos Freitas

    Duplicate Thread:
    ORA-00600: internal error code, arguments: [kksscl-inf-inl-loop], [2500]
    C.

Maybe you are looking for