AS Java Session ID encoding scheme?

We are in the process of implementing CRM 5.2 Web Client and are also implementing the B2B ICSS (Internet Customer Self Service) application for our customers and partners.  My question is regarding the encoding of session IDs on AS Java.  The CRM Web App uses Url64-encoded session IDs so all internal server information for the stateful application is not visible in the URL.  The B2B ICSS application is on AS Java, and does not appear to use the same URL encoding scheme for the session ID.
Also, I should note we are using a Web Dispatcher for Reverse Proxy, Load Balancing, and URL Access Control.
ICSS URL (AS Java):
http://[alias hostname]/icss_b2b/resetSession2.do;jsessionid=([internal hostname]_CRD_00)ID0302800850DB00171010904548017364End;saplb_*=([internal hostname]_CRD_00)3491750?Standalone=yes&showmodulename=false
CRM URL (AS ABAP):
http://[alias hostname]/sap(bD1lbiZjPTIwMCZkPW1pbg==)/crm_logon/default.htm
I have referenced the below documentation on ABAP vs Java Session IDs.  Does anyone know how/if the AS Java session information can be encoded in the URL so as to mask all internal information?
Session Identifiers:
http://help.sap.com/saphelp_nw70/helpdata/EN/93/33b504f33cb9468bf35f8fbda11294/frameset.htm
thanks,
John
Edited by: Stelling John on Nov 10, 2008 8:11 AM

closing thread due to no replies

Similar Messages

  • How to obtain the encoding scheme for an XML document

    How do you go about reading the encoding scheme for an XML document??
    More specifically how do I read the line:
    <?xml version="1.0" encoding="UTF-8"?>
    (Using Win32 C++ XML Parser 2.0.3 as SAX).
    null

    I work mostly with the Java versions of the parser so you'll have to make the translation to C++. As far as I know, you can't use the SAX API to access to the encoding.
    You need to use the DOM along with Oracle's extension to the basic DOM functionality. Oracle's package, oracle.xml.parser.v2 defines a class which implements the Document interface called XMLDocument. This class has a method, getEncoding(), which returns the encoding. You would use the method in getDocument() in the Parser base class inherited by DOMParser to retrive the XMLDocument.
    Jeff

  • Java.io.IOException: Transport scheme NOT recognized: [tcp]

    Hi everyone, I developed a Java class that allow me to connect, create, send and receive information to an ActiveMQ queues.
    However when I loaded this java class to Oracle 11gR2 (11.2), the java class did not show any error message (its status is active and without errors. The output I got in SqlDeveloper is
    *java.io.IOException: Transport scheme NOT recognized: [tcp].* When I called this Java Class from Jdeveloper 11g It worked but PL/SQL did not.
    This is the Java Class I have been using
    import javax.jms.JMSException;
    import javax.jms.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import org.apache.activemq.ActiveMQConnectionFactory;
    public class ActiveMQRequest {
    // URL of the JMS server. DEFAULT_BROKER_URL will just mean
    // that JMS server is on localhost
    // Name of the queue we will be sending messages to
    // private static String destMameReq = "QueueIN"; // request
    // private static String destNameResp = "QueueOUT"; // response
    public static String Request(String urlMQ,
    String destNameReq,
    String destNameResp,
    String OperationType,
    String XMLmessage) throws JMSException {
    int JMSDeliveryMode=2 ; //for PERSISTENT
    QueueConnectionFactory connectionFactory =null;
    Context jndiContext =null;
    Queue destRequ =null;
    Queue destResp =null;
    QueueSession session =null;
    QueueConnection connection =null;
    String messageID = null;
    QueueReceiver queueReceiver =null;
    QueueSender queueSender =null;
    String replyString =null;
    boolean transacted = false;
    TextMessage outMessage = null;
    try {
    jndiContext = new InitialContext();
    } catch (NamingException e) {
    //System.out.println("Could not create JNDI API context: " + e.toString());
    //System.exit(1);
    return "Error: Initial Context Failed";
    try {
    connectionFactory = new ActiveMQConnectionFactory(urlMQ);
    //connectionFactory = (QueueConnectionFactory) jndiContext.lookup("connectionFactory");
    //destRequ = (Queue) jndiContext.lookup(destNameReq); // Request queue
    // destResp = (Queue) jndiContext.lookup(destNameResp); // Response queue
    } catch (Exception e) {
    //System.out.println("JNDI API lookup failed: " + e.toString());
    //System.exit(1);
    return "Error: MqConnection Factory failed: " + e.toString();
    // begin
    try {
    connection = connectionFactory.createQueueConnection();
    connection.start();
    } catch (JMSException jmse) {
    //System.out.println("Error:JMS Exception occurred: " + jmse.toString());
    return "Error:JMS Exception occurred Create Queue Connection: " + jmse.toString();
    } catch (Exception e) {
    //System.out.println("JNDI API lookup failed: " + e.toString());
    //e.printStackTrace();
    return "Error:JNDI API lookup failed Create Queue Connectio: " + e.toString();
    try {
    session = connection.createQueueSession( transacted,Session.AUTO_ACKNOWLEDGE);
    // check this instead of using JNDI
    destRequ = session.createQueue(destNameReq);
    destResp = session.createQueue(destNameResp);
    } catch (JMSException jmse) {
    //System.out.println("Error:JMS Exception occurred: " + jmse.toString());
    return "Error:JMS Exception occurred createQueueSession: " + jmse.toString();
    } catch (Exception e) {
    //System.out.println("JNDI API lookup failed: " + e.toString());
    //e.printStackTrace();
    return "Error:JNDI API lookup failed createQueueSession: " + e.toString();
    try {
    queueSender = session.createSender(destRequ);
    outMessage = session.createTextMessage(XMLmessage);
    // Sets other properties of the message
    outMessage.setJMSPriority(7);
    outMessage.setJMSReplyTo(destResp);
    outMessage.setJMSDeliveryMode(JMSDeliveryMode);
    //outMessage.setJMSType("Interval"); Interval
    outMessage.setJMSType(OperationType); // ODR , Interval, Ping
    System.out.println("Sending message.: " + outMessage.getText());
    } catch (JMSException jmse) {
    //System.out.println("Error:JMS Exception occurred: " + jmse.toString());
    return "Error:JMS Exception occurred createSender: " + jmse.toString();
    } catch (Exception e) {
    //System.out.println("JNDI API lookup failed: " + e.toString());
    //e.printStackTrace();
    return "Error:JNDI API lookup failed: createSender " + e.toString();
    // Here we are sending the message!
    try {
    queueSender.send(outMessage);
    System.out.println("Message Sent....: " + outMessage.getText() + "'");
    // Receiving
    messageID = outMessage.getJMSMessageID();
    String selector = "JMSCorrelationID = '"+messageID+"'";
    System.out.println("JMSCorrelationID = '"+messageID+"'");
    queueReceiver = session.createReceiver(destResp, selector);
    System.out.println("Receiving Message.");
    Message inMessage = queueReceiver.receive(2000);
    if ( inMessage instanceof TextMessage ) { 
    replyString = ((TextMessage) inMessage).getText();
    System.out.println("Message Received: " + replyString + "'");
    else
    replyString = "Error: TextMessage is empty";
    } catch (JMSException jmse) {
    //System.out.println("Error:JMS Exception occurred: " + jmse.toString());
    return "Error:JMS Exception occurred Receiving: " + jmse.toString();
    } catch (Exception e) {
    //System.out.println("JNDI API lookup failed: " + e.toString());
    //e.printStackTrace();
    return "Error:JNDI API lookup failed Receiving: " + e.toString();
    } finally {
    queueReceiver.close();
    queueSender.close();
    session.close();
    connection.close();
    return replyString;
    This is th pl/sql wrapper
    create or replace
    function ActiveMQRequest( url in varchar2,
    destNameReq in varchar2,
    destNameResp in varchar2,
    OperationType in varchar2,
    XMLmessage in varchar2) return varchar2
    as language java
    name 'ActiveMQRequest.Request( java.lang.String,java.lang.String, java.lang.String , java.lang.String , java.lang.String ) return java.lang.String';
    and this is the JDeveloper Output
    Sending message.:
    <Message>
    <Header>
    <SourceID >sourceid</SourceID>
    <TransactionID>11111111111</TransactionID><MeterID>AAAAAAA</MeterID><REPID>41679178</REPID><TransactionDate>2010-10-08T02:00:00</TransactionDate><UserID>Sensus</UserID><CustomerID>Customer</CustomerID></Header><Body><StarDate>2010-10-01T14:00:00</StartDate><EndDate>2010-10-06T14:00:00</EndDate><IntervalFlag>Y</IntervalFlag><MeterFlag>Y</MeterFlag></Body>
    JMSCorrelationID = 'ID:W05834007-3793-1286901259437-0:0:1:1:1'
    Receiving Message.
    Message Received: <Message>
    <Header>
    <TransactionID>11111111111</TransactionID>
    <SourceID>sourceid</SourceID>
    </Header>
    <Body>
    <TransactionStatus>Acknowledge</TransactionStatus>
    <TransactionMessage>Interval Flag null is not Y or N</TransactionMessage>
    </Body>
    </Message>'
    Result is :<Message>
    <Header>
    <TransactionID>4444444444444444</TransactionID>
    <SourceID>RNI</SourceID>
    </Header>
    <Body>
    <TransactionStatus>Acknowledge</TransactionStatus>
    <TransactionMessage>Interval Flag null is not Y or N</TransactionMessage>
    </Body>
    </Message>
    When I run in Oracle Sqldeveloper the output was
    Error:JMS Exception occurred Create Queue Connection: javax.jms.JMSException: Could not create Transport. Reason: java.io.IOException: Transport scheme NOT recognized: [tcp]
    Do you know what do I do in the Oracle 11gR2 configuration for making this work. I would appreciate your help.
    Thanks

    Perhaps you did not notice that you posted to a forum named "Database - General" with a question that is neither general nor related to the Oracle Database.
    Please update this thread (use Edit) and change the subject to "Please Ignore."
    Then repost your question in a Java related forum.
    Thank you.
    ~ Posted from PEOUG: Lima Peru

  • Java Session problem while sending mail(using javamail) using Pl/SQL

    Hello ...
    i am using Java stored procedure to send mail. but i'm getting java session problem. means only once i can execute that procedure
    pls any help.

    props.put("smtp.gmail.com",host);I doubt javamail recognizes the 'smtp.gmail.com' property. I think it expects 'mail.host'. Of course since it cannot find a specified howt it assumes by default localhost
    Please format your code when you post the next time, there is a nice 'code' button above the post area.
    Mike

  • Errors generating Java classes from XML schema

    I received the following errors when generating Java classes from the schema located at: http://imsproject.org/xsd/ims_qti_rootv1p1.xsd and http://imsproject.org/xsd/ims_xml.xsd
    XML Spy v4 claims that the schema is well-formed and valid. Could this be a problem with the class generators, or is XML Spy not telling the truth?
    Thanks.
    D:\IMS_QTI\Java>java -classpath .;lib/xmlparserv2.jar;lib/xschema.jar;lib/classgen.jar oracle.xml.classgen.oracg -schema ims_qti_rootv1p1.xs
    d -outputDir src\com\icld\qti -package com.icld.qti -comment
    file:/D:/IMS_QTI/Java/ims_qti_rootv1p1.xsd<Line 235, Column 21>: XSD-2209: (Error) Duplicated definition for: 'attr.view'
    file:/D:/IMS_QTI/Java/ims_qti_rootv1p1.xsd<Line 303, Column 21>: XSD-2209: (Error) Duplicated definition for: 'grp.labels'
    file:/D:/IMS_QTI/Java/ims_qti_rootv1p1.xsd<Line 1834, Column -12236>: XSD-2209: (Error) Duplicated definition for: 'qtimetadatafield'
    file:/D:/IMS_QTI/Java/ims_qti_rootv1p1.xsd<Line 1834, Column -9642>: XSD-2209: (Error) Duplicated definition for: 'typeofsolutionType'
    file:/D:/IMS_QTI/Java/ims_qti_rootv1p1.xsd<Line 2252, Column -3019>: XSD-2026: (Error) Invalid attribute 'use' in element 'attribute'
    Error: Schema Class Generator failed to generate classes. oracle.xml.parser.schema.XSDException: Duplicated definition for: 'attr.view'

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jinyu Wang ([email protected]):
    Which version are you using? I can't reproduce the error with 9.0.2B version.<HR></BLOCKQUOTE>
    Thanks for having a look at the problem. I am using the 9.0.2.0B version with Java 2 Standard Edition Build 1.3.1-b24. The classgen -version option returns 9.0.2.0b-beta - and xmlparserv2.jar and xschema.jar are from the same distribution. Running the corresponding DTD from the same source work fine - I'm just havinf this problem with the XSD. Anything else I should look at?

  • About generating Java classes from XSD Schema ???

    I need a powerfull tool to generate Java classes from XML Schema. I want that generated classes to have the option to validate XML(to be JAXP1.2 compliant).
    I used XML Spy 5.4 but the generated classes can't validate an XML file.
    Can you help me with other tools that:
    - generate Java classes from XSD
    - generate sample XML from XSD
    - are JAXP1.2 compliant(validate a XML file with a schema)
    Thanks.

    You can also use Castor: http://www.castor.org
    It generates classes from XML Schemas and enables data
    binding without writing any line of a fuckin SAX
    parser :-)I evaluated Castor and JAXB and while JAXB isn't perfect, it's got some things over Castor. Castor almost looks abandonded when I go to the site. The documentation just sort of trails off.

  • Retrieving existing Java session

    Hi,
    i'm running a web application in java.  The webapp contains JSP pages which contain a Flex application.
    The Flex app is configured to communicate with the Java on the server side, via BlazeDS.
    I'm able to call Java services fine but unfortunately, when i do this, BlazeDS creates a new instanciation of Java classes instead of checking if there already is an existing one.
    So my question is is it possible, through BlazeDS, to retrieve an existing java session and existing java class instances?
    Thank you in advance for your insight
    Best regards
    Pier

    I still don't understand because your questions sounds too easy...
    All you need to do is change your
    public void main (String[] args)
    To
    public void main_progname(String[] args)
    and call it from a servlet.
    You can create 'args' from values from request.getParameter(<string>);
    That's all there is to it.
    Mike
    --- Tom DelGiudice <[email protected]> wrote:
    I am hoping to use the bulk of exisiting java
    programs in a step wise
    transition to total replacement with weblogic JSP
    and servlets. At first I
    would create the front end with weblogic jsp using
    the java programs for the
    business logic. Then I plan to build any new
    business logic with JSP
    servlets, and EJB still using the old java
    applications. Eventually the
    java apps would be phased out. A total renovation
    would be the right way to
    go, but today's IT management prefers small short
    term successes even if the
    total cost is greater. I hope this gives you the
    info you need to give me
    some insight. Thanks for your response Thomas
    DelGiudice"Mike Reiche" <[email protected]> wrote:
    >
    Please explain a little more why they need to be integrated into WL.
    Is there something
    specific in WL that you wish to use?
    Mike
    "Thomas DelGiudice" <[email protected]> wrote:
    Can anyone tell me how I can integrate existing java programs into weblogic.
    I hope to integrate these programs without converting them into beans
    or
    servlets.
    Thanks in advance Thomas DelGiudice

  • Java Session error occurred

    Hi Experts,
    We are in process of upgrading CRM 4.0 to CRM 7.0, sometimes we face " Java session error occurred"  popup in CRM 7 while working on pricing or in some tabs of CRMD_ORDER
    Any idea why this is error is happening, we checked all IPC routines and are also woking fine.
    Expert advise needed.
    Thanks.
    Abhishek

    Thanks for reply Leon,
    Just got the log of the java messages in SM53 Log Administration, and found that Shared Closure has no space to create or save the session. Obviously the problem is lack of space.
    I dont have idea how to set the space profiling for the shared closure, can you please guide me on this or how to find resolution for this space related issue.
    Thanks in advance.
    Abhishek

  • Using the Soap Encoding schema within an XSD

    Hi,
    I am trying to create some XSDs based on the types from the auto-generated WSDLs in JDeveloper. However, I find that while the Array type works fine in the WSDL, I cannot seem to get it validate correctly in my XML schemas, possibly due to some namespace error.
    The current code in the XSD is given as:
    <xsd:schema
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
    <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
    <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>
    <xsd:complexType name="VesselQueryResult">
    <xsd:all>
    <xsd:element name="vesselNames" type="ArrayOfjava_lang_String"/>
    </xsd:all>
    </xsd:complexType>
    <xsd:complexType name="ArrayOfjava_lang_String">
    <xsd:complexContent>
    <xsd:restriction base="SOAP-ENC:Array">
    <xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="xsd:string[]"/>
    </xsd:restriction>
    </xsd:complexContent>
    </xsd:complexType>
    When I tried to add this XSD using as a user schema, however, below validation error is being displayed:
    Error: Line 0, Column 0: Invalid reference: 'http://schemas.xmlsoap.org/soap/encoding/:Array'
    I tried to qualify the SOAP-ENC namespace with the schemaLocation, but another error was displayed:
    <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"
    schemaLocation="http://schemas.xmlsoap.org/soap/encoding/"/>
    oracle.xml.parser.schema.XSDException: Server returned HTTP response code: 407 for URL: http://schemas.xmlsoap.org/soap/encoding/
    I am wondering how JDeveloper supports the SOAP-ENC schema for use in XSDs. Do I need to add the Soap Encoding schema as a user schema, or is there a way I might reference it similar to the way that auto-generated WSDLs seem to deal with it? Any information regarding this would be greatly appreciated.
    Thank you and regards.

    I deleted the two lines of coding below:
    utl_http.set_proxy('www-proxy', NULL);
    utl_http.set_persistent_conn_support(TRUE);
    and then I set the utl_http.set_persistent_conn_support() to False to get that error message. Seems like the website in question doesnt have the webservice anymore because the error has to do with the parsing of the WSDL file.... which probrably doesnt exist.
    Im just trying to get a working example of using a third party webservice to return a value to be displayed in the database.... know of any good examples? The ones im using seem to be pretty out dated... the barnes and nobles example just times out....

  • Any tools for converting java class to xml schema ?

    Hi,
    Are there any tools out there that can convert my java class to xml schema. How such tools take care of java collections like HashTable, ArrayList etc. in my class structure. I am not interested in writing any configuration files(like jaxb configuration files, jibx binding xml files etc.) for serving this purpose and the can be able to give me xml schema from the java classes. Please suggest ...
    I am not sure even JAXB 2.0 allows me to do this without writing any jaxb configuration files or annotations in my java class which is not there in JDK 1.4.2
    Thanks & Regards,
    Kr.

    Hi,
    You can convert the EDI file to XML in any of the ways
    1) Using third party seeburger adapters
    2) Conversion agent
    3) Stylus studio.
    I think using java code it will be very difficult.
    Thnx
    Chirag

  • Question about Java API for XML schema?

    Hello, everyone!
    I am looking for a java api for XML schema. I hope the API is capable for parsing the structure of element
    or complextype declarations in XML schema. So for example, if I specify a name of an element or
    complextype defined in a schema, the name, dataype and other constraints of contained child elements can be returned.
    Does anyone know if there exists such a paser?
    Thanks very much!

    An implementation of DOM Level 3.

  • ORA-29549: class hlpr_pdf_list_java has changed, Java session state cleared

    looks like this the simple program.... but i am getting that error
    SQL> create or replace and compile java source named "hlpr_pdf_list_java" as
    2 import java.io.*;
    3 import java.util.*;
    4 import java.util.zip.*;
    5 import java.text.*;
    6 import java.lang.*;
    7 import java.sql.*;
    8
    9 class hlpr_pdf_list_java
    10 {
    11 public static String hlpr_pdf_list_java(String dirname) throws Exception
    12 {
    13 Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    14 Connection con = DriverManager.getConnection("jdbc:odbc:hlpr_dsn", "hlpr", "hlpr");
    15 Statement stmt = con.createStatement();
    16
    17 String retval=null;
    18 File dir = new File(dirname);
    19 String[] files = dir.list();
    20 if (files!=null)
    21 {
    22 for (int i=0;i<files.length;i++)
    23 {
    24 retval = files;
    25 stmt.executeUpdate("insert into hlpr_dir_list(dir_name,file_name) values(dirname,retval)");
    26 }
    27 }
    28 return retval;
    29 }
    30 }
    31 /
    Java created.
    SQL>
    SQL> CREATE OR REPLACE function hlpr_getfilesindir_fn(p_long_path_dir_name varchar2) return varchar2
    2 as language java name 'hlpr_pdf_list_java.hlpr_pdf_list_java(java.lang.String) return java.lang.String';
    3 /
    Function created.
    SQL>
    SQL> select hlpr_getfilesindir_fn('/d01/oradata/atlanta_gi/2007_10_1_12_31') from dual;
    select hlpr_getfilesindir_fn('/d01/oradata/atlanta_gi/2007_10_1_12_31') from dua
    l
    ERROR at line 1:
    ORA-29549: class HLPR.hlpr_pdf_list_java has changed, Java session state cleared
    SQL>
    any clues?

    Hi,
    Please from now own put this exact tag => (So that's: four characters, forming the word 'code' between curly brackets)
    before and after your examples. That way your indentation and formatting remains intact and we will be able to read and understand faster what's going on.
    ORA-29549: class HLPR.hlpr_pdf_list_java has changed, Java session state cleared
    any clues?
    Probably all you need to do is call your function once more or reconnect.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14219/e29250.htm#sthref8038
    +edit+
    Also let us know if you've got access to MetaLink/MyOracleSupport
    Edited by: hoek on Aug 24, 2009 9:23 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Java Session Space Limit Exceeded warning

    Hi,
    This is related to runtime memory. I have java programs which have recursive calls and also it is highly data intensive. The problem is this.
    When i loaded the classes inside oracle database (using loadjava command) and run the program inside oracle i got session space limit exceeded warning. So i increased the default value of 1MB session space limit to 5 MB. When i ran the program i got the error again. I tried again with 20MB, 40B still i got the error.
    In my next step to solve this problem, i ran the program outside oracle and started a MemoryWatcher program along with it to see how much is consumed at the runtime. I printed Runtime.totalMemory() and Runtime.freeMemory() in the MemoryWatcher thread.
    I am able to see the Total memory creeping up from 2MB to 2.5MB, 3MB.....
    But the free memory varies between 0.3MB to 1.5MB when the program is running.
    What could be the reason the Java session space limit exceeds even when the space limit parameter is set to 40MB.
    How can i avoid this warning??. Any help on this would be greatly appreciated.
    Thanks in advance!!. Pls send your response as a copy to [email protected]
    Regards,
    Babu

    Oracle Team, nobody knows the solutions???
    Or is bug.
    Best regards, Marcelo.
    Oracle 8.1.7 (sun/linux) and XDK 9.0.2+ parsing big documents.

  • ORA-29550: Java session state cleared

    Hi all,
    I am using Oracle9i Enterprise Edition Release 9.2.0.6.0 on AIX
    I have created a job that executes daily at 00:00:00 and create files by selecting data from database. But job is breaking daily and subjected error found in alert log file.
    I have checked the metalink and found nothing except following
    Error:     ORA-29550
    Text:     Java session state cleared
    Cause:     The Java state in the current session became inconsistent and was
         cleared.
    Action:     No action required.
    Can anybody help me on this issue?
    Thanks,
    Hassan

    I am getting following errors when using forms. (Version is 11.5.10.2 on Linux)Are you using Forms 6i Builder?
    ORA-29549: class PUBLIC.NLS_SESSION_PARAMETERS has changed, Java session state cleared.
    oracle.apps.fnd.framework.OAException: java.sql.SQLException: ORA-29550: Java session state cleared
    ORA-06512: at "APPS.XMLPARSERCOVER", line 6
    ORA-06512: at "APPS.XMLPARSER", line 175
    ORA-06512: at "APPS.IRC_XML_UTIL", line 110
    ORA-29549: class PUBLIC.NLS_SESSION_PARAMETERS has changed, Java session state cleared
    ORA-06512: at "APPS.IRC_APPROVALS", line 43
    ORA-06512: at "APPS.IRC_APPROVALS", line 179
    ORA-06512: at "APPS.IRC_APPROVALS", line 328
    ORA-06512: at "APPS.XXCIM_CANDIDATE_SEARCH_PKG", line 333
    ORA-06512: at line 1
    java.sql.SQLException: ORA-29550: Java session state cleared
    Any help would be really appreciated.Please see the solution in (ORA-29550: Java session state cleared encountered during execution of Generate function 'WF_XML.Generate' [ID 1368817.1]).
    Thanks,
    Hussein

  • ORA-29549: class PUBLIC.NLS_SESSION_PARAMETERS has changed, Java session.

    Hi,
    I am getting following errors when using forms. (Version is 11.5.10.2 on Linux)
    ORA-29549: class PUBLIC.NLS_SESSION_PARAMETERS has changed, Java session state cleared.
    oracle.apps.fnd.framework.OAException: java.sql.SQLException: ORA-29550: Java session state cleared
    ORA-06512: at "APPS.XMLPARSERCOVER", line 6
    ORA-06512: at "APPS.XMLPARSER", line 175
    ORA-06512: at "APPS.IRC_XML_UTIL", line 110
    ORA-29549: class PUBLIC.NLS_SESSION_PARAMETERS has changed, Java session state cleared
    ORA-06512: at "APPS.IRC_APPROVALS", line 43
    ORA-06512: at "APPS.IRC_APPROVALS", line 179
    ORA-06512: at "APPS.IRC_APPROVALS", line 328
    ORA-06512: at "APPS.XXCIM_CANDIDATE_SEARCH_PKG", line 333
    ORA-06512: at line 1
    java.sql.SQLException: ORA-29550: Java session state cleared
    Any help would be really appreciated.
    Thanks in advance.

    I am getting following errors when using forms. (Version is 11.5.10.2 on Linux)Are you using Forms 6i Builder?
    ORA-29549: class PUBLIC.NLS_SESSION_PARAMETERS has changed, Java session state cleared.
    oracle.apps.fnd.framework.OAException: java.sql.SQLException: ORA-29550: Java session state cleared
    ORA-06512: at "APPS.XMLPARSERCOVER", line 6
    ORA-06512: at "APPS.XMLPARSER", line 175
    ORA-06512: at "APPS.IRC_XML_UTIL", line 110
    ORA-29549: class PUBLIC.NLS_SESSION_PARAMETERS has changed, Java session state cleared
    ORA-06512: at "APPS.IRC_APPROVALS", line 43
    ORA-06512: at "APPS.IRC_APPROVALS", line 179
    ORA-06512: at "APPS.IRC_APPROVALS", line 328
    ORA-06512: at "APPS.XXCIM_CANDIDATE_SEARCH_PKG", line 333
    ORA-06512: at line 1
    java.sql.SQLException: ORA-29550: Java session state cleared
    Any help would be really appreciated.Please see the solution in (ORA-29550: Java session state cleared encountered during execution of Generate function 'WF_XML.Generate' [ID 1368817.1]).
    Thanks,
    Hussein

Maybe you are looking for

  • Can not able to mount ntfs external hard disk

    Hi Getting the below error when try to mount NTFS external harddisk Disk /dev/sdb: 1000.2 GB, 1000204885504 bytes 255 heads, 63 sectors/track, 121601 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /d

  • Best Approach to create LDAP structure in OID

    We are currently in the process to create LDAP schema and structure in OID 11g. This schema and structure in OID will be then used by Oracle products such as OIM, OES, OAM and others to perform user authentication, coarse grained authorization, fine

  • Ibook drops airport signal, have to reboot iBook to get AE signal back,

    my powerbook is working fine and the AE light is always green, but my iBook drops the AE signal whenever it goes to sleep. upon wakeup the airport is on but no signal and I have to reboot the computer to get the signal back strong even though it's fi

  • Exporting a freeze frame as a still image

    Hi I need to extract a still frame from some footage, how do i do this so i can export it so i can use on a website ? Hillster

  • IDVD 6 project/disc to iPod...? URGENT, FOR A WEDDING!

    here's the dilemma. for my (yes, MY) upcoming wedding, i'm doing a slideshow at the rehearsal dinner, complete with music, transitions, etc etc. i've just discovered that to get a DVD player in the place we'll be at will be a bit difficult, and i don